Got a new wordpress theme from carrington

Posted April 2nd, 2009 in Design by Louie Miranda

Thanks to Carrington for my new WP-Theme!

MAKE MY LOGO BIGGER! – HAHA

Posted February 6th, 2009 in Design, Funny by Louie Miranda

Guaranteed! Funny! :)

  • Improves brand recognition
  • Grabs customer’s attention
  • Works in just minutes!
  • Goes on smooth!

http://makemylogobiggercream.com/

How to do regex on JQuery?

Posted December 11th, 2008 in Design, Programming, Technology by Louie Miranda

I am now a fan of JQuery, trying to implement one application at a time. :) My current problem is how to do regular expression using JQuery?

Three alternating css class using PHP

Posted July 29th, 2008 in CSS, Programming by Louie Miranda

My code for three alternating class:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class=row_0>content here</div>
<div class=row_1>content here</div>
<div class=row_3>content here</div>
 
    <?php
    $i=0;
    foreach ($row as $data)
    {
    $i+1;
    $row_class = ($i % 3);
    //tpl class
    echo 'class=row_'.$row_class;
    }
    ?>

HTH

Illustrator crash course

Posted September 5th, 2005 in Design by Louie Miranda

I am reading a crash course article about Adobe Illustrator.. :)

http://www.sketchpad.net/illustrator.htm

http://www.huntfor.com/design/tutorials/illustrator.htm

vector graphics is really fun.