There are many reasons why people choose to use Linux. The most of them are computer engineers, computer enthusiasts, programmers etc. Lately with some newer distributions of Linux like Ubuntu, OpenSuse and others, and making them more user friendly and usable, the people choose not to use Windows anymore. Here are some of the reasons why you should run Linux. continue reading
In the world of Web 2.0 applications, speed is one of the most important things to take in mind. Every such web application often uses a large amount of JavaScript code which is run in the users’ browser. Of course using a JavaScript library is essential to speed up the development of these applications, but using it the wrong way exponentially decreases the execution speed of the code, so the application becomes very slow and unusable.
I’ve put together 5 performance tips for the most used JavaScript library, jQuery. continue reading
There is no official documentation about CSS shorthands but they are there and some of you know them, some of you not. I tried to make a list of CSS shorthands, that may be of use by anyone.
Locate your phpmyadmin installation folder. Then open config.inc.php file and enter this line:
$cfg['LoginCookieValidity'] = 3600 * 3;
This line of code extends your phpmyadmin session for 3 hours.
Make sure your config.inc.php file is writable, to do this change. Then you can make it unwritable again.
If you have a table like this:
<table>
<tr>
<td class='one'>Text</td>
<td class='two'>Some more text</td>
<td class='action'><a style='cursor:pointer'>delete</a></td>
</tr>
<tr>
<td class='one'>Text 2</td>
<td class='two'>Some more text 2</td>
<td class='action'><a style='cursor:pointer'>delete</a></td>
</tr>
</table>
And you want to create a click event that deletes a row from a table, and in the same time sends a post or get request to a server that updates the database, deletes the row, you can do this with jQuery like this:

Five reasons why you should run Linux