Recently on Twitter:

  • Follow me →
  • Archived entries for wordpress

    Back to the Basics… Modern Clix WP Theme

    The loading speed of this website was just horrible. Having a ton of plug-ins, heavy javascript and automated installed it is asking for trouble. I’m giving up on the looks, bells and whistles. It’s back to basic! Simple layout, no fuzz, lot’s of white space and some nice fonts. Mindplunge converted to the Modern Clix WordPress theme. Just what I was looking for. I simply don’t have the time to develop my own WP theme again so why not use a free theme!

    Rodrigo Galindez is a talented designer and hisĀ  Modern Clix WP Theme is beautiful. Over the next few days I will trick it out a bit but the delivered framework is and will be the work of Rodrigo. Well done!

    A new beginning, a new design

    I’ve been working hard for the last two weeks to complete the new design for mindplunge. As you might have figured out I’m starting as a freelance web designer and needed to dust off my portfolio. What better way than working on my own domains!

    Color scheme is slightly darker but overall the same kinda blue-ish. Sidebar has been stripped to an accordion-style navigation. Click the large buttons to reveal more content! I’m sure you can figure it out.

    There are still some elements I need to work on (pagination, trackbacks and several plug-ins) but I couldn’t wait to put some stuff already live. More soon!

    Update: Apperently the wp_head() function isn’t playing nice with accordion.js. Had to roll back to the old theme. Oops

    Update: All good. The ‘lightview plus’ plug-in was interferring with the accordion. Lightview plus is now replaced with shadowbox.

    Rotating quotes in PHP

    I added some random quotes to the top right of this blog (go ahead and refresh!). Since I’m using WordPress I decided to go with a PHP version instead of javascript. In a nutshell the differences between PHP and JS:

    Anyone can use the JavaScript version. It will run on any blog that allows the use of scripts. It will also run on static, non-blog websites. For any blogging system that does not use PHP, like Blogger, it’s the only choice.

    If you’re using a system like WordPress, there are advantages to the PHP version. The biggest of these is that PHP is server-side and JavaScript is not. The JavaScript version will download everything and a visitor’s web browser runs the script to determine what to display. Because of this, your visitor’s browser must be able to run JavaScript for anything to happen. Some devices, like mobile phones and other small-screen browsers, don’t support JavaScript at all.

    PHP works differently. The PHP script runs on the web server, so only the output is sent to the web browser. In addition to saving you a marginal amount of bandwidth, this guarantees that all viewers will see the content properly.

    If you can use PHP, there’s not really any reason at all to use the JavaScript version.

    Here is the code but just like with the JavaScript version, the script generates no HTML, so you’ll need to wrap the script in whatever tags are appropriate for your situation:

    PHP Version:

    <?php
    $myRandomQuotes=array(
    'quote 1 goes here.',
    'quote 2 goes here.',
    'quote 3 goes here.',
    'quote 4 goes here.'
    );
    echo $myRandomQuotes[rand(0,sizeof($myRandomQuotes)-1)];
    ?>

    note: To prevent the apostrophes in “You’re” and “Don’t” etc. from screwing up everything, I added in a backslash to tell the JavaScript interpreter to treat the next character as text rather than a command.

    WordPress Theme: Mindplunge

    I’m considering releasing my design for Mindplunge for the public. I’ve been playing with this thought for a while and I’m curious if anyone is interested. If so leave a comment and we take it from there (I might release it anyway since the # of readers are not stellar ;) ).

    Besides ego-boosting I’m curious what the backlink effect will befor this blog. So leave me a comment if you would like this design to be a WordPress Theme.

    Tweets are back

    … just look at your right.



    Copyright © 2004–2009. All rights reserved.

    RSS Feed. This blog is proudly powered by Wordpress and uses Modern Clix, a theme by Rodrigo Galindez.