preload
Feb 09

Actually, it creates you a link you can use on your website. Anyone who will click on it – will have your website bookmarked in his Google Toolbar. Also – you can add your RSS feed straight to the Google toolbar with the use of this tool.

It’s free, fast and fresh, and we did it in just one day.

http://www.gobarz.com/

May 27

Monospace/Fixed Width Programmer’s Fonts:

Good Programming Font Criteria: Continue reading »

Dec 14

Some guys created project and uploaded it to server.
Their dev. server has register_globals: On.
Production server has register_globals: Off.
Good start, isn’t it?
Thanks to one of my friends for his help with this small script (put it just after session_start())

if (count($_REQUEST) > 0) {
        foreach ($_REQUEST as $key => $value) {
                if (is_array($_REQUEST[$key])) {
                        foreach ($_REQUEST[$key] as $key2 => $value) {
                                ${$key}[$key2] = trim($value);
                        }
                } else {
                        ${$key} = trim($value);
                }
        }
}

And enjoy your beer.