model rocketry :D
I'm thinking about making a rather high powered rocket for fun :D.

Current Specs:

Diameter - 4-5in.
Length - ~4-5ft.
Engines - (2)F10-8 and G78-10G/L
Electronics - (1)Staging Timer (Tells the F-10'
posted: June 18, 2010
comments: (6)

Fast Post
is it just me or is every business in this economy taking it in the wrong direction?? No one has money, so businesses raise their prices, and are completely confused as to why they aren't making any money.
posted: May 30, 2010
comments: (2)

SQL IS NOT NULL/IS NULL, broken?
If your PHP/MySQL command for IS NOT NULL/IS NULL breaking on you, then here's a quick solution.

<?php
$var = NULL;
$results = mysql_query("SELECT * FROM table WHERE field != '$var'");
?>

o&
posted: April 26, 2010
comments: (0)

Fast Post
linnea, just realized the back of my laptop has a Q, laggggggg
posted: April 21, 2010
comments: (3)

Fast Post
A fun infinite php loop.

<?php
$i=1;
do
{
$i++;
echo htmlentities('&');
}
while ($i>1);
?>

It essentially sees the & and replaces it with it's html code (&amp
posted: April 21, 2010
comments: (0)