<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>twipping the rift</title>
	<atom:link href="http://blog.twipout.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.twipout.com</link>
	<description>Thoughts on everything from tech to entertainment according to myself</description>
	<pubDate>Fri, 11 Jul 2008 15:16:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6-bleeding</generator>
	<language>en</language>
			<item>
		<title>iPhone 2.0 Software Nightmare</title>
		<link>http://blog.twipout.com/2008/07/11/iphone-20-software-nightmare/</link>
		<comments>http://blog.twipout.com/2008/07/11/iphone-20-software-nightmare/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 15:14:55 +0000</pubDate>
		<dc:creator>Freddie</dc:creator>
		
		<category><![CDATA[iphone]]></category>

		<category><![CDATA[tech]]></category>

		<category><![CDATA[iphone 2.0]]></category>

		<guid isPermaLink="false">http://blog.twipout.com/?p=17</guid>
		<description><![CDATA[I updated my iPhone sofware/firmware/OS today @ 8:00 AM when it iTunes allowed you to download and install in my region.  I am now officially bricked!  I can&#8217;t downgrade and I keep on getting &#8220;We could not complete your iTunes Store request.  An unknown error occurred (-9838)&#8221;
This is crap!!! What if I [...]]]></description>
			<content:encoded><![CDATA[<p>I updated my iPhone sofware/firmware/OS today @ 8:00 AM when it iTunes allowed you to download and install in my region.  I am now officially bricked!  I can&#8217;t downgrade and I keep on getting &#8220;We could not complete your iTunes Store request.  An unknown error occurred (-9838)&#8221;<br/><br />
<b>This is crap!!!</b> What if I had an emergency?!!!  This software should not require some validation at the end of installing it or the phone won&#8217;t work!!!  Who&#8217;s lame-brain idea was that!<br />
<br/><br />
<a href="http://www.flickr.com/photos/freddiep/2658870580/" title="iPhone 2.0 Software Bricked Me by flexmasterfreddie, on Flickr"><img src="http://farm4.static.flickr.com/3140/2658870580_811889e71f_o.png" width="300" alt="iPhone 2.0 Software Bricked Me" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.twipout.com/2008/07/11/iphone-20-software-nightmare/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tab To Drop-Down / Select Controls in Webbrowser on Mac</title>
		<link>http://blog.twipout.com/2008/04/22/14/</link>
		<comments>http://blog.twipout.com/2008/04/22/14/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 22:34:43 +0000</pubDate>
		<dc:creator>Freddie</dc:creator>
		
		<category><![CDATA[tech]]></category>

		<category><![CDATA[apple]]></category>

		<category><![CDATA[firefox]]></category>

		<category><![CDATA[leopard]]></category>

		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://blog.twipout.com/?p=14</guid>
		<description><![CDATA[It&#8217;s kind of annoyed me for a while, but the default behavior of tabbing through controls on a web form in a browser (let&#8217;s say FireFox) on a Mac will completely skip drop-down boxes.  The drop-down or select boxes are an integral part of every form I&#8217;ve ever made on the web, so the [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s kind of annoyed me for a while, but the default behavior of tabbing through controls on a web form in a browser (let&#8217;s say FireFox) on a Mac will completely skip drop-down boxes.  The drop-down or select boxes are an integral part of every form I&#8217;ve ever made on the web, so the fact that you can&#8217;t use the keyboard to navigate to them was very troubling to me.  I have since found a setting that will change that behavior.  The problem was not with FireFox, but with a setting on the Mac.  Just open System Preferences and change your setting to the following:<br />
<img src="http://farm3.static.flickr.com/2111/2434435929_5dd4c796d9_o.png" alt="" width="420" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.twipout.com/2008/04/22/14/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Django Debugging Helper</title>
		<link>http://blog.twipout.com/2008/04/21/django-debugging-helper/</link>
		<comments>http://blog.twipout.com/2008/04/21/django-debugging-helper/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 23:16:55 +0000</pubDate>
		<dc:creator>Freddie</dc:creator>
		
		<category><![CDATA[tech]]></category>

		<category><![CDATA[django]]></category>

		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://blog.twipout.com/?p=13</guid>
		<description><![CDATA[I found this to be extremely helpful inside my django source to aid in debugging Ajax and other server 500 errors.  At the bottom of this function add the following lines:

def technical_500_response(request, exc_type, exc_value, tb):
    """
    Create a technical server error response. The last three arguments are
  [...]]]></description>
			<content:encoded><![CDATA[<p>I found this to be extremely helpful inside my django source to aid in debugging Ajax and other server 500 errors.  At the bottom of this function add the following lines:</p>
<pre class="python" name="code" style="width:600px">
def technical_500_response(request, exc_type, exc_value, tb):
    """
    Create a technical server error response. The last three arguments are
    the values returned from sys.exc_info() and friends.
    """

    # ... skip to the end of the function

    print '-' * 80
    print ' 500 Exception', c['exception_type'], c['exception_value']
    print '     url:', request.path, '\n'
    for fr in [ frames[i] for i in range( len(frames)-1, 0, -1 ) ]:
        print '   trace: [%5s] %-20s in %s' % (fr['lineno'] , fr['function'], fr['filename'] )
    print '-' * 80

    return HttpResponseServerError(t.render(c), mimetype='text/html')
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.twipout.com/2008/04/21/django-debugging-helper/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Music Lovers Rejoice</title>
		<link>http://blog.twipout.com/2008/04/12/music-lovers-rejoice/</link>
		<comments>http://blog.twipout.com/2008/04/12/music-lovers-rejoice/#comments</comments>
		<pubDate>Sat, 12 Apr 2008 23:31:05 +0000</pubDate>
		<dc:creator>Freddie</dc:creator>
		
		<category><![CDATA[tech]]></category>

		<category><![CDATA[funny]]></category>

		<guid isPermaLink="false">http://blog.twipout.com/?p=12</guid>
		<description><![CDATA[Couple of words here&#8230; I&#8217;m a musician and &#8230; I don&#8217;t know what the hell to say to this:
http://www.sharperimage.com/us/en/catalog/product/sku__BZ100

Here&#8217;s a couple of thoughts:

The phrase &#8220;Play the light&#8221; is apparently trademarked
I was always wondering how I could be my own one man band&#8230; do you think we&#8217;ll see this instrument used in an orchestra anytime soon? [...]]]></description>
			<content:encoded><![CDATA[<p>Couple of words here&#8230; I&#8217;m a musician and &#8230; I don&#8217;t know what the hell to say to this:<br />
<a href="http://www.sharperimage.com/us/en/catalog/product/sku__BZ100">http://www.sharperimage.com/us/en/catalog/product/sku__BZ100</a><br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/TpDZ3WotLXY&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/TpDZ3WotLXY&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>Here&#8217;s a couple of thoughts:</p>
<ul>
<li>The phrase &#8220;Play the light&#8221; is apparently trademarked</li>
<li>I was always wondering how I could be my own one man band&#8230; do you think we&#8217;ll see this instrument used in an orchestra anytime soon?  Oh wait&#8230; no BECAUSE YOU ARE THE ORCHESTRA AND THE CONDUCTOR NOW.  Screw the orchestra man!  They were no-talent, non-laser emitting ass clowns anyway.  LASERS RULE!</li>
<li>I want to be blissfully ignorant enough to want to high five my buddy after playing that thing and think : &#8220;job well done sir&#8230; YOU ARE A BADASS ON THE LIGHT THINGY&#8221;</li>
<li>Do you think MIT is working on a big badass version of this with the most powerful laser known to man? That&#8217;d be kind of cool, cause I want to see anyone that tried to play laser music get their hand lasered off.</li>
<li>Just like playing with some lasers does not make you a musician, wearing sunglasses does not make you cool.</li>
<li>Jam session?  Are you shitting me?</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.twipout.com/2008/04/12/music-lovers-rejoice/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Show All Files in Finder</title>
		<link>http://blog.twipout.com/2008/04/09/show-all-files-in-finder/</link>
		<comments>http://blog.twipout.com/2008/04/09/show-all-files-in-finder/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 22:12:42 +0000</pubDate>
		<dc:creator>Freddie</dc:creator>
		
		<category><![CDATA[tech]]></category>

		<category><![CDATA[apple]]></category>

		<guid isPermaLink="false">http://blog.twipout.com/?p=8</guid>
		<description><![CDATA[It&#8217;s simple to show hidden files in Finder:

defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s simple to show hidden files in Finder:</p>
<p><img src="http://farm3.static.flickr.com/2402/2401271707_284f3d5bc6.jpg" width="500" height="311" alt="" /></p>
<p><code>defaults write com.apple.finder AppleShowAllFiles TRUE</code><br />
<code>killall Finder</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.twipout.com/2008/04/09/show-all-files-in-finder/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Javascript Debugger for Safari</title>
		<link>http://blog.twipout.com/2008/04/09/javascript-debugger-for-safari/</link>
		<comments>http://blog.twipout.com/2008/04/09/javascript-debugger-for-safari/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 21:40:09 +0000</pubDate>
		<dc:creator>Freddie</dc:creator>
		
		<category><![CDATA[tech]]></category>

		<category><![CDATA[apple]]></category>

		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://blog.twipout.com/?p=10</guid>
		<description><![CDATA[Really for &#8220;webkit&#8217; but it&#8217;s called Dosera.  Here&#8217;s how to run it&#8230;.  Run the following in the command line:
defaults write com.apple.Safari IncludeDebugMenu 1
defaults write com.apple.Safari WebKitScriptDebuggerEnabled -bool true
Restart Safari Download a nightly build of webkit and run Dosera:
http://trac.webkit.org/projects/webkit/wiki/Nightly%20Builds
It should attach to Safari no problemo.. .You&#8217;ll see the scripts available from which to debug.. [...]]]></description>
			<content:encoded><![CDATA[<p>Really for &#8220;webkit&#8217; but it&#8217;s called Dosera.  Here&#8217;s how to run it&#8230;.  Run the following in the command line:</p>
<p><code>defaults write com.apple.Safari IncludeDebugMenu 1</code></p>
<p><code>defaults write com.apple.Safari WebKitScriptDebuggerEnabled -bool true</code></p>
<p>Restart <span class="nfakPe">Safari</span> Download a nightly build of webkit and run Dosera:</p>
<p><a href="http://trac.webkit.org/projects/webkit/wiki/Nightly%20Builds" target="_blank">http://trac.webkit.org/projects/webkit/wiki/Nightly%20Builds</a></p>
<p>It should attach to <span class="nfakPe">Safari</span> no problemo.. .You&#8217;ll see the scripts available from which to <span class="nfakPe">debug</span>.. It SUCKS in comparison to VS.NET and Firebug.. but it is something at least.  There is also a console that you execute arbitrary javascript in the current context&#8230;  Seems to be the only way to interrogate an object at the moment is to put something like this in the console:  for (var variable in myvariableInContext) alert(variable);</p>
<p>See this for more information:</p>
<p><a href="http://developer.apple.com/internet/safari/faq.html" target="_blank">http://developer.apple.com/internet/safari/faq.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.twipout.com/2008/04/09/javascript-debugger-for-safari/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MySQL on Leopard</title>
		<link>http://blog.twipout.com/2008/04/03/mysql-on-leopard/</link>
		<comments>http://blog.twipout.com/2008/04/03/mysql-on-leopard/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 16:16:08 +0000</pubDate>
		<dc:creator>Freddie</dc:creator>
		
		<category><![CDATA[tech]]></category>

		<category><![CDATA[leopard]]></category>

		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://blog.twipout.com/?p=6</guid>
		<description><![CDATA[Now that there is a dmg for Leopard, you shouldn&#8217;t have to download and compile the source for MySQL anymore:
http://dev.mysql.com/downloads/mysql/5.0.html#macosx-dmg
if you intend to use it with Python at all do not install the 64 bit version unless you have the 64 bit version of Python.  The default install of Python is 32 bit on [...]]]></description>
			<content:encoded><![CDATA[<p>Now that there is a dmg for Leopard, you shouldn&#8217;t have to download and compile the source for MySQL anymore:</p>
<p><a title="http://dev.mysql.com/downloads/mysql/5.0.html#macosx-dmg" href="http://dev.mysql.com/downloads/mysql/5.0.html#macosx-dmg" target="_blank">http://dev.mysql.com/downloads/mysql/5.0.html#macosx-dmg</a></p>
<p>if you intend to use it with Python at all do not install the 64 bit version unless you have the 64 bit version of Python.  The default install of Python is 32 bit on Leopard.  Doing so will make it impossible to use the MySQLdb Python bindings.</p>
<p>Even though we have a nice installer now, there are some slight problems with it.  For starters, I don&#8217;t like having to start the server manually every time I boot up.  There is a System Preferences add-in that adds a start up item but it is broken in the current version of the installer:</p>
<p><a href="http://bugs.mysql.com/bug.php?id=25008" target="_blank">http://bugs.mysql.com/bug.php?id=2500</a></p>
<p>There is a fix out, you just have to install it yourself:</p>
<p><a href="ftp://ftp.mysql.com/pub/mysql/download/gui-tools/MySQL.prefPane-leopardfix.zip">ftp://ftp.mysql.com/pub/mysql/download/gui-tools/MySQL.prefPane-leopardfix.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.twipout.com/2008/04/03/mysql-on-leopard/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Love This Car.. But</title>
		<link>http://blog.twipout.com/2008/04/02/love-this-car-but/</link>
		<comments>http://blog.twipout.com/2008/04/02/love-this-car-but/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 18:43:13 +0000</pubDate>
		<dc:creator>Freddie</dc:creator>
		
		<category><![CDATA[funny]]></category>

		<category><![CDATA[tech]]></category>

		<category><![CDATA[cars]]></category>

		<guid isPermaLink="false">http://blog.twipout.com/?p=5</guid>
		<description><![CDATA[This has got to be one of the finest pieces of machinery ever built&#8230; but can you get like a hot lady or something to present it?  I mean can this guy talk WITHOUT his hands?

]]></description>
			<content:encoded><![CDATA[<p>This has got to be one of the finest pieces of machinery ever built&#8230; but can you get like a hot lady or something to present it?  I mean can this guy talk WITHOUT his hands?<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/c0-zFiee4rE&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/c0-zFiee4rE&amp;hl=en" wmode="transparent"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.twipout.com/2008/04/02/love-this-car-but/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Amazon Music Player Now Flash Based</title>
		<link>http://blog.twipout.com/2008/03/31/amazon-music-player-now-flash-based/</link>
		<comments>http://blog.twipout.com/2008/03/31/amazon-music-player-now-flash-based/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 18:09:24 +0000</pubDate>
		<dc:creator>Freddie</dc:creator>
		
		<category><![CDATA[tech]]></category>

		<category><![CDATA[amazon]]></category>

		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://blog.twipout.com/?p=4</guid>
		<description><![CDATA[Finally amazon ditched real player and windows media for a flash based player&#8230; kudos amazon:
http://www.amazon.com/Keep-Simple-Van-Morrison/dp/B0012QGP00/ref=pd_bxgy_m_img_b
]]></description>
			<content:encoded><![CDATA[<p>Finally amazon ditched real player and windows media for a flash based player&#8230; kudos amazon:</p>
<p><a href="http://www.amazon.com/Keep-Simple-Van-Morrison/dp/B0012QGP00/ref=pd_bxgy_m_img_b">http://www.amazon.com/Keep-Simple-Van-Morrison/dp/B0012QGP00/ref=pd_bxgy_m_img_b</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.twipout.com/2008/03/31/amazon-music-player-now-flash-based/feed/</wfw:commentRss>
		</item>
		<item>
		<title>G.I. Joe Movie OMG</title>
		<link>http://blog.twipout.com/2008/03/28/gi-joe-movie-omg/</link>
		<comments>http://blog.twipout.com/2008/03/28/gi-joe-movie-omg/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 17:08:03 +0000</pubDate>
		<dc:creator>Freddie</dc:creator>
		
		<category><![CDATA[funny]]></category>

		<category><![CDATA[gi joe]]></category>

		<category><![CDATA[snake eyes]]></category>

		<guid isPermaLink="false">http://blog.twipout.com/?p=3</guid>
		<description><![CDATA[This is not the real thing obviously but holy crap &#8230;. Olivia I want you!


For real though&#8230; you might want to check these pictures of Ray Parks out:


]]></description>
			<content:encoded><![CDATA[<p>This is not the real thing obviously but holy crap &#8230;. Olivia I want you!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="402" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="id" value="VideoPlayer" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.g4tv.com/lv3/18905" /><embed id="VideoPlayer" type="application/x-shockwave-flash" width="480" height="402" src="http://www.g4tv.com/lv3/18905" allowfullscreen="true" allowscriptaccess="always"></embed></object><br />
<br/><br />
For real though&#8230; you might want to check these pictures of Ray Parks out:</p>
<p><img src="http://www.moviesonline.ca/movie-gallery/albums/GI_Joe/joex-large.jpg"><br/><br />
<img src="http://www.moviesonline.ca/movie-gallery/albums/GI_Joe/hr_Movie_Stills_2.jpg"></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.twipout.com/2008/03/28/gi-joe-movie-omg/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
