Posts

Showing posts from October, 2011

Downloading and installing cURL on windows 7

Image
cURL is a command-line tool. This means it is run from the command prompt (in Windows) or terminal (in Linux or OSX) and its results are displayed in the terminal window. There is no graphical interface. So in order to use cURL, you first have to open a command-line window. To setup cURL: Download and unzip 64-bit cURL with SSL:  http://curl.download.nextag. com/download/curl-7.21.7- win64-ssl-sspi.zip Copy the curl.exe file into your Windows PATH folder. By default, this is C:\Windows\System32. Download and install the Visual Studio 2010 C++ Runtime Redistributable 64 bit here:  http://www.microsoft.com/ download/en/details.aspx?id= 13523 Download the latest bundle of Certficate Authority Public Keys from  http://curl.haxx.se/ca/cacert. pem Rename this file from cacert.pem to curl-ca-bundle.crt. Move this file into your Windows PATH folder. By default, this is C:\\Windows\System32. Run cmd.exe to open your command prompt. type curl ...

How to install Subversion,Google App Engine,Android with Eclipse.

Image
This is tutorial assumes you already have Eclipse installed. You can install the any plugin for Eclipse using the Software Update feature of Eclipse. To install the plugin, using Eclipse: Select the Help menu > Install New Software. ... In the Work with text box, enter: For Subversion: http://subclipse.tigris.org/update_1.0.x For Android: https://dl-ssl.google.com/android/eclipse/ For Google App Engine: Eclipse 3.6 (Helios): http://dl.google.com/eclipse/plugin/3.6 Eclipse 3.5 (Galileo): http://dl.google.com/eclipse/plugin/3.5 Eclipse 3.4 (Ganymede): http://dl.google.com/eclipse/plugin/3.4 Eclipse 3.3 (Europa): http://dl.google.com/eclipse/plugin/3.3 Click OK In the Available Software dialog, select the checkbox next to Developer Tools and click Next. In the next window, you'll see a list of the tools to be downloaded. Click Next . Read and accept the license agreements, then click Finish . No...