Gridster is a jQuery plugin that allows building intuitive draggable (drag-and-drop enable) layouts from elements spanning multiple columns. You can even dynamically add and remove elements from the grid. It is on par with sliced bread, or possibly better.
Category Archives: Programming
Wookmark jQuery plugin
We have received several questions about how the grid layout on wookmark.com is created so we created this simple plugin. It lays out a series of elements in a dynamic column grid.
Send mail through mail relay with PHP
mail() uses the smtp/sendmail settings found in php.ini. If you need to send it via another smtp, or one with authentication (like in your example) mail is simply not enough.
Create daemons in PHP
Everyone knows PHP can be used to create websites. But it can also be used to create desktop applications and commandline tools. And now with a class called System_Daemon, you can even create daemons using nothing but PHP. And did I mention it was easy?
Show the last queries executed on MySQL
1) Execute SET GLOBAL log_output = ‘TABLE’; 2) Execute SET GLOBAL general_log = ‘ON’; 3) Take a look at the table mysql.general_log
IE X-UA-Compatible Meta Tag
The X-UA-Compatible meta tag allows web authors to choose what version of Internet Explorer the page should be rendered as. It is used by Internet Explorer 8 to specify if a page should be rendered as IE 7 (compatibility view) or IE 8 (standards view).