You are here: Home

[themes] A new look for Techotronic

I have updated the official Techotronic theme, Magenta.

It is now a childtheme of the Thematic framework, it was built from scratch the last time.

Currently, I have no plans of releasing the new theme to the public, as it is not finished.

Posted in Magenta, Themes, WordPress | Tagged , , , | Leave a comment

[stuff] Shirt 4 link

Auch ich lasse mich kaufen!

3dsupply hat eine Aktion, bei der ich ein T-Shirt kostenlos bekomme, wenn ich diesen Blogbeitrag schreibe und einen Link auf deren Website einfuege.

Sehr gern, denn dieses T-Shirt hat es mir angetan ;-)

Boeses Hasi

Boeses Hasi

(links)
3dsupply
Shirt4link -Aktion
Boeses Hasi T-Shirt

Posted in Stuff | Tagged , , | 2 Comments

[How To] Tweak Linux performance

I stumbled upon this very nice and detailed whitepaper on IBM’s Redbook site.

(links)
IBM Redbooks

Posted in Linux, Software | Tagged , , , , | Leave a comment

[plugins] jQuery Colorbox 3.2

Today, I released a new version of my plugin. It is now working for NextGEN galleries! :-)

Get it here.

Changelog:

3.2 (2010-04-20)

Posted in jQuery-Colorbox, Plugins, WordPress | Tagged , , , , | Leave a comment

[How To] Load Javascript in WordPress

If your WordPress plugin or theme uses JavaScript, it is essential to know how to include it so that you don’t break other JavaScript libraries or plugins/themes that use JavaScript.

The straight forward way to load JavaScript is of course to embed a script tag with the JS file as a src attribute:

<script src="my-plugin/js/jquery.js"></script>

Of course you can load your own custom JavaScript that way, but don’t do that if you are loading a JavaScript library! Check the list of JavaScript libraries supplied by WordPress. Do not include a library with your theme/plugin if WordPress already brings it along!!!

WordPress offers a nice and easy way to load JavaScript libraries, the wp_enqueue_script() function. If you are including a JavaScript file that depends on e.g. jQuery, you can just tell WordPress and it will load jQuery for you!

Example from my jQuery Colorbox plugin:

wp_enqueue_script('colorbox', plugins_url('js/jquery.colorbox-min.js', __FILE__), array('jquery'), '1.3.6');

I tell WordPress to load the Colorbox JavaScript library that depends on jQuery. WordPress makes sure that the jQuery library is loaded before my JavaScript is loaded so everything will work as expected.

(links)
wp_enqueue_script description @ WordPress
JavaScript libraries supplied by WordPress

Posted in Development, JavaScript, WordPress | Tagged , , , , , , | Leave a comment

[How to] Back Up and Play Your Wii Games from an External Hard Drive

Lifehacker has a step by step guide on how to back up and play Wii games from an external hard drive.

Nice, I will try it as soon as I get my hands on a new external hard drive! ;-)

(links)
Guide @Lifehacker.com

Posted in Wii | Tagged , , | Leave a comment

[development] WordPress cheat sheets

I have compiled a list of four cheat sheets for WordPress development.

Woorkup WordPress cheat sheet

Woorkup WordPress cheat sheet

(by Woorkup)

Graphicrating WordPress cheatsheet

Graphicrating WordPress cheatsheet

(by Graphicrating)

An extensive list, available online. A reader of that blog uploaded the cheat sheet as a PDF here.

WP TOY Theme development checklist

WP TOY Theme development checklist

(by WP TOY)

Tekka SEO cheat sheet

Tekka SEO cheat sheet

(by Tekka)

Posted in Development, WordPress | Tagged , , , | 1 Comment

[development] jQuery cheat sheets

It is always difficult to remember the syntax of APIs. This is where cheat sheets come in handy.

These are three jQuery cheat sheets that I found on the web:

Future Colors.ru jQuery cheatsheet

Future Colors.ru jQuery 1.4 cheatsheet

(by Future-Colors.ru)

Impulsestudios.ca jQuery cheatsheet

Impulsestudios.ca jQuery 1.4 cheatsheet

(by Impulsestudios.ca)

Woorkup.com jQuery 1.3 cheatsheet

Woorkup.com jQuery 1.3 cheatsheet

(by Woorkup.com)

Posted in Development, JavaScript | Tagged , , , | Leave a comment

[development] Increase your jQuery performance

Giulio Bai took the time to sum up ten things to do to speed up jQuery performance.

Read the post here.

Posted in Development, JavaScript | Tagged , , | Leave a comment

[plugins] jQuery Colorbox 3.1

Today, I released a new version of my plugin.

Get it here.

Changelog:

3.1 (2010-04-10)

  • BUGFIX: Automatic hiding of embedded flash objects under Colorbox layer now works in Internet Explorer.
  • NEW: Added theme#9, a modified version of theme#4.
  • NEW: French translation by Tolingo Translations
  • NEW: If auto colorbox is switched on, plugin now adds Colorbox functionality to every image regardless of position
  • CHANGE: Serhat Yolaçan updated the turkish translation.
Posted in jQuery-Colorbox, Plugins, WordPress | Tagged , , , | 8 Comments