Mo Kargas is a creative web developer currently working for The Cloud Concept and based in beautiful Adelaide, South Australia...

From the Blog

Sweetcron Lifestreaming Blog Software Released

1

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

Manga Avatar Fad Sweeps SocNets

0

And I just couldn’t help myself:

Go on, conform. You know you want to. Faceyourmanga.com

Drupal Tips: Expose Available Drupal Variables

0

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!