Quotes

  • Halford – Silent screams

    Look at me I’m chasingAfter dreams left in the stormWhat I am is allThat really matters nowThat lies are gone –That lies are gone,All the lies are gone,The lies are gone. Tempting fate and losingFriends along the way I lovedNo regretsI’m standingWith a needle in my heart –Needle in my heart,Needle in my heart,Needle in…

    Read More

  • Personal quote of the day

    A man who doesn’t spend time with his family can never be a real man. Don Corleone

    Read More

  • Quote of the day #WiseAssAdvice

    If you don’t want to do something, just prove everybody that you suck at it. #WiseAssAdvice SOURCE

    Read More

  • Quote of the day

    Talking to web camera is super strange. – Milan Ivanovic

    Read More

  • Enjoy this awesome gist by Mark Jaquith! <!– `-/+osssssssssssso+/-` ./oys+:.` `.:+syo/. .+ys:. .:/osyyhhhhyyso/:. ./sy+. /ys: -+ydmmmmmmmmmmmmmmmmmmdy+- :sy/ /h+` -odmmmmmmmmmmmmmmmmmmmmmmmmmmdo- `+h/ :ho` /hmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmds/ `oh: `sy. /hmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmd+ .ys` .ho `sdddhhhyhmmmdyyhhhdddddhhhyydmmmmy oh. .h+ “-dmmy.“ “.ymmmmh +h. `ho ` /mmmmmmmmmmo .dmmmmmmmms ~~ oh` oy .h` ymmmmmmmmmm: /mmmmmmmmmy` -d. yo .d- ymy `dmmmmmmmmmd. ymmmmmmmmmh` /my -d. oy -mmm+ /mmmmmmmmmmy .dmmmmmmmmmy…

    Read More

  • We’ve all seen margin: 0 auto; for horizontal centering, but margin: auto; has refused to work for vertical centering… until now! [CodePen height=800 show=result href=gEiDt user=shshaw ]   See full documentation  

    Read More

  • Super awesome gist written by my colleague Ronald Huereca. You wanna disable autocomplete on front-end for Gravity Forms, this is just right code snippet for you. <?php add_filter( ‘gform_form_tag’, ‘gform_form_tag_autocomplete’, 11, 2 ); function gform_form_tag_autocomplete( $form_tag, $form ) { if ( is_admin() ) return $form_tag; if ( GFFormsModel::is_html5_enabled() ) { $form_tag = str_replace( ‘>’, ‘…

    Read More

  • [CodePen height=500 show=result href=eEyam user=lanche86 ]  

    Read More

  • [CodePen height=500 show=result href=FnpiD user=lanche86 ]

    Read More

  • <?php while ( have_posts() ) : the_post(); ?> <?php if ($i % 4 == 3 ) $classname = ‘large’; else $classname = ‘small’; ?> <div class=”program-<?php echo $classname; ?>”> <?php the_post_thumbnail( “program-size-$classname”, array( “class” => “program-size” ) ); ?> <h3><?php the_title(); ?></h3> <p><?php the_content(); ?></p> <?php $i++; ?> </div> <?php endwhile; ?>   Or check…

    Read More