To save credentials you use for a github repository, copy the lines below and save them in a file _netrc. Add you username and password and start githubbing. machine github.com login <login> password <password> Note that the file in Linux…
To save credentials you use for a github repository, copy the lines below and save them in a file _netrc. Add you username and password and start githubbing. machine github.com login <login> password <password> Note that the file in Linux…
Pik is nice replacement of RVM for Windows. You can install several Ruby versions and switch between them. I was asking how to make a particular the default used, when you start the prompt. The approach on Windows is different…
The problem I ran was that I have html pop-up box with transparent shadow and flash object on page and the flash object appear on top of all elements, neverless that I set z-index on the div containing the flash.…
static int Fibonacci (int x){ Console.WriteLine (“x = {0}”, x); if (x <= 1) { return 1; } return Fibonacci (x-1) + Fibonacci (x-2); }
Mozilla Firefox Add-ons Firebug is the most useful and esential plugin for Firefox, that web developers use. Wealth on functionality to debug CSS, HTML, JavaScript. It also can be used to view loading times of the resources with and optimize…
Here are 5 simple steps to create your own RSS feed. RSS is nothing more that XML file with declared namespace for Atom RSS readers and some additional / defined tags. 1. XML Declaration To start your RSS 2.0 file…
Web development blogs http://www.petefreitag.com/ PHP Security http://shiflett.org/ http://phpsec.org/ http://www.php-security.org/
you have to download and install a plugin to your browser in order to use the advantages. Unfortunately recently Microsoft deny acces to their browser throught that plugin and you can not test IE versions. Here is the plugin site…