Few months ago, I had a problem after mail server migration. The old mail server decided to die and I had to replace the complete server. I read my logs carefully (on …
Zen coding in Aptana
Zen Coding is a set of plug-ins for text editors that allow for high-speed coding and editing in HTML, XML, XSL, and other structured code formats. To install ZC plugin, …
Read file line by line with PHP
$fh = fopen("myFile.txt", "r"); while (!feof($fh)) { $line = fgets($fh); echo $line; } fclose($fh);$fh = fopen("myFile.txt", "r"); while (!feof($fh)) { $line = fgets($fh); echo $line; } fclose($fh);
Nice try a**hole!!!
The thing which scares me is the fact that this phishing email was not recognized by Gmail spam/antivirus/malware/phishing filter…
Why PostgreSQL is not so popular?
Good tutorials about PostgreSQL can be found but not so easy like for MySQL. I decided to install PostgreSQL on my own server just to see what is the main …
MySQL DATE_FORMAT() letter representations
Here is a quick chart with MySQL DATE_FORMAT letter representation so you can format date how ever you want… Specifier Description %a Abbreviated weekday name (Sun..Sat) %b Abbreviated month name …
How To Block Facebook with Mikrotik
From time to time, some employees doesn’t understand the normal language and the only thing you can do is to use force. Facebook is good and nice thing but only …
Good job Dell
This is the right way to provide drivers… http://ftp.dell.com/Pages/Drivers/ Hope more vendors will follow in their footsteps.
Centos server – DOCSIS howto
DOCSIS stands for Data over Cable Service Interface Specification and is a standard developed by Cablelabs. docsis is a small program that can be used to generate binary configuration files …
Thunderbird 15 problems
As you probably already know, few days Mozilla released Thunderbird 15 which introduces this and that, security updates, bla bla… Well I made a mistake and upgraded from version 14 …