Mo Kargas is a creative web developer currently working for The Cloud Concept and based in beautiful Adelaide, South Australia...
From the Blog
In Open Source, Software
28 Aug, 2008
Sweetcron, an open source lifestreaming blog software package developed by Yong Fook, has been released.
Sweetcron is a simple package you can use to aggregate your socical networking and blog services together, such as Twitter and Plurk. Prominent features include a neat default theme, a basic blog function, easily customized php/css themes, tagging, and a simple to use administration interface.
Sweetcron is simple enough to leave alone. It will happily aggregate your feeds together in a neat visual fashion and is tidy enough to be used as a simple blog.
View my 30 minutes of Sweetcron customization here at RD
Download Sweetcron (Currently version 1.02 beta)
Installation instructions
Further Support
In Social Media
16 Aug, 2008
In Drupal, Theming, Web Development
04 Aug, 2008
Ever wanted more than just dumping the content of the node you’re in, or it’s additional variables? In Drupal you can still do this using a basic PHP command, get_defined_vars() .
Open up any of your template files and paste the following code in (generally just page.tpl.php).
print '<pre>'; print_r(get_defined_vars()); print '</pre>';
The result is a dump of all variables available to you in your theming work!

