On places and things that are. On the upheavel that things to come will bring. Impact-oriented thoughts on technology.
| Home | My Account | Directories |
Design you color scheme
Published on 2010-10-25 09:06:41
Searching for an harmonious color scheme starting with a givent color? I recomend Petr Stanícek’s “Color scheme designer“. Using a simple yet powerfull graphical interface, you can find complementary, triadic analogic and many other methods to any web color. Colors can be directly copied to your CSS. I recommend combined use with ColorZilla Firefox plugin. [...]
List all methods of an object in PHP
Published on 2010-08-12 15:41:45
echo get_class($my_class_instance) . ‘<br/>’; foreach (get_class_methods($my_class_instance) as $method) {echo ‘———>’ . $method . ‘<br/>’;} Stumble upon something good? Share it on StumbleUpon Blog this on Blogger Digg this! Share this on Facebook Add this to Google Bookmarks Add this to Mister Wong Post this to MySpace Tweet This!
Stocking machine readable data in a ‘td’ tag
Published on 2010-08-12 15:31:29
To stock ‘machine readable’ information about a table cell use the abbr tag: <td abbr=”my_data”> Might come in handy for example when you try to give jQuery a handle on specific table cells when id and class tags are already in use. The ‘abbr’ attribute is an official attribute of the td tag in HTML [...]