Blog Archives

Saving credentials for GitHub on Windows

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

Tagged with: , ,
Posted in HTML

Set default Ruby version with pik

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

Tagged with: ,
Posted in HTML

Make link dial phone number when click on it

Making phone number dial on click It is only html and is w3c standardised. Here is the code and it’s better to check the document at w3c.org <a href=”tel:[PHONE-NUMBER]“>[PHONE-NUMBER]</a> You can even send sms <a href=”sms:[PHONE-NUMBER]?body=[MESSAGE]“>[PHONE-NUMBER]</a> Note something: the phone

Tagged with: , , ,
Posted in HTML

Setting Flash Object z-index

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.

Tagged with: ,
Posted in HTML

Simple Snippet Function for Calculating Fibonacci Number

static int Fibonacci (int x){    Console.WriteLine (“x = {0}”, x);     if (x <= 1)    {        return 1;   }   return Fibonacci (x-1) + Fibonacci (x-2); }

Tagged with:
Posted in HTML

Most useful Mozilla Firefox plugins

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

Tagged with: ,
Posted in Articles, CSS, HTML, JavaScript

Create RSS 2.0 feed for your blog or site

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

Tagged with: ,
Posted in HTML

Related Blogs and Sites

Web development blogs http://www.petefreitag.com/ PHP Security http://shiflett.org/ http://phpsec.org/ http://www.php-security.org/

Tagged with:
Posted in HTML

Useful Meta Tags

Tag Name Examples Description author <meta name=”author” content=”Konstantin Delchev”> The author’s name. cache-control <meta http-equiv=”cache-control” content=”no-cache”> HTTP 1.1. Allowed values = public | private | no-cache | no-store. Public – may be cached in public shared caches Private – may

Tagged with:
Posted in HTML

Browser Sandbox

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

Tagged with:
Posted in HTML
Sites
Categories
Archives