Recent Blog Entries

Drumming Retrospective

Since I haven’t posted anything in a while I decided it is time for a music post. Here are some tracks that I recorded with various bands I played in as a drummer. Some of the recording are pretty bad but I’ve put them up anyway ;)
Hope you like at least some of the tracks.

Here they are:
[1996] Implicite – Competition
[1998] Implicite – New Ideals (live recording)
[1999] Motorno Ulje – Zadnja litra
[2001] The Farewell Reason – Thank You
[2003] Youth Against – War Against War (live recording)
[2005] The Farewell Reason – Embrace Me, Erase Me
[2005] Outre – Rose
[2005] Outre – They Call Themselves Hardcore
[2009] The Farewell Reason – Sunday Suit Fade Out

HUD Growl Theme

An excellent theme for Growl, using it right now. Great job.

Get it now.

Class Names Revisited

Great article on class names by Alen Grakalić from css globe.

Creolab.hr is now iPhone friendly

I’ve had an iPhone for quite some time, so I was looking for a WordPress plugin that would automatically reformat the layout of the blog if you visit it from your iPhone. And I found the perfect one, WPtouch.

It simply great, and I haven’t found any issues with it, so visit the site from your iPhone and have a look.

Site for HRFF is live

The site for the Human Right Film Festival was lauched so go and check it out at http://humanrightsfestival.org/. It can also be found in our Work section [HRFF].

All the illustrations were made by Keith Rosson and the layout itself by 5L081CH.6R4PH1C5.

The portfolio has been updated

I’ve finaly found some time to update the portfolio section, so go on and check out our new projects.

Here’s are some projects that stand out:

Integration of RedBean ORM with CodeIgniter

I still haven’t updated my work, so here’s something in the meantime.

I’ve managed to successfuly integrate RedBean into the CodeIgniter PHP framework. I don’t think any additional explanation is necesary since it’s pretty simple and basic stuff.

Here are the reuired steps:

  1. Download RedBean and put it into /app/thirdparty/redbean/
  2. Create a library (/app/libraries/redbean.php). The class shoud be called Redbean, and the __construct() function should look something like this:
    $this->ci =& get_instance();
    
    // Include database configuration
    include(APPPATH.'/config/database.php');
    
    // Include required files
    include(APPPATH.'/thirdparty/redbean/redbean.inc.php');
    
    // Database data
    $hostname     = $db[$active_group]['hostname'];
    $username     = $db[$active_group]['username'];
    $password     = $db[$active_group]['password'];
    $database     = $db[$active_group]['database'];
    
    // Create RedBean instance
    $toolbox = RedBean_Setup::kickstartDev('mysql:host='.$hostname.';dbname='.$database, $username, $password);
    $this->ci->rb = $toolbox->getRedBean();

  3. Your controllers can then do some fun stuff like this:
    $post = $this->rb->dispense("post");
    $post->title = 'My first post from CodeIgniter';
    $post->body ='Lorem ipsum dolor sit amet, consectetur adipisicing elit....';
    $post->created = time();
    $id = $this->rb->store($post);

Haven’t tested it much but everything seems to work.
If someone has a better sollution just let me know.

Working hard

I’ve been very busy for the last few months and because of that the site didn’t get any updates. I’ll upload all my recent work to the portfolio section so you can see what I’ve been up to.

I also started working more on my CodeIgniter skills and I’m rewriting the core for my CMS Krustr°, so there’s gonna be some updates there also. You can follow the progress of Krustr° through Twitter at @krustr.

That’s all for, stay tuned.

The Do’s & Don’ts of Modern Web Design

WebD&D offers free top-notch tips, tricks, best practices and resources for your reading pleasure. It is brought to you by web enthusiasts who enjoy their contribution in making the WWW a better place.

Check ‘em out!

Trula Jabuka

Stranica koja bi trebala okupiti sve nezadovoljne sa hrvatskim Apple distributerom. Za sada samo svjedočenje o wifi tipkovnicama, te njihovoj famoznoj garanciji od samo 7 dana.

Pogledaj Trulu Jabuku.

Vertical Centering With CSS

There are a lot of method to centre objects with CSS, and this article shows you five of them. It can be difficult to choose the best one for your need but this article with guide you to the right direction.

Read more →

Safari 4 Beta Released

Apple has release the beta version of the Safari 4 browser. So far it’s looking very good, and running a bit faster than the old version.

Download a copy →



Copyright © 2008–2009. All rights reserved.

RSS Feed. This blog is proudly powered by Wordpress.