• 8 years of experience in Software development of Client/Server, Web based and mobile applications. • Develop the overall project schedule for design, development, Test/ QA, ensure implementation, execution and reporting on the project tasks, deliverable and milestones. • Improved and implemented various functionality in opensource web programming framework
Monday, February 7, 2011
Trends in Mobile Application Development
Friday, November 19, 2010
Grab the URL from Site or Page
";
Thursday, November 4, 2010
Fragment Id Messaging Concept
Configuring SSL (Godaddy) for Apache 2.X
Steps to generate CSR can be found on below url:
http://help.godaddy.com/topic/746/article/5269
Steps are also described below:
Creating a CSR (required while registering ssl certificate)
Create a directory /usr/bin/ssl/ where your csr files will be stored.
Type below command from the shell:
1 . cd /usr/bin/ (/your path to openssl/)
which will change your directory to the one which is going to store the CSR files.
Then type below command on shell
2. openssl genrsa -des3 -out
Replace
3. openssl req -new -key
Replace
The above two commands will create a .key and .csr file at the location which you have specified above.
Note – while creation of a CSR you will be asked the details about organization.
Once the certificate is registered you will get two files with .crt extension. Place these two files in the same directory as the one which you have created while CSR.
Now for apache server configuration:
Go to /etc/httpd/conf.d folder where you will find a ssl.conf file.
In ssl.conf file you will find below lines
SSLCertificateFile – replace the path of your SSL certificate file (from above e.g. /usr/bin/ssl/yourcertificate.crt)
SSLCertificateKeyFile - replace the path of your SSL key file (from above e.g. /usr/bin/ssl/key.crt)
SSLCertificateChainFile – replace with the path of 2nd .crt file which you got after registering the certificate. (its generally named as gd_bundle.crt) (from above e.g. /usr/bin/ssl/gd_bundle.crt)
Tuesday, July 6, 2010
How to Get the Base Url with Javascript for a Domain or Localhost
function fnGetBaseURL() {
var strUrl = location.href;
// entire url including querystring - also: window.location.href;
var strBaseURL = strUrl.substring(0, strUrl.indexOf('/', 14));
if (strBaseURL.indexOf('http://localhost') != -1) {
// Base Url for localhost
var strUrl = location.href; // window.location.href;
var strPathName = location.pathname; // window.location.pathname;
var intIndex1 = strUrl.indexOf(strPathName);
var intIndex2 = strUrl.indexOf("/",intIndex1 + 1);
var strBaseLocalUrl = strUrl.substr(0, intIndex2);
return strBaseLocalUrl + "/";
}
else {
// Root Url for domain name
return strBaseURL + "/";
}
}
If you'd like to test the fnGetBaseURL function in an html page and view the result, simply add the following after the closing tag of the fnGetBaseURL () function:
document.write(fnGetBaseURL());
Saturday, February 13, 2010
linkedin API.... Exploring Frustration Discovering Satisfaction
Wednesday, September 9, 2009
Web Scalability and Performance
Web Scalability and Performance – Real Life Lessons Last Saturday, we had TechWeekend #3 in Pune, on the theme of Website Scalability and Performance. Mukul Kumar, co-founder, and VP of Engineering at Pubmatic, talked about the hard lessons inscalability they learnt on their way to building a web service that serves billions of ad impressions per month. Here are the slides used by Mukul. If you cannot see the slides, click here. The talk was live-tweeted by @punetechlive and @d7ylive. Here are a few highlights from the talk:
|