Joe Riggs Bloggs

Joe Riggs Bloggs

  • About
  • Books
  • Links
  • Quotes
  • Resume
  • Iphone File System Browser

    Looking for a quick and easy way to retrieve any files directly off of your iPhone?  Look no more, code google has your solution.  iPhoneBrowser – “Windows based GUI for manipulating files on the iPhone using the Manzana.dll” Look for the Setup file on the right side of the page. for instance, if you were […]

    March 11, 2009
  • php: Send xml/soap to Secured Server

    Sample requires curl see code below: function callWebServicePost($host, $url, $payload, $user, $password) { $header[] = “Host: “. $host; $header[] = “Content-type: text/xml”; $header[] = “Content-length: “.strlen($payload) . “\r\n”; $header[] = $payload; $session = curl_init($url); // Tell curl to use HTTP POST curl_setopt ($session, CURLOPT_POST, true); curl_setopt($session, CURLOPT_CONNECTTIMEOUT,30); // Tell curl that this is the body […]

    March 11, 2009
  • Disable iPhone Camera Autorun/Autoplay in XP

    Tired of canceling out the autorun on your XP box whenever you plug in your iPhone? After you plug in your iPhone: goto start -> My Computer right click on ‘Apple iPhone’ -> Select ‘Properties’ Go to the events tab, make sure that the event selected is set to ‘Camera  Connected’. Select the ‘Take No […]

    March 7, 2009
  • Display images in a directory with php

    Here’s a quick and dirty way to show all the files in a directory. I use this in my images folder to see what’s there. Some improvements would be to add a mime-type check or a *jpg check. <?php $path = “./”; $dir_handle = @opendir($path) or die(“Unable to open folder”); while (false !== ($file = […]

    February 28, 2009
←Previous Page
1 … 16 17 18 19 20
Next Page→

Joe Riggs Bloggs