Skip to content

Instantly share code, notes, and snippets.

View ninetwentyfour's full-sized avatar

Travis Berry ninetwentyfour

View GitHub Profile
@ninetwentyfour
ninetwentyfour / example1.php
Created August 28, 2011 16:39
Use WordPress’ is_page() To Display Custom Content - blogpost
<?php
if ( is_page('about')) {
echo '<div id="secondnav">This is the super cool secondary navigation.</div>';
}
?>
@ninetwentyfour
ninetwentyfour / example1.html
Created August 28, 2011 16:44
Say It Aint So! Time For A New Contact Form - blogpost
<script type="text/javascript">
//<![CDATA[
var _wpcf7 = { cached: 1 };
//]]>
</script>
@ninetwentyfour
ninetwentyfour / example1.php
Created August 28, 2011 16:54
Use WordPress’ is_page() To Exclude Content - blogpost
<?php
if ( is_page('work') || is_page('contact')) {
echo '<div id="secondnav"><div class="secondnavs"><a href="http://www.travisberry.com/video/">Video</a></div><div class="longsecondnavs">.</div></div>';
}
?>
@ninetwentyfour
ninetwentyfour / example1.html
Created August 28, 2011 17:00
Create Simple A/B Tests In WordPress - blogpost
<script>utmx_section("Insert your section name here")</script>
@ninetwentyfour
ninetwentyfour / example1.html
Created August 28, 2011 17:05
On HTML5 Video - blogpost
<video src="movie.ogg" controls="controls"></video>
@ninetwentyfour
ninetwentyfour / example1.txt
Created August 28, 2011 17:21
Video Compression Show Down
ffmpeg -i sourcemovie.mov -vcodec libx264 -vpre hq -b 400k -g 250 -keyint_min 24 -bf 16 -coder 1 -refs 6 -flags +loop -deblockalpha -6 -deblockbeta -6 -partitions +parti4x4+parti8x8+partp8x8+partb8x8 -flags2 +dct8x8+mixed_refs+wpred+bpyramid -me_method umh -subq 8 -s 640x360 -acodec libfaac -ar 44100 -ab 96k -threads 6 -f mp4 outputmovie.mp4
@ninetwentyfour
ninetwentyfour / example1.txt
Created August 28, 2011 17:45
Best Ogg Theora Video Compressor - blogpost
ffmpeg -i Elephants_Dream.mov -vcodec libtheora -b 700k -s 512x288 -acodec libvorbis -ab 96k -threads 6 test.ogg
@ninetwentyfour
ninetwentyfour / example1.txt
Created August 28, 2011 18:06
How To Setup A LAMP Virtual Machine 1 - blogpost
sudo apt-get install apache2
@ninetwentyfour
ninetwentyfour / example11.txt
Created August 28, 2011 18:10
How To Setup A LAMP Virtual Machine 2 - blogpost
gksudo gedit /etc/php5/apache2/php.ini
@ninetwentyfour
ninetwentyfour / example20.txt
Created August 28, 2011 18:12
How To Setup A LAMP Virtual Machine 3 - blogpost
gksudo gedit hosts