Paul's Programming Notes PostsRSSGithub

Prezi Video With No Audio

I converted a wmv video to a few different formats (mp4 and flv) and still couldn’t get the audio to play in Prezi. However, videos with the following codec settings will work:

codec info

Solution: Open your video with Handbrake and convert it to H264 with AAC as the selected audio codec and it will play just fine.

Useful Bootstrap Links

The Big Badass List of Bootstrap Resources

Also, an user named Billy Cravens on Meetup.com left a ton of good bootstrap links (bootsnip looks especially awesome) in this post: http://www.meetup.com/HoustonCFUG/events/79862792/

Twitter Bootstrap:
https://getbootstrap.com/

Bootswatch: (free Bootstrap themes)
http://www.bootswatch.com

Wrap Bootstrap (premium Bootstrap themes)
http://www.wrapbootstrap.com

Common Bootstrap Snippets
http://www.bootsnipp.com

Some nice date plugins for Bootstrap
http://www.eyecon.ro/bootstrap-datepicker/ https://github.com/dangrossman/bootstrap-daterangepicker

Bootstrap WYSIWYG editor plugin
https://github.com/jhollingworth/bootstrap-wysihtml5

Integrating Bootstrap with jQueryValidate
jQuery form validation with Bootstrap styles

Nice data grids:
http://www.datatables.net

Integrate Bootstrap with Data Tables:
http://datatables.net/blog/Twitter_Bootstrap_2

HTML5 In < IE9

html5shiv

I saw this javascript library in the code for the Mozilla Support page (really well done). It looks like it adds HTML5 functionality to older versions of IE. Looks like it should be really useful in the future.

PHP - Verify File Is Uploaded And Zip

if($_FILES["zip_file"]["name"]) {
     $filename = $_FILES["zip_file"]["name"];


     $name = explode(".", $filename);

     $continue = strtolower(end($name)) == 'zip' ? true : false;
     if(!$continue) {
          $message = "The file you are trying to upload is not a .zip file. Please try again.";
     } else {
          $message = "File Is .zip";
     }
}

PHP - Loop Through Excel Document and Print Cells

require_once 'excel_reader2.php';

foreach($reader->sheets as $k=>$data)
 {
    echo "\n\n ".$reader->boundsheets[$k]."\n\n";

    foreach($data['cells'] as $row)
    {
        foreach($row as $cell)
        {
            echo "$cell\t";
        }
        echo "\n";
    }
 }