Easy way to convert video online

Ever needed to convert a video from one format to another?  I needed to convert a flv to a mp4 yesterday and found that there were lots of programs out there that say they can do this.  Some are free, some cost money.  The first six I downloaded didn’t work at all.  Then I found [...]

Obscure PHP5 information

<?= $variable ?> is depreciated in PHP5 (along w/ all other tags that are not <?php ?>).  I don’t care so much about the others, but I actually use this one.  <?= $title ?> just makes more sense than <?php echo $title; ?>
The last instruction before a closing tag does not require a semicolon; however, [...]

Small JavaScript DateTimeTools object

So I got the project working on a tv schedule at work. As you can imagine there is work that needs to be done with dates and times when moving forward / back in the schedule. I found a few things out there that were full blown date/time js libraries, but they were [...]

Ever need to iterate though all the members of an object (javascript)?

You know you have… if you are like me though, you can never remember the exact syntax. Here it is:

for (var name in object)
{
if (object.hasOwnProperty(name))
{
alert(name + ‘: ‘ + object[name]);
}
}

command line reporting

Here are some things I have done in the past to pull data out of log files. I find myself referring to this list from time to time to remember how I did things in the past.

Real Queries That May Need To Be Repeated
 
ATT YIH upgrades in the month of 200709
$ listysftclog 200709* | [...]