<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>riskinit.com &#187; General</title>
	<atom:link href="http://riskinit.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://riskinit.com</link>
	<description>technology, computers, telephony, geek stuff...</description>
	<lastBuildDate>Fri, 30 Jul 2010 18:45:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Safari 5.0/5.01 has terrible keyboard scrolling</title>
		<link>http://riskinit.com/2010/07/28/safari-5-05-01-has-terrible-keyboard-scrolling/</link>
		<comments>http://riskinit.com/2010/07/28/safari-5-05-01-has-terrible-keyboard-scrolling/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 18:54:29 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=683</guid>
		<description><![CDATA[Safari I mean that pretty much sums it up. I was really hoping 5.01 would fix it, but apparently, no such luck. Basically, if you have your keyboard repeat rate set to anything other than dog slow, Safari starts animating the scroll, then in the middle of starting to animate it sees the next keyboard [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fr" style="width:300px"><a href="http://www.apple.com/safari/"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/compass-300x300.png" alt="Safari" style="border:none"/></a><br/>Safari</div>
<p>I mean that pretty much sums it up. I was really hoping 5.01 would fix it, but apparently, no such luck. Basically, if you have your keyboard repeat rate set to anything other than dog slow, Safari starts animating the scroll, then in the middle of starting to animate it sees the next keyboard input and interrupts the first scroll and just gets terrible. Using the mouse is super silky smooth, the arrow controls work albeit a little chunky, but, I suspect it&#8217;s merely because the repeat rate is slower.</p>
<p>I&#8217;m sure a method is getting reentered and somewhere an if statement is missing or broken&#8230; e.g. </p>
<p><code>if (animating = YES) DON'T INTERRUPT ANIMATION!;</code></p>
<p>In the video I first use the keyboard arrows, then the pageup/pagedown, then the mouse controls and finally some more keyboard. </p>
<p><a href='http://riskinit.com/wp-content/Safari_5_Terrible_Keyboard_Scrolling.mov'>Safari 5.0/5.01 Terrible Keyboard Scrolling Video Click HERE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2010/07/28/safari-5-05-01-has-terrible-keyboard-scrolling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://riskinit.com/wp-content/Safari_5_Terrible_Keyboard_Scrolling.mov" length="8355768" type="video/quicktime" />
		</item>
		<item>
		<title>Intermediate Linux 201 &#8211; CENTOS5</title>
		<link>http://riskinit.com/2009/09/28/intermediate-linux-201-centos5/</link>
		<comments>http://riskinit.com/2009/09/28/intermediate-linux-201-centos5/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 20:33:38 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=422</guid>
		<description><![CDATA[So I&#8217;m a pretty technical guy and sometimes I know what I want to do, but I have no idea how to do it with the latest version of whatever operating system I&#8217;m using. Typically these days thats usually a Linux flavor of some sort. I use it for my web-server, my file server and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://riskinit.com/wp-content/iptraf-300x191.png" alt="iptraf" title="iptraf" width="300" height="191" class="alignright_noborder " /><br />
So I&#8217;m a pretty technical guy and sometimes I know what I want to do, but I have no idea how to do it with the latest version of whatever operating system I&#8217;m using. Typically these days thats usually a Linux flavor of some sort. I use it for my web-server, my file server and a few other things, but typically I set it up leave it and don&#8217;t touch it for a year or so. So instead of having to troll through man pages every time I want to do something, I started to keep a list of not-frequently used commands that I always seem to forget. So this is sort of an anti-FAQ for Linux. I mean if they were frequent, i wouldn&#8217;t forget! </p>
<p><strong>Scan for viruses manually with clamscan</strong> &#8211; Most of this is excluding the test directories and system devices.</p>
<blockquote><p>clamscan -ir &#8211;exclude=/sys/ &#8211;exclude=/usr/share/doc/clamav-0.95.1/test/ /
</p></blockquote>
<p><strong>Firewall aka. IPTables<br />
</strong>Block IP address &#8211; * for a range</p>
<blockquote><p><code>iptables -I INPUT -s 192.168.0.* -j DROP</code></p></blockquote>
<p>List IP&#8217;s instead of RDNS</p>
<blockquote><p>iptables &#8211;list -n
</p></blockquote>
<p>Delete the 3rd rule</p>
<blockquote><p>iptables -D INPUT 3
</p></blockquote>
<p><strong>Remove file with crazy name</strong> &#8211; Ever mange to munge a filename so bad rm won&#8217;t remove it?</p>
<blockquote><p>ls -il<br />
find . -inum 124043383 -exec rm -i {} \;</p></blockquote>
<p><strong>Hard disk tweaking</strong> &#8211; not sure how much this helps but it helped me. </p>
<blockquote><p>cd /sys/block/sda/queue/iosched/<br />
echo 1000 > write_expire<br />
echo 0 > slice_idle<br />
hdparm -Tt /dev/sda</p></blockquote>
<p><strong>SMART Hard Disk Check</strong>- run smart report if you have a Highpoint controller that supports it. Remember to <strong>run a periodic short/long test</strong>. I&#8217;ve found the basic report is often inadequate. </p>
<blockquote><p>smartctl -a -d hpt,1/1 /dev/sda
</p></blockquote>
<p><strong>Yum locate dependency-</strong> some package failing because it needs some dependency? This was a real lifesaver. </p>
<blockquote><p>yum whatprovides yourlibraryhere
</p></blockquote>
<p>Did something before but forgot? <strong>grep the .bash_history file</strong>, it seems to keep everything from the beginning of time.</p>
<p><strong>iptraf traffic statistics</strong>- need to know traffic flow on your machine right now? Yeah you could do some sort of netstat command but I can never figure it out on the local platform (its &#8220;netstat -I en0 -w 1&#8243; on OS X).<br />
This app will give you all sorts of useful live statstics on your ethernet connections.</p>
<p>Next time &#8211; SELinux &#8211; all you need to know to setup your apache/php/centos webserver. </p>
<p><strong>P.S. Any useful commands you use that you think might be helpful? Leave a comment :)</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2009/09/28/intermediate-linux-201-centos5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Busy, Delicious, iPhone, Misc&#8230;</title>
		<link>http://riskinit.com/2009/09/16/busy-delicious-iphone-misc/</link>
		<comments>http://riskinit.com/2009/09/16/busy-delicious-iphone-misc/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 18:40:25 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=485</guid>
		<description><![CDATA[So I&#8217;ve been busy updating my programming skills by learning and creating an app for the iPhone. So I&#8217;ve not had a lot of time to actually post anything for awhile. But, I have started using del.icio.us as a way to post some interesting links that I don&#8217;t have the time to write about or [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been busy updating my programming skills by learning and creating an app for the iPhone. So I&#8217;ve not had a lot of time to actually post anything for awhile. But, I have started using del.icio.us as a way to post some interesting links that I don&#8217;t have the time to write about or post here&#8230;I was thinking of using the &#8216;press this&#8217;  thing here, but, that&#8217;s just going to create a bunch of posts and I&#8217;d prefer to keep some sort of quality standards.</p>
<p>So for fun random links I find interesting&#8230;</p>
<p><a href="http://delicious.com/jriskin">http://delicious.com/jriskin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2009/09/16/busy-delicious-iphone-misc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TinEye</title>
		<link>http://riskinit.com/2009/06/03/tineye/</link>
		<comments>http://riskinit.com/2009/06/03/tineye/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 01:00:19 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Photograpy]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=469</guid>
		<description><![CDATA[I almost didn&#8217;t want to share this site with others because it&#8217;s so great! I&#8217;ve been using it since the early beta and it went public sometime earlier this year. Tineye is a &#8216;reverse&#8217; image search. So you feed it an image and then it finds that image on other sites. But, its even better, [...]]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_471" class="wp-caption aligncenter" style="width: 423px"><a href="http://tineye.com"><img src="http://riskinit.com/wp-content/tineye_logo_big.png" alt="Tineye.com" title="tineye_logo_big" width="413" height="64" class="aligncenter" /></a><p class="wp-caption-text">Tineye.com</p></div>I almost didn&#8217;t want to share this site with others because it&#8217;s so great! I&#8217;ve been using it since the early beta and it went public sometime earlier this year. Tineye is a &#8216;reverse&#8217; image search. So you feed it an image and then it finds that image on other sites. But, its even better, it will still work if the image is cropped, sized etc&#8230; I&#8217;ll let them describe it&#8230;</p>
<blockquote><p>TinEye is a reverse image search engine. You can submit an image to TinEye to find out where it came from, how it is being used, if modified versions of the image exist, or to find higher resolution versions. TinEye is the first image search engine on the web to use image identification technology rather than keywords, metadata or watermarks.</p></blockquote>
<p>They have indexed over 1billion images and I&#8217;m sure that number is going to grow rapidly. </p>
<p>Example: Here is an image of <a href="http://tineye.com/search/29a75d7331ae38b53aec2fd86930c547fdb0ef35">britney and all the other possible sources.</a> </p>
<p><strong>Uses:<br />
</strong><br />
<strong>Identification:</strong>  Can&#8217;t figure out who someone is? Often with a few links to other areas, their name will be mentioned, or in the file name, or in the other images.<br />
<strong>Validation:</strong> Is someone seem too good to be true on that dating site? Suspec that myspace profile is fake?<br />
<strong>Copyright:</strong> Is someone using your image?<br />
<strong>Quality:</strong> Need a larger source image for your wallpaper, print project, or artwork? Maybe you just want to see a larger/cleaner image from some blog post that has been reblogged so many times all you can see is the thumbnail.</p>
<p>Go check it out, it&#8217;s one of my favorite new sites of 2009.</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2009/06/03/tineye/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cell Phone Macro Focus &#8211; The Feature no one knows they want</title>
		<link>http://riskinit.com/2009/05/06/cell-phone-macro-focus-the-feature-no-one-knows-they-want/</link>
		<comments>http://riskinit.com/2009/05/06/cell-phone-macro-focus-the-feature-no-one-knows-they-want/#comments</comments>
		<pubDate>Wed, 06 May 2009 18:49:57 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Cell Phones]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Photograpy]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=378</guid>
		<description><![CDATA[Over the years I&#8217;ve considered developing quite a few fun and interesting cell phone applications. Unfortunately, after developing some software to test and trying a dozen different cell phones some inherent physical limitations proved too large to overcome. Most cell phones while having adequate resolution, are fixed focus lenses that can only focus about 2 [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_379" class="wp-caption alignleft" style="width: 310px"><a href="http://www.flickr.com/photos/28727333@N05/2804430654/"><img src="http://riskinit.com/wp-content/2804430654_0a2af3678c-300x201.jpg" alt="MP3 Player? With hacked macro lens. " title="2804430654_0a2af3678c" width="300" height="201" class="size-medium wp-image-379" /></a><p class="wp-caption-text">MP3 Player? With hacked macro lens. </p></div>
<p>Over the years I&#8217;ve considered developing quite a few fun and interesting cell phone applications. Unfortunately, after developing some software to test and trying a dozen different cell phones some inherent physical limitations proved too large to overcome. </p>
<p>Most cell phones while having adequate resolution, are fixed focus lenses that can only focus about 2 feet away and farther. Much closer than that and the images become a fuzzy mess! </p>
<p>This totally destroys any hopes of some of the cool applications that can be made by barcode scanning products (e.g. price checks, order online) and scanning text (e.g business cards, subscription cards). </p>
<p>Imagine you walk in to a store in the mall and see something you like, but you&#8217;re not sure about the price. You scan it, and you phone opens google maps with all the nearby locations that have that product and the prices they charge. Things like this would be possible with the addition of a tiny bit of extra optical help&#8230;</p>
<p>Someday&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2009/05/06/cell-phone-macro-focus-the-feature-no-one-knows-they-want/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Card Printing</title>
		<link>http://riskinit.com/2009/04/23/card-printing/</link>
		<comments>http://riskinit.com/2009/04/23/card-printing/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 02:24:21 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Hack]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=260</guid>
		<description><![CDATA[So full reinstall on the server, there were some broken things and wordpress got hacked (yet again) but I think we have it secure for the moment. Meanwhile I made some new business cards and wanted to share. My friend Jonah had mentioned to me he used Gotprint.comto make some business cards and the quality [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://riskinit.com/2009/04/23/card-printing/4up_full1/" rel="attachment wp-att-296"><img src="http://riskinit.com/wp-content/4up_full1-132x300.jpg" alt="4up_full1" title="4up_full1" width="132" height="300" class="image_fr"  /></a></p>
<p><a href="http://riskinit.com/2009/04/23/card-printing/4up_med/" rel="attachment wp-att-289"><img src="http://riskinit.com/wp-content/4up_med-137x300.jpg" alt="4up_med" title="4up_med" width="137" height="300"  class="image_fr" style="width: 300px; float: right;" /></a></p>
<div id="attachment_288" class="wp-caption alignleft" style="width: 310px"><a href="http://riskinit.com/2009/04/23/card-printing/4up_zoom/" rel="attachment wp-att-288"><img src="http://riskinit.com/wp-content/4up_zoom-300x169.jpg" alt="Zoomed in you can see the half tone patterns." title="4up_zoom" width="300" height="169" class="size-medium wp-image-288"  /></a><p class="wp-caption-text">Zoomed in you can see the half tone patterns.</p></div>
<p>So full reinstall on the server, there were some broken things and wordpress got hacked (yet again) but I think we have it secure for the moment. Meanwhile I made some new business cards and wanted to share.</p>
<p>My friend <a href="http://jonahweiland.com/">Jonah</a> had mentioned to me he used <a href="http://gotprint.com">Gotprint.com</a>to make some business cards and the quality was pretty decent. Having seen &#8216;digital&#8217; printing in the past (I have a DTP background) I was a little skeptical, but realized it has been 6-7 years since I&#8217;ve tried anything and it has to be better right? </p>
<p>The answer is <strong>YES!</strong></p>
<p>The <a href="http://gotprint.com">Gotprint.com</a> cards I had made for a paltry $20 are pretty decent! If I were to review them overall they would get the following grades:</p>
<blockquote><p>A • Convenience<br />
A • Price<br />
A • Cardstock quality<br />
B • Printing quality<br />
B • Diecut quality<br />
B • Speed (unless you pay extra)
</p></blockquote>
<p>Here are some samples from past cards I&#8217;ve made. Including some expensive high quality offset cards from around 2000, some medium quality offset (same year), an inkjet print from home and the <a href="http://gotprint.com">Gotprint.com</a> cards.</p>
<p>The high quality offset wins hands down, but they are expensive and take a lot more effort to find the right printer. The regular offset are still a hair better than the digital print in line quality but in absolute resolution the digitals are slightly better. So halftones will be smoother but the white lines are a little less solid. The inkjet has a great continuous tone look, but it sacrifices resolution as the same bleed that allows the smooth tones blurs out the sharp edges. I included it merely for comparison the paper quality can&#8217;t compare to real cards and cutting them also is an issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2009/04/23/card-printing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacOS 10.5.6 Update &#8211; Proceed with caution!</title>
		<link>http://riskinit.com/2008/12/17/macos-1056-update-proceed-with-caution/</link>
		<comments>http://riskinit.com/2008/12/17/macos-1056-update-proceed-with-caution/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 21:43:01 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Macintosh]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=137</guid>
		<description><![CDATA[10.4-10.5.6 Updates Graph You might want to hold off on the unless you&#8217;re already experiencing problems like some new MBP users are. My latest not-so-scientific numbers show its a risky bet. Check out my older post on the topic&#8230; The graph is basically the number of positive to negative comments made on MacRumors.com. 10.5.6 Update]]></description>
			<content:encoded><![CDATA[<div class="image_fl"style="width:410px"><a href="/imagej.php?p=137&#038;image=images/misc/images/macosx_updates_10_5_6.png"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/macosx_updates_10_5_6.png" alt="10.4-10.5.6 Updates Graph"  /></a><br/>10.4-10.5.6 Updates Graph</div>
<p>You might want to hold off on the unless you&#8217;re <a href="http://www.macrumors.com/2008/12/15/apple-releases-mac-os-x-10-5-6/"> already experiencing problems</a> like <a href="http://www.macrumors.com/2008/11/05/software-fix-for-macbook-pro-trackpad-issue-coming-soon/">some new MBP users</a> are. My latest not-so-scientific numbers show its a risky bet.</p>
<p>Check out my <a href="http://riskinit.com/2008/09/18/mac-os-x-updates-graph/">older post on the topic</a>&#8230;</p>
<p>The graph is basically the number of positive to negative comments made on <a href="http://www.macrumors.com/">MacRumors.com</a>.</p>
<div class="image_fr"style="width:220px"><a href="http://support.apple.com/downloads/Mac_OS_X_10_5_6_Update"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/macos.png" alt="10.5.6 Update"  /></a><br/>10.5.6 Update</div>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2008/12/17/macos-1056-update-proceed-with-caution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mazda Key Disassembly</title>
		<link>http://riskinit.com/2008/10/06/mazda-key-disassembly/</link>
		<comments>http://riskinit.com/2008/10/06/mazda-key-disassembly/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 07:26:14 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hack]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=122</guid>
		<description><![CDATA[Mazda Key The Volkswagen Key Disassembly continues to be one of the more trafficked pages on my site so I figured I would commit one more selfless act of community service and bring you the all-new Mazda Key Disassembly page. This particular key is from a 2006 MX-5 (aka. 3rd Gen. Miata, or Miata NC), [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fl"style="width:245px"><a href="/mazda-key-disassembly/"><img src="http://riskinit.com/wp-content/themes/mytheme/images/galleries/mazda-key-disassembly/thumb/_IGP8204.jpg" alt="Mazda Key"/></a><br/>Mazda Key</div>
<p>The <a href="http://riskinit.com/2005/08/04/volkswagen-key-disassembly/">Volkswagen Key  Disassembly</a> continues to be one of the more trafficked pages on my site so I figured I would commit one more selfless act of community service and bring you the all-new <a href="http://riskinit.com/gallery_template.php?folder=galleries/mazdakeydisassembly&#038;page=index.html">Mazda Key Disassembly page</a>. This particular key is from a 2006 MX-5 (aka. 3rd Gen. Miata, or Miata NC), bit will probably work just the same as many similar keys. I&#8217;m not even sure if what Mazda might charge for this, but I&#8217;m sure its more than the $1-2 cost to replace the battery and 5 minutes of your time. It could also be useful to replace the keychain link or clean the contacts.</p>
<p><a href="http://riskinit.com/mazda-key-disassembly/">Enjoy&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2008/10/06/mazda-key-disassembly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTPC Gone Wild</title>
		<link>http://riskinit.com/2008/09/03/htpc-gone-wild/</link>
		<comments>http://riskinit.com/2008/09/03/htpc-gone-wild/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 06:59:14 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://riskinit.com/2008/09/03/htpc-gone-wild/</guid>
		<description><![CDATA[HTPC Setup So I thought it might be a bright idea to illustrate what has to be one of the more over complicated HTPC (Home Theatre PC aka. PVR, Tivo thing, etc&#8230;) setups ever, mine&#8230; Ok, probably not, I&#8217;m sure plenty of people have crazier setups. But, it does surprise me how reliable it has [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fl"style="width:430px"><a href="/imagej.php?p=60&#038;image=images/misc/images/htpcsetup.png"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/htpcsetup.png" alt="HTPC Setup"  /></a><br/>HTPC Setup</div>
<p>So I thought it might be a bright idea to illustrate what has to be one of the more over complicated <a href="http://en.wikipedia.org/wiki/Home_theatre_PC">HTPC</a> (Home Theatre PC aka. PVR, Tivo thing, etc&#8230;) setups ever, mine&#8230; Ok, probably not, I&#8217;m sure plenty of people have crazier setups. But, it does surprise me how reliable it has been, even with so many computers involved. So how does it work? Magic! Ok, maybe not but something like this&#8230;</p>
<p><a href="http://sagetv.com">SageTV</a> controls most of it. But, after trying numerous 1394 (a.k.a. <a href="http://en.wikipedia.org/wiki/FireWire">FireWire</a>) cards I never managed to get Windows XP, the Scientific-Atlanta SA-3250HD STB, and Charter Cable&#8217;s crappy signal to get along. Magically (Apple did create the standard for 1394) it just works without anything special on a Mac. So, FireWire is plugged in to the Mac, Sage TV controls it, all HD and digital channels go through the Mac and get recorded to the main media server/raid as raw <a href="http://en.wikipedia.org/wiki/MPEG_transport_stream">MPEG-2 TS</a> (transport streams). SD signals get recorded directly to the RAID through a Hauppauge PVR150 in the Windows box. All channels SD and HD are controlled through the 1394 (no infrared blaster silliness).</p>
<p>The great thing about this set is you get pure digital recording and playback all the way to the display. Digital cable -> Firewire digital files -> HDMI TV.  The only other systems that work like this are DirectTV TiVo, some dedicated cable/sat. company PVR&#8217;s and <a>Cable Card</a> based systems.  Unfortunately, after many years of unencrypted goodness, earlier this year Charter turned on <a href="http://en.wikipedia.org/wiki/Digital_Transmission_Content_Protection">5C</a> encryption on all HD pay channels. Note 5C is the digital encryption for the HDMI not the encryption that protects which channels you get which I believe is <a href="http://en.wikipedia.org/wiki/DigiCipher_2">DigiCipher 2</a>.</p>
<p>So what does the future hold? <a href="http://www.verizon.com/fiostv">FIOS TV</a> and the <a href="http://www.hauppauge.com/site/products/data_hdpvr.html">Hauppauge HD PVR Model 1212</a> likely. Unfortunately, this may mean losing pure digital recording/playback. But, I would regain recording of all HD channels.</p>
<p>The future is more likely the Internet and <a href="http://en.wikipedia.org/wiki/BitTorrent">Bit Torrent</a>. It&#8217;s really too bad for the studios that downloading bit torrent TV shows are often higher quality, more convenient and let you build collections as compared to the &#8216;legitimate&#8217; offerings (Hulu, NBC online etc&#8230; and even recording SD/HD TV from cable/sat). But, this is a rant for another time&#8230;</p>
<p><strong>Update</strong>: For completeness I added my parents Mac Mini to the full diagram (click the image), it runs Front Row Apple&#8217;s not so good PVR software, its slow over the Internet, but I believe that might be something about Samba. She can watch movies via the remote mount to my RAID and I put aliases in her Movies folder in her home directory. </p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2008/09/03/htpc-gone-wild/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fun with security tags</title>
		<link>http://riskinit.com/2008/07/28/fun-with-security-tags/</link>
		<comments>http://riskinit.com/2008/07/28/fun-with-security-tags/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 06:13:28 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Hack]]></category>

		<guid isPermaLink="false">http://riskinit.com/2008/07/28/fun-with-security-tags/</guid>
		<description><![CDATA[Tag Warning! Connected Disconnected So have you ever purchased something or received a gift with security tag still attached? Quite annoying&#8230; well most of the tags were designed in the days where before rare earth neodymium magnets became so popular. They normally use powerful electro-magnets to disconnect these sorts of tags. Internally they are simply [...]]]></description>
			<content:encoded><![CDATA[<p><center><br />
<table>
<tr>
<td>
<div class="image_fl"style="width:330px"><a href="/imagej.php?p=57&#038;image=images/misc/images//_IGP9539.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs//_IGP9539.jpg" alt="Tag"  /></a><br/>Tag</div>
</td>
<td>
<div class="image_fr"style="width:330px"><a href="/imagej.php?p=57&#038;image=images/misc/images//_IGP9540.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs//_IGP9540.jpg" alt="Warning!"  /></a><br/>Warning!</div>
</td>
</tr>
<tr>
<td>
<div class="image_fl"style="width:330px"><a href="/imagej.php?p=57&#038;image=images/misc/images//_IGP9541.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs//_IGP9541.jpg" alt="Connected"  /></a><br/>Connected</div>
</td>
<td>
<div class="image_fr"style="width:330px"><a href="/imagej.php?p=57&#038;image=images/misc/images//_IGP9542.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs//_IGP9542.jpg" alt="Disconnected"  /></a><br/>Disconnected</div>
</td>
</tr>
</table>
<p></center>So have you ever purchased something or received a gift with security tag still attached? Quite annoying&#8230; well most of the tags were designed in the days where before rare earth neodymium magnets became so popular. They normally use powerful electro-magnets to disconnect these sorts of tags. Internally they are simply a spring loaded clamp that dis-engages with a strong magnetic force. If you don&#8217;t disconnect the clamp it will pull a metal pin that when pulled out breaks the two different glass die packs designed to stain whatever you disconnect.</p>
<p>So it took not 1, not 2, not 3, but 4 or more of these strong magnets before it came apart easily. Anyway, much easier and safer than trying to Dremel it apart and much more immediate gratification than having to wait for the store to open, driving back and having them remove it.</p>
<p>Oh and be good, this is not for you bad guys out there! </p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2008/07/28/fun-with-security-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screensharing Silliness</title>
		<link>http://riskinit.com/2008/07/18/screensharing-silliness/</link>
		<comments>http://riskinit.com/2008/07/18/screensharing-silliness/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 04:01:30 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://riskinit.com/2008/07/18/screensharing-silliness/</guid>
		<description><![CDATA[Loopy Screensharing So if you ever wondered what happens if you screenshare in a loop, here is a nice fun picture =)]]></description>
			<content:encoded><![CDATA[<div class="image_fl"style="width:350px"><a href="/imagej.php?p=55&#038;image=images/misc/images/screensharing.png"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/screensharing.png" alt="Loopy Screensharing"  /></a><br/>Loopy Screensharing</div>
<p>So if you ever wondered what happens if you screenshare in a loop, here is a nice fun picture =)</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2008/07/18/screensharing-silliness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To widescreen or not to widescreen&#8230;</title>
		<link>http://riskinit.com/2008/07/13/to-widescreen-or-not-to-widescreen/</link>
		<comments>http://riskinit.com/2008/07/13/to-widescreen-or-not-to-widescreen/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 18:27:20 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://riskinit.com/2008/07/13/to-widescreen-or-not-to-widescreen/</guid>
		<description><![CDATA[Aspect Ratios People will argue until the end of time whether or not widescreen is better than traditional 4:3 monitors. Personally, I believe most webpages and most documents are much taller vertically than they are wide. So you want the most vertical space possible. I&#8217;ve heard the argument that with widescreen you can have two [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fr"style="width:350px"><a href="http://en.wikipedia.org/wiki/Display_resolution"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/aspect_ratio.png" alt="Aspect Ratios"  /></a><br/>Aspect Ratios</div>
<p>People will argue until the end of time whether or not widescreen is better than traditional 4:3 monitors. Personally, I believe most webpages and most documents are much taller vertically than they are wide. So you want the most vertical space possible. I&#8217;ve heard the argument that with widescreen you can have two vertical documents simultaneously. But, nothing prevents you from having to vertical documents with even more vertical space on non-widescreen monitor. 1600 wide is really no different than 1680 wide when viewing two documents at once.</p>
<p>So at the end of the day, what really matters is how many pixels get on screen and for any user who&#8217;s been around since the days of CRTs, for the most part widescreen has been a big downgrade not an upgrade. If you are buying a monitor for the first time in today&#8217;s market I can see how widescreen would not seem like a downgrade. But since most CRT users came from using either 1280&#215;1024 or 1600&#215;1200 the equivalent widescreen models have been downgrades.</p>
<table border=1>
<tr>
<td VALIGN="top">
<table border=0>
<tr>
<td colspan="2">
Historical Upgrade path:<br />
Resolution	Pixels</p>
<hr /></td>
</tr>
<tr>
<td>640&#215;480	</td>
<td>307200</td>
</tr>
<tr>
<td>800&#215;600	</td>
<td>480000</td>
</tr>
<tr>
<td>1024&#215;768</td>
<td>786432</td>
</tr>
<tr>
<td>1280&#215;1024</td>
<td>1310720</td>
</tr>
<tr>
<td>1600&#215;1200</td>
<td>1920000</td>
</tr>
</table>
</td>
<td VALIGN="top">
<table border=0>
<tr>
<td colspan="2">
Widescreen upgrade path:<br />
Resolution	Pixels</p>
<hr />
</td>
</tr>
<tr>
<td>1280&#215;800	</td>
<td>1024000</td>
</tr>
<tr>
<td>1440&#215;900	</td>
<td>1296000</td>
</tr>
<tr>
<td>1400&#215;1050</td>
<td>1470000</td>
</tr>
<tr>
<td>1680&#215;1050</td>
<td>1764000</td>
</tr>
</table>
</td>
</tr>
</table>
<p>I would argue that most users who had CRTs at 1280&#215;1024 looking to upgrade to a LCD would have preferred 1600&#215;1200 rather than 1680&#215;1050. Unfortunately, widescreen monitors were much cheaper in comparison. Only recently in the last couple years have 1980&#215;1200 become available at consumer prices. So I would argue that for the most part widescreen monitors have been downgrades rather than upgrades for anyone who has had a high-resolution CRT.</p>
<p>More recently 1920&#215;1200 models have come out and they are still pretty pricey, some examples of very high rez monitors&#8230;</p>
<table border=0>
<tr>
<td colspan="2">
Todays higher resolutions:<br />
Resolution	Pixels</p>
<hr /></td>
</tr>
<tr>
<td>1920&#215;1200</td>
<td>	2304000</td>
</tr>
<tr>
<td>2560&#215;1600</td>
<td>	4096000</td>
</tr>
</table>
<p>For me, when it comes down to it, maximum pixels on the screen means more to me than anything else. So 1.92MP is better than 1.76MP any day of the week, so i&#8217;ll be sticking with 1600&#215;1200 until I decide to upgrade to a 1920&#215;1200 model.</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2008/07/13/to-widescreen-or-not-to-widescreen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RX-7 FD Battery Update</title>
		<link>http://riskinit.com/2008/07/08/rx-7-fd-battery-update/</link>
		<comments>http://riskinit.com/2008/07/08/rx-7-fd-battery-update/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 21:03:30 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Battery]]></category>
		<category><![CDATA[Cars]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://riskinit.com/2008/07/08/rx-7-fd-battery-update/</guid>
		<description><![CDATA[Deka EXT18L Gratuitous RX-7 pic I took So i&#8217;ve thought about putting in a light weight battery for awhile now and earlier this year my old battery finally gave up the ghost, so I decided to try a light weight sealed AGM racing battery. I was a bit worried about whether or not he would [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fl"style="width:350px"><a href="/imagej.php?p=53&#038;image=images/misc/images/deka_ext18l.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/deka_ext18l.jpg" alt="Deka EXT18L"  /></a><br/>Deka EXT18L</div>
<div class="image_fr"style="width:350px"><a href="/imagej.php?p=53&#038;image=images/misc/images/rx7_214.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/rx7_214.jpg" alt=" Gratuitous RX-7 pic I took"  /></a><br/> Gratuitous RX-7 pic I took</div>
<p>So i&#8217;ve thought about putting in a light weight battery for awhile now and earlier this year my old battery finally gave up the ghost, so I decided to try a light weight sealed AGM racing battery.  I was a bit worried about whether or not he would become problematic, so I went not with the smallest possible battery but with something just ever so slightly larger. I&#8217;ve heard of people often using the <a href="http://www.eastpenn-deka.com/default.aspx?pageid=510">Deka EXT14</a> (I&#8217;ve read these are the exact battery the more pricy racing brand Braille uses) which is a 200CCA 12lbs battery. I&#8217;ve also heard that if you don&#8217;t start on the first or second try it may not work. I&#8217;ve also heard that if you let your car sit for a too long it can be a problem. So I went for the EXT18L which is a 300CCA 18lbs battery. 33% bigger and more weight seemed totally reasonable to me. After removing the original battery tray and battery I saved 22lbs! Nice savings for a mere ~$80 battery which I picked up at Battery Power Inc. (818) 896-6455 (sylmar/burbank area of LA). Installation was 3 very large heavy duty zip ties.</p>
<p>So 6 months later? NO PROBLEMS at all&#8230; I&#8217;ve allowed my car to sit for seven days and it had no problem starting up and I&#8217;ve also had no problems turning it over multiple times. Actually, compared to my old battery which was way past due to be replaced its been a large improvement in the available power.</p>
<p>The only downside in going with a battery this size is that you don&#8217;t want to leave your car keyed on with the engine off for long periods of time. Also, note you&#8217;ll need some screw on battery posts. <a href="http://www.rx7club.com/showthread.php?t=704435">Here is a link with some pictures, links and discussion.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2008/07/08/rx-7-fd-battery-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mega Battery Technology Wrap Up</title>
		<link>http://riskinit.com/2008/07/08/mega-battery-technology-wrap-up/</link>
		<comments>http://riskinit.com/2008/07/08/mega-battery-technology-wrap-up/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 09:24:58 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Battery]]></category>
		<category><![CDATA[Cars]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://riskinit.com/2008/07/08/mega-battery-technology-wrap-up/</guid>
		<description><![CDATA[A123 Battery So, I recently ran into this article called &#8220;New Report Card Grades for the 12 Leading Lithium-ion Battery and Ultracapacitor Development Companies in the World&#8221;. Yes, I know, ridiculously long title&#8230; anyway this particular article was doing something I&#8217;ve been meaning to do for a long time which is consolidate all the battery [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fr"style="width:400px"><a href="http://www.a123systems.com"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/a123.jpg" alt="A123 Battery"  /></a><br/>A123 Battery</div>
<p>So, I recently ran into this article called &#8220;New Report Card Grades for the 12 Leading Lithium-ion Battery and Ultracapacitor Development Companies in the World&#8221;. Yes, I know, ridiculously long title&#8230; anyway this particular article was doing something I&#8217;ve been meaning to do for a long time which is consolidate all the battery technology advances I&#8217;ve been keeping track of in one easy to read blog post. Well, maybe not so easy to read but at least consolidated in one place. This particular article was written purely from a investment standpoint, which isn&#8217;t exactly what I had in mind. There are certainly benefits of looking at these companies from a financial perspective but I&#8217;m more interested in the technology.</p>
<p>Standard lithium chemistry batteries have some obvious issues. In the past battery technology (lead acid, nickel metal hydride, nickel cadmium, etc.) was too heavy and/or too bulky to be appropriate for modern vehicles. These days the current lithium chemistry that is used in a variety of consumer products is well within the range of powering a wide variety of vehicles. The problem is there are a few drawbacks with the current chemistry:</p>
<ul>
<li>Limited charge speed
<li>Limited current capacity
<li>Safety
<li>Cost
</ul>
<p>The good news is that these problems are being handled by advanced new lithium chemistries.</p>
<h1>Section 1: Advanced Lithium Chemistries</h1>
<p><b>Valence technologies</b><br />
<a href="http://www.valence.com/">http://www.valence.com/</a><br />
Technology: Lithium Phosphate<br />
Claims: &#8220;Safe, rugged and reliable technology with a cycle life 3-4 times that of lithium cobalt&#8221; they claim after 1400 cycles at 115f (its maximum operating temperature) it will retain 80% (90% at 73F) of its capacity. They also claim a full charge in roughly 2 hours. This sounds like a solid technology for the average commuter car. Safe, long lasting, and reasonable recharge rate.</p>
<p>7/10</p>
<p><b>Boston power</b><br />
<a href="http://www.boston-power.com/">http://www.boston-power.com</a><br />
Technology: Lithium Manganese and softshell aluminum cases<br />
claims: &#8221;	</p>
<ul>
<li>Longer life &#8211; up to three years of everyday charging
<li>Faster charging &#8211; up to 40% capacity in just 10 minutes, 80% in 30 minutes
<li>Safer to use &#8211; multiple, redundant safety features mean better protection for the user
<li>Better for the planet &#8211; awarded Nordic Ecolabel for environmental sustainability&#8221;
</ul>
<p>Unfortunately, there are no obvious data sheets on their products on the webpage. So, there is really no way to make a real comparison against the other products are. Again though, they seem to be squarely targeting EV&#8217;s.  while these potentially  have much better recharge time, the lack of real product information makes them lose a point.</p>
<p>6/10</p>
<p><b>A123 Systems</b><br />
<a href="http://www.a123systems.com/">http://www.a123systems.com/</a><br />
Technology: Lithium Nanophosphate<br />
Claims: &#8220;At A123Systems we have developed breakthrough, patented Nanophosphate(TM) lithium ion battery technology that provides engineers and application developers significantly higher power, an inherently safer chemistry, and an order of magnitude longer life.&#8221;</p>
<p> From their data sheets, they claim 80% capacity at 800 cycles at 140f and 95% at 77F! The great news about these guys if they are shipping actual real products today!  Both Black &#038; Decker and DeWalt have lines of power tools that use A123 batteries. The world&#8217;s fastest&#8221; EV powered motorcycle the &#8220;kilacycle&#8221; is powered by their batteries. The current major downside is cost and lack of large cell availability. They advertise a small kit with 6 26650 cells for $110 each, but this is hardly a scalable solution. On a side note, its apparently cheaper to harvest them from power tool battery backs 3rd parties sell to the public.</p>
<p>7/10</p>
<p><b>Altair NanoTechnology</b><br />
: &#8220;Nanosafe batteries&#8221;<br />
<a href="http://www.altairnano.com/">http://www.altairnano.com/&#8221;</a><br />
Technology: Nano-structured lithium titanate spinel oxide (LTO)</p>
<p>Claims:</p>
<ul>
<li>No operational safety issues
<li>Three times the power of existing batteries
<li>A one-minute recharge
<li>High cycle life&#8211;10,000 to 15,000 charges vs. 750 for existing batteries
<li>The capability to operate in extreme temperatures:  -22* to 480*F
<li>Low life-cycle costs
	</ul>
<p> While Altair batteries have a specific energy (~95wh/kg) higher than NiMH and similar to that of LiFePO4 batteries (in other words better than NiCad or lead acid but not as good as state of the art lithium-ion), they&#8217;ve made significant breakthroughs in specific power (available current).  They make some bold claims that if they can deliver on would be fairly disruptive, including 10-100x watts/kg, the fastest recharge time, the most cycle life, the widest range of temperatures, and with total safety. They are closer to ultra capacitors in specifications in any other battery in this group. Pricing? Unclear&#8230;</p>
<p> 8/10</p>
<p><b>Toshiba</b><br />
&#8220;Supercharge SCiB&#8221;<br />
<a href="http://www.toshiba.co.jp/about/press/2007_12/pr1101.htm">Toshiba Press Release</a><br />
Technology: unknown<br />
Claims:</p>
<ul>
<li>Excellent safety
<li>Current performance equivalent to an electric double layer capacitor
<li>5 minute recharge (to 90%)
<li>3,000 to 5,000 cycles
<li>Low temperature use -30*C
</ul>
<p> Sounds very familiar doesn&#8217;t it?  While not exactly as extreme as Altair is claiming, Toshiba is claiming much of the same advances. Which makes me highly suspicious they are either 1.  using similar technology or 2. Sourcing technology from Altair.</p>
<p> &#8220;According to a report in the Nikkei, Toshiba will begin producing 150,000 batteries a month at a Saku, Nagano Prefecture, factory. It will shift to mass production by 2010 with plans to make 600,000 cells for hybrid and electric vehicles and 400,000 batteries for forklifts and other industrial equipment.&#8221;<br />
 &#8212;  green car Congress<br />
 <a href="http://www.greencarcongress.com/2007/12/toshiba-launche.html">Green Car Congress</a></p>
<p>&#8220;Toshiba&#8230;19,440 kWh a year&#8230;&#8221;</p>
<p>&#8220;For comparison A123 is likely producing 40,000  in the eye in 2007. Altair is likely doing less than 3,500 kWh in 2007.&#8221;</p>
<p>9/10</p>
<p><b>ElectroVaya</b><br />
<a href="http://www.electrovaya.com">http://www.electrovaya.com</a><br />
Technology: &#8220;Lithium Ion SuperPolymer&#8221; (Lithiated Manganese Oxide)<br />
Claims: </p>
<ul>
<li> 40-60 percent higher energy density compared to LiFePO4
<li> Comparable safety characteristics to LiFePO4
</ul>
<p>This Canadian company was founded in 2000 and makes a variety of lithium-based chemistry batteries.  They seem to be going down the lithium manganese path as opposed to the lithium phosphate path. I don&#8217;t know a lot about them but I will start keeping my eye on them.<br />
?/10</p>
<p><b>Generic Chinese LiFePO4</b><br />
Claims:</p>
<ul>
<li> Safe
<li> Reasonable density 100wh/kg typical
<li> Decent temperature ranges
<li> Typically claim 1000-4000 cycles
<li> 1C-10C of available current
</ul>
<p>There are at least a dozen chinese companies building and selling LiFePO4 batteries. While most of them are still fairly pricey, a few of them are bringing costs down to the point where real EV&#8217;s are possible. I believe this is the most likely way consumers will see electric vehicles in the short-term. Major auto manufacturers will probably drag their feet and ignore these companies until the market pressure forces them to play their hand.</p>
<p>8/10</p>
<h1>Section 2: The holy Grail&#8230; Ultra capacitors<br />
</h1>
<p>While batteries store chemical energy and make it available as electricity. The disadvantage of this is that the chemical reactions necessary for rechargeable batteries are limited in the speed at which they can happen, in the number of times the reaction can be repeated and reversed, and in the shelf life of the chemicals.  In contrast a capacitor stores its energy by putting electrons between a pair of conductors, there is no chemical reaction. This means they could potentially last forever and they can charge and discharge at very high rates. in the past, the problem with capacitors in general was capacity. Even the last generation of super capacitors were only capable of 1000th the capacity of the lithium-ion battery.</p>
<p><b>EESTOR</b><br />
Ultracapacitors<br />
<a href="http://en.wikipedia.org/wiki/EEstor">EEStor Wiki</a><br />
Technology: barium titanate coated with aluminum oxide and glass capacitors<br />
Claims:</p>
<ul>
<li>Nontoxic and non-hazardous
<li>Non-explosive
<li>For a 52 kWh unit, an initial production price of $3,200, falling to $2,100 with mass production is projected.[6] This is half the price per stored watt-hour as lead-acid batteries, and potentially cheap enough to use to store grid power at off-peak times for on-peak use, and to buffer the output from intermittent power sources such as wind farms.
<li>No degradation from charge/discharge cycles
<li>4-6 minute charge time for a 336 pound (152 kg), 2005 cubic inch (33 L), 52 kilowatt hour (187 MJ), 31 farad, 3500 volt unit, assuming sufficient cooling of the cables.
<li>A self-discharge rate of 0.1% per month
</ul>
<p>Queue up EESTOR!<br />
Claims to have Capacitors with storage density of 280 wh/kg. typical LiION is 100-200 wh/kg and in 10 times typical lead acid. In real-world terms this means you could build a vehicle that would get 4-500 miles per charge and recharge in roughly 5 minutes.</p>
<p>Secrecy and &#8220;adjusted schedules&#8221; has caused some concern of vaporware. On the other hand, defense contractor Lockheed-Martin has recently signed and exclusive deal for defense applications. I wouldn&#8217;t be surprised if we don&#8217;t see consumer applications for awhile simply so that the US Military can get a good multi-year jump on building new technology around such game changing energy systems. </p>
<p>1 point off for my gut telling me its not going to be this cheap, 2 points off for lack of any real products.</p>
<p>7/10</p>
<h1>Conclusion:</h1>
<p>Pb (lead) &#8211; 30wh/kg, 300-500 cycles, can&#8217;t be discharged to 0%<br />
NiCd &#8211; The past<br />
NiMh &#8211; Memory issues, medium density, medium power<br />
LiFePO4 &#8211; 100kw/kg, great cycle life, lots of power and reasonable price today, also doesnt have a huge environmental cost compared to NiMh.<br />
LiMn2O4 &#8211; Reasonably safe, potential for higher density, wear quickly at high temperature and not as available.<br />
LiCoO2 (&#8220;typical&#8221; Lithium ION) &#8211; NOT safe, best power/weight and very expensive.<br />
Ultracapacitors &#8211; Ideal technology but not available yet.</p>
<p><b>So the winner is LiFePO4</b>. As LiMn2O4 become more available they may have a chance and ultimately if and when EESTOR comes through on its claims, ultra-capacitors will win the long war.</p>
<p><a href="http://www.kaycik.com/whatislefepo4.htm">Nice Lithium comparison chart</a></p>
<h3>Misc&#8230;</a></p>
<p>Recent rage of adding some capacitors and batteries together to increase battery life and increase instantaneous current/power.<br />
<a href="http://www.technologyreview.com/Energy/20105/">Technology Review: A Cheaper Battery for Hybrid Cars</a></p>
<p><b>Research</b></p>
<p>Stanford University &#8211; 10x lithium with nanowires<br />
<a href="http://www.symbian-freak.com/news/007/12/new_battery_technology_for_mobiles.htm">High-performance lithium battery anodes using silicon nanowires</a></p>
<p>MIT Ultra capacitors<br />
<a href="http://www.popularmechanics.com/science/research/4252623.html">MIT Builds Efficient Nanowire Storage to Replace Car Batteries</a></p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2008/07/08/mega-battery-technology-wrap-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>window explosion distraction&#8230;</title>
		<link>http://riskinit.com/2008/04/24/window-explosion-distraction/</link>
		<comments>http://riskinit.com/2008/04/24/window-explosion-distraction/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 07:08:30 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://riskinit.com/2008/04/24/window-explosion-distraction/</guid>
		<description><![CDATA[glass under pressure&#8230; So, I was going to write a big post about battery technology. But, it is going to have to wait until tomorrow as a huge window in my house has just exploded&#8230; Thank the inventor of safety glass! I suppose this is one of the downsides of living in a house that [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fl"style="width:300px"><a href="/imagej.php?p=51&#038;image=images/misc/images/_IGP9970.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/_IGP9970.jpg" alt="glass under pressure..."  /></a><br/>glass under pressure&#8230;</div>
<p>So, I was going to write a big post about battery technology. But, it is going to have to wait until tomorrow as a huge window in my house has just exploded&#8230; Thank the inventor of safety glass!  I suppose this is one of the downsides of living in a house that was built in the 20&#8242;s. Well that and the fact that my office is tilted just enough that my chair always wants to roll away from my desk&#8230;okay and maybe lack of central air =P</p>
<p>It&#8217;s still crackling and splintering in a disturbing way&#8230;maybe I&#8217;ll take another picture in the morning.</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2008/04/24/window-explosion-distraction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restore iTunes warning about deleting playlists</title>
		<link>http://riskinit.com/2008/02/02/restore-itunes-warning-about-deleting-playlists/</link>
		<comments>http://riskinit.com/2008/02/02/restore-itunes-warning-about-deleting-playlists/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 21:52:04 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://riskinit.com/2008/02/02/restore-itunes-warning-about-deleting-playlists/</guid>
		<description><![CDATA[iTunes I wrote a long thing on what to do, then my wireless went down and when i went to post it, it lost it. gee I love technology&#8230;.any so now you get the short end of the stick =) This worked for iTunes 7.6 Build 29 (no guarantees&#8230;) Backup ~/Library/Preferences/cmp com.apple.iTunes.plist Use a Hex [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fr"style="width:250px"><a href="http://www.apple.com/itunes/"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/itunes.png" alt="iTunes"  /></a><br/>iTunes</div>
<p>I wrote a long thing on what to do, then my wireless went down and when i went to post it, it lost it. gee I love technology&#8230;.any so now you get the short end of the stick =)</p>
<p>This worked for iTunes 7.6 Build 29 (no guarantees&#8230;)</p>
<p>Backup<br />
~/Library/Preferences/cmp com.apple.iTunes.plist </p>
<p>Use a <a href="http://www.ifd.com/hexedit">Hex editor</a> and change byte 0x13FF from 01 to 00</p>
<p>Launch iTunes&#8230;presto bingo, the warning should be back.</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2008/02/02/restore-itunes-warning-about-deleting-playlists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Topanga and Malibu Fire maps and information</title>
		<link>http://riskinit.com/2007/10/23/topanga-and-malibu-fire-maps-and-information/</link>
		<comments>http://riskinit.com/2007/10/23/topanga-and-malibu-fire-maps-and-information/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 22:27:43 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://riskinit.com/2007/10/23/topanga-and-malibu-fire-maps-and-information/</guid>
		<description><![CDATA[Topanga Canyon Fire Map as of 10/23/07 6am So I&#8217;ve been showing my maps to a few people and decided they should to be posted. You&#8217;ll have to excuse the list of names, I&#8217;m sure you&#8217;re mom and mine aren&#8217;t in the same location! Topanga Canyon Fire Map as of 10/22/07 Topanga Canyon Fire Map [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fl"style="width:300px"><a href="/imagej.php?p=49&#038;image=images/misc/images/topanga_fire_map_10_23_6am.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/topanga_fire_map_10_23_6am.jpg" alt="Topanga Canyon Fire Map as of 10/23/07 6am"  /></a><br/>Topanga Canyon Fire Map as of 10/23/07 6am</div>
<p>So I&#8217;ve been showing my maps to a few people and decided they should to be posted. You&#8217;ll have to excuse the list of names, I&#8217;m sure you&#8217;re mom and mine aren&#8217;t in the same location!</p>
<p><a href="/imagej.php?image=images/misc/images/topanga_fire_small.jpg">Topanga Canyon Fire Map as of 10/22/07</a></p>
<p><a href="/imagej.php?image=images/misc/images/topanga_fire_map_10_23_6am.jpg">Topanga Canyon Fire Map as of 10/23/07 6am</p>
<p><a href="http://www.t-cep.org/zonemap.htm">T-Cep (Topanga Collation for Emergency Preparedness) Fire Zone Map</a></p>
<p><a href="http://www.t-cep.org/alerts/">T-Cep Information Updated Live information</a></p>
<p>NOAA (National Oceanic and Atmospheric Administration) </p>
<p><a href="http://www.wrh.noaa.gov/mesowest/mwmap.php?map=la">Air direction and speed map</a> Red numbers are air-speed, black are temperature. Direction is the line heading away from the + symbols.<br />
<a href="http://sat.wrh.noaa.gov/satellite/satloop.php?wfo=lox&#038;type=vis&#038;size=1">Regional visible satellite images 1KM Loop</a> (daytime only and requires Java)</p>
<p><a href="http://www.malibu-ca.gov/">City of Malibu page (source of original fire maps)</a></p>
<p><strong>Update: 10/24/07 9am</strong> The Fire Department reports that the fire is estimated to be 4500 acres and is now 75% contained.  Full containment is expected by Friday, October 26. All major highways are now open in both directions.<a href="http://www.malibu-ca.gov/news/index.cfm?fuseaction=story&#038;ID=731"> Press Release</a></p>
<p><strong>Update: 10/24/07 9am</strong> Charter expects that customers will have service restored between 6:30 and 8:30 pm this evening. <a href="http://www.malibu-ca.gov/news/index.cfm?fuseaction=story&#038;ID=731">Charter Press release</a></p>
<p><a href=http://maps.google.com/maps/ms?ie=UTF8&#038;hl=en&#038;msa=0&#038;msid=117631292961056724014.00043d21dedd02f5ae1f7&#038;om=0&#038;ll=33.651208,-118.146973&#038;spn=2.130789,3.669434&#038;z=8">Southern California Fire Map google mashup</a> (doesn&#8217;t seem to be frequently updated in many locations)</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2007/10/23/topanga-and-malibu-fire-maps-and-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deca TV</title>
		<link>http://riskinit.com/2007/10/10/deca-tv/</link>
		<comments>http://riskinit.com/2007/10/10/deca-tv/#comments</comments>
		<pubDate>Thu, 11 Oct 2007 05:50:54 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://riskinit.com/2007/10/10/deca-tv/</guid>
		<description><![CDATA[Deca.tv Long time no post&#8230; So I&#8217;m working at a new company. First job since some where in the early 90&#8242;s. No really&#8230;ok first time I&#8217;ve worked for someone else since then. We are a digital studio&#8230;the official marketing blurb&#8230; &#8220;DECA is committed to creating unique, high-quality digital entertainment properties that combine premium video, social [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fr"style="width:250px"><a href="http://deca.tv"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/deca_logo.png" alt="Deca.tv"  /></a><br/>Deca.tv</div>
<p>Long time no post&#8230;</p>
<p>So I&#8217;m working at a new company. First job since some where in the early 90&#8242;s. No really&#8230;ok first time I&#8217;ve worked for someone else since then. We are a digital studio&#8230;the official marketing blurb&#8230;</p>
<p>&#8220;DECA is committed to creating unique, high-quality digital entertainment properties that combine premium video, social media applications and community. Our goal is to consistently provide new and exciting digital brands to consumers, marketers, distributors and creative talent.&#8221;</p>
<p>Reality:</p>
<p><a href=http://dogandpony.tv">Dog and Pony Show</a>: cheeky interviews with business innovators.<br />
<a href=http://tv.boingboing.net">BoingBoingTV</a>: Boingboing&#8230;but video</p>
<p>So wish us luck and check out the content and let us know what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2007/10/10/deca-tv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Somewhere inbetween&#8230; The Moon</title>
		<link>http://riskinit.com/2007/03/26/somewhere-inbetween-the-moon/</link>
		<comments>http://riskinit.com/2007/03/26/somewhere-inbetween-the-moon/#comments</comments>
		<pubDate>Tue, 27 Mar 2007 03:13:06 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Photograpy]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=46</guid>
		<description><![CDATA[The Moon (warning its a biggie) So back in November I did this set of photos of the moon. Recently I borrowed this 8&#8243; Celestron telescope and got a shot of Saturn. I was both impressed (that you could see it at all) and mildly disappointed I couldn&#8217;t capture what you could see with the [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fr"style="width:300px"><a href="/imagej.php?p=46&#038;image=images/misc/images/moon_IGP4819s.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/moon_IGP4819s.jpg" alt="The Moon (warning its a biggie)"  /></a><br/>The Moon (warning its a biggie)</div>
<p>So back in November I did <a href="http://riskinit.com/?p=34">this set of photos of the moon</a>. Recently I borrowed this 8&#8243; Celestron telescope and got a shot of Saturn. I was both impressed (that you could see it at all) and mildly disappointed I couldn&#8217;t capture what you could see with the human eye. Hence I aimed my scope at something a little closer to see if I could improve on my past attempts without a real long lens. <a href="/imagej.php?image=images/misc/images/moon_IGP4819s.jpg">The results are not too shabby.</a> </p>
<p>So until next time I can think of something else to take a picture of&#8230;signing off&#8230;</p>
<p>Update: Ok, so I managed to find some <a href="http://www.cs.unm.edu/~kwiley/software/keithsImageStacker.html">mostly free image stacking software</a>, did a quick 10 stack and substantially improved the resolution, enough so that I&#8217;m willing to show the 100% version. Warning this is 3872&#215;2592 but <a href="/imagej.php?image=images/misc/images/moon_10stack_fullsized.jpg">its quite impressive</a> what you can do to remove the atmospheric distortion with multiple photos.</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2007/03/26/somewhere-inbetween-the-moon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things close up&#8230;things far away&#8230; Saturn!</title>
		<link>http://riskinit.com/2007/03/13/things-close-upthings-far-away-saturn/</link>
		<comments>http://riskinit.com/2007/03/13/things-close-upthings-far-away-saturn/#comments</comments>
		<pubDate>Tue, 13 Mar 2007 08:42:34 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=45</guid>
		<description><![CDATA[Saturn So instead getting an image of something really close up (which I often like doing), here is something far far away. It&#8217;s nothing spectacular or amazing like this. But, its the best I could do with equipment on hand and not being NASA. Maybe if I can get the tracking a little better I [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fl"style="width:300px"><a href="/imagej.php?p=45&#038;image=images/misc/images/saturn3b.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/saturn3b.jpg" alt="Saturn"  /></a><br/>Saturn</div>
<p>So instead getting an image of something really close up (which I often like doing), here is something far far away. It&#8217;s nothing spectacular or amazing like <a href="/imagej.php?image=images/misc/images/saturn_nasa.jpg">this</a>. But, its the best I could do with equipment on hand and not being NASA. Maybe if I can get the tracking a little better I could improve it marginally, but really I bet better viewing conditions would have a much greater impact in quality.</p>
<p>It&#8217;s also really overkill but impressive on things much closer to home. Here is my <a href="/imagej.php?image=images/misc/images/voltage320mm.jpg">best shot</a> with a marginal quality 320mm lens. <a href="/imagej.php?image=images/misc/images/voltage.jpg">Same thing at 2032mm</a> (no eye piece and reduced to 50%). Impressive! </p>
<p>I&#8217;ll get a much better moon shot once it rolls around, its not coming up until like 5am or something silly.</p>
<p>Celestron C8 Telescope (2032mm F10) 8mm eye piece (so like 254x magnification)<br />
Pentax K10D 10MP Camera</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2007/03/13/things-close-upthings-far-away-saturn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone my 2 cents</title>
		<link>http://riskinit.com/2007/01/11/iphone-my-2-cents/</link>
		<comments>http://riskinit.com/2007/01/11/iphone-my-2-cents/#comments</comments>
		<pubDate>Fri, 12 Jan 2007 02:38:11 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=43</guid>
		<description><![CDATA[Everyones new talking point So as a techie, my biggest complaints on the iPhone (besides the inevitable scratches that will drive everyone nuts to the point of class action lawsuits) are&#8230; 1. No 3G high speed network support. EDGE is 2.5G and barely acceptable for the type multimedia this phone is capable of. 2. No [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fr"style="width:320px"><a href="/imagej.php?p=43&#038;image=images/misc/images/iphone377.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/iphone377.jpg" alt="Everyones new talking point"  /></a><br/>Everyones new talking point</div>
<p>So as a techie, my biggest complaints on the iPhone (besides the inevitable scratches that will drive everyone nuts to the point of class action lawsuits) are&#8230;</p>
<p>1. No 3G high speed network support. EDGE is 2.5G and barely acceptable for the type multimedia this phone is capable of.<br />
2. No expansion. A simple SD card slot would make your 4G unlimited gig&#8230;<br />
3. Battery not removable. </p>
<p>So I got to thinking about it and so far no one has said how long the &#8216;exclusive&#8217; Cingular thing will be. It could be as short as 6 months maybe a year at the most. </p>
<p>The second thing I thought of was, hey this is standard apple operating procedure. Release a product that is amazing in every way but a few, then 6-12months later &#8216;blow everyone&#8217;s mind&#8217; by adding all the missing features and forcing everyone to upgrade =)</p>
<p>So the lack of HSDPA/EVDO is because 6-12 months later they&#8217;ll announce &#8216;iPhone Pro&#8217; with a removable battery and HDSPA and twice the memory or SD card slot or similar. It will also fix the crippling xyz bug that all the first gen owners are inevitably going to complain about  (buzzing, hissing, or some other odd glitch that really drives 1% of the users mad).</p>
<p>Anyway, i&#8217;ll probably wait for the 2nd gen, cause my Treo700p on EVDO does 95% of the functionality with 1% of the stability and 5% of the fineness. </p>
<p>My 2 cents&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2007/01/11/iphone-my-2-cents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bump Key video&#8230;</title>
		<link>http://riskinit.com/2006/08/07/bump-key-video/</link>
		<comments>http://riskinit.com/2006/08/07/bump-key-video/#comments</comments>
		<pubDate>Mon, 07 Aug 2006 19:41:41 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Hack]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=42</guid>
		<description><![CDATA[Click for video So, I was just reading Engadget and I realized I don&#8217;t think I ever posted my bump key video. For those of you out of the loop, locks don&#8217;t work. Even a total amateur can break in to some of the most sophisticated locks without any skill what-so-ever. In fact I&#8217;ve personally [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fl"style="width:250px"><a href="http://riskinit.com/wp-content/bump2.mov"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/bumpkey.png" alt="Click for video"  /></a><br/>Click for video</div>
<p>So, I was just reading <a href="http://www.engadget.com/2006/08/07/bump-keying-1-keys-open-any-lock/">Engadget</a> and I realized I don&#8217;t think I ever posted my bump key video.</p>
<p>For those of you out of the loop, locks don&#8217;t work. Even a total amateur can break in to some of the most sophisticated locks without any skill what-so-ever. In fact I&#8217;ve personally found it EASIER to break in to more expensive locks with this method, than cheaper old ones that are lose inside. <a href="http://en.wikipedia.org/wiki/Lock_picking">Wiki on lockpicking</a>.</p>
<p>I made this key in under 5 minutes with an old key I found in a drawer and a Dremal. </p>
<p>So without further ado&#8230;the bump&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2006/08/07/bump-key-video/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://riskinit.com/bump2.mov" length="1809204" type="video/quicktime" />
<enclosure url="http://riskinit.com/wp-content/bump2.mov" length="1809204" type="video/quicktime" />
		</item>
		<item>
		<title>Fry&#8217;s&#8230; A love hate relationship</title>
		<link>http://riskinit.com/2006/07/08/frys-a-love-hate-relationship/</link>
		<comments>http://riskinit.com/2006/07/08/frys-a-love-hate-relationship/#comments</comments>
		<pubDate>Sun, 09 Jul 2006 05:08:17 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=41</guid>
		<description><![CDATA[$39.99 or $14.99 So I was in Fry&#8217;s Electronics today and I wanted a 16foot USB Repeater cable. Its basically a 16 foot USB cable (the maximum the spec. allows) and a little bus powered hub on the end. Anyway, after searching the &#8220;USB Stuff&#8221; isle for about a minute I realized it was on [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fr"style="width:250px"><a href="/imagej.php?p=41&#038;image=images/misc/images/blue_vs_yellow.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/blue_vs_yellow.jpg" alt="$39.99 or $14.99"  /></a><br/>$39.99 or $14.99</div>
<p>So I was in Fry&#8217;s Electronics today and I wanted a 16foot USB Repeater cable. Its basically a 16 foot USB cable (the maximum the spec. allows) and a little bus powered hub on the end. Anyway, after searching the &#8220;USB Stuff&#8221; isle for about a minute I realized it was on another isle. No problem, ah&#8230;the &#8220;USB Cable&#8221; isle, hmm product 1. $39.99, ah another one, crap $39.99. I was also looking for a plain extension. 10Ft $12.99&#8230;ouch&#8230;</p>
<p>So after about 5 minutes of digging, I give up and start wondering again. Out of the corner of my eye on a random isle, ah, mixed in with the Firewire cables, a few lone USB cables. Found the SAME 16foot extender $14.99 and the same one bundled with a 10foot and a 6foot cable for $19.99! </p>
<p>Aye&#8230;I feel sorry for all the poor saps who just pay full price&#8230;</p>
<p>Check out the picture, yellow is HALF the price of blue!</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2006/07/08/frys-a-love-hate-relationship/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snakes on a pole&#8230;</title>
		<link>http://riskinit.com/2006/07/03/snakes-on-a-pole/</link>
		<comments>http://riskinit.com/2006/07/03/snakes-on-a-pole/#comments</comments>
		<pubDate>Tue, 04 Jul 2006 07:05:12 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Photograpy]]></category>

		<guid isPermaLink="false">http://riskinit.com/?p=40</guid>
		<description><![CDATA[Snake on a pole Wow an update, crazy&#8230;been distracted with other things in my life, like Turbo and other stuff. But I took some good pictures recently and thought I would share&#8230; Snake How the snake got there&#8230; Back off buddy, my snake!]]></description>
			<content:encoded><![CDATA[<div class="image_fl"style="width:250px"><a href="/imagej.php?p=40&#038;image=images/misc/images/snakes_on_a_pole.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/snakes_on_a_pole.jpg" alt="Snake on a pole"  /></a><br/>Snake on a pole</div>
<p>Wow an update, crazy&#8230;been distracted with other things in my life, like<br />
<a href="http://riskinit.com/gallery_template.php?folder=galleries/puppy&#038;page=index.html">Turbo</a> and other stuff. But I took some good pictures recently and thought I would share&#8230;</p>
<p><a href="http://riskinit.com/images/misc/images/snakes_on_a_pole.jpg">Snake</a></p>
<p><a href="http://riskinit.com/images/misc/images/hawk_dinner.jpg">How the snake got there&#8230;</a></p>
<p><a href="http://riskinit.com/images/misc/images/hawk_yo.jpg">Back off buddy, my snake!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2006/07/03/snakes-on-a-pole/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RX-7 Still ridiculously fast</title>
		<link>http://riskinit.com/2005/08/04/rx-7-still-rediculously-fast/</link>
		<comments>http://riskinit.com/2005/08/04/rx-7-still-rediculously-fast/#comments</comments>
		<pubDate>Fri, 05 Aug 2005 06:57:36 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[G-force Graph, click for full run data While part of me feels like I&#8217;m getting old, I know I&#8217;m not quite over the hill yet. So I got my car back from the shop after 3 months of engine rebuild. Its not quite running right yet&#8230;but in the twisty&#8217;s not much is faster. Back in [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fr"style="width:285px"><a href="/imagej.php?p=32&#038;image=images/misc/images/accelerationgs.gif"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/accelerationgs.gif" alt="G-force Graph, click for full run data"  /></a><br/>G-force Graph, click for full run data</div>
<p>While part of me feels like I&#8217;m getting old, I know I&#8217;m not quite over the hill yet. So I got my car back from the shop after 3 months of engine rebuild. Its not quite running right yet&#8230;but in the twisty&#8217;s not much is faster. Back in <a href="http://riskinit.com/index.php?m=200503">March</a> I made <a href="http://riskinit.com/index.php?p=22">this post about the G-Tech Pro</a>. I never got around to posting any of my runs, so I&#8217;ll post <a href="/imagej.php?p=32&#038;image=images/misc/images/RX7-TOPANGA-RUN-WITH-ADAM2.gif">this one</a>. </p>
<p>Disclaimer: Pseudo-professional Driver on a Closed Course. (hey it works for the car ads)</p>
<p>While in theory on a closed course I have no fear of crossing the center divider and should have the same cornering room, lets just say I was trying to practice normal style driving, just faster =). Now notice how I&#8217;m a total wuss when corning left only getting about 1.0g&#8217;s while to the right I peak at 1.34g&#8217;s.  I know there is more room to run out in case I get in trouble on the rights&#8230;</p>
<p>Anyway I just like posting graphs. Enjoy&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2005/08/04/rx-7-still-rediculously-fast/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Volkswagen Key Disassembly</title>
		<link>http://riskinit.com/2005/08/04/volkswagen-key-disassembly/</link>
		<comments>http://riskinit.com/2005/08/04/volkswagen-key-disassembly/#comments</comments>
		<pubDate>Thu, 04 Aug 2005 19:12:30 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Hack]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[VW Key Volkswagon, Volkswagen, VW, Beetle, Jetta&#8230;ok that should feed the search engines enough variations =P Ok, need to replace the battery on your VW Key fob? Or need to replace the metal keychain thingy on it? VW will charge you a fortune for either&#8230;I made a page a few years back on my personal [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fl"style="width:245px"><a href="/volkswagen-key-disassembly/"><img src="http://riskinit.com/wp-content/themes/mytheme/images/galleries/volkswagen-key-disassembly/thumb/step2.jpg" alt="VW Key"/></a><br/>VW Key</div>
<p>Volkswagon, Volkswagen, VW, Beetle, Jetta&#8230;ok that should feed the search engines enough variations =P </p>
<p>Ok, need to replace the battery on your VW Key fob? Or need to replace the metal keychain thingy on it? VW will charge you a fortune for either&#8230;I made a page a few years back on my personal web page thats pretty popular, so I decided time for some update pictures and add the fix for the broken keychain&#8230;</p>
<p><a href="http://riskinit.com/volkswagen-key-disassembly/">Enjoy the savings!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2005/08/04/volkswagen-key-disassembly/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>RX-8 Sales By Month</title>
		<link>http://riskinit.com/2005/06/25/rx-8-sales-by-month/</link>
		<comments>http://riskinit.com/2005/06/25/rx-8-sales-by-month/#comments</comments>
		<pubDate>Sat, 25 Jun 2005 22:44:40 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[RX-8 USA Sales. Click for bigger version! I&#8217;ve always been a big RX-7 fan, but for some reason or another the RX-8 just doesn&#8217;t do it for me looks wise. Anyway, I did this for MY FRIEND ADAM and just remembered one of the reasons I started this site was so that my seemingly pointless [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fr"style="width:500px"><a href="/imagej.php?p=30&#038;image=images/misc/images/rx8salesbymonth.gif"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/rx8salesbymonth.gif" alt="RX-8 USA Sales. Click for bigger version!"  /></a><br/>RX-8 USA Sales. Click for bigger version!</div>
<p>I&#8217;ve always been a big <a href="http://riskin.org/rx7/fd/">RX-7 fan</a>, but for some reason or another the RX-8 just doesn&#8217;t do it for me looks wise. Anyway, I did this for <a href="http://www.subsonic-systems.com"><b>MY FRIEND ADAM</b></a> and just remembered one of the reasons I started this site was so that my seemingly pointless efforts may be useful for someone other than just myself. </p>
<blockquote><p>
USA Sales by year<br />
2003 &#8211; 12,346<br />
2004 &#8211; 23,690<br />
2005 &#8211; 6,992<br />
Total &#8211; 43,028
</p></blockquote>
<p>P.S. I noticed I didn&#8217;t label the graph, so if it isn&#8217;t obvious its in cars sold per month.</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2005/06/25/rx-8-sales-by-month/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MiniSD&#8230; a tasty treat!</title>
		<link>http://riskinit.com/2005/06/24/minisd-a-tasty-treat/</link>
		<comments>http://riskinit.com/2005/06/24/minisd-a-tasty-treat/#comments</comments>
		<pubDate>Sat, 25 Jun 2005 03:08:26 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Photograpy]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[100dpi MiniSD w/dime. Click for GIGANTIC size! So, I was thinking today and it occurred to me that digital photography has changed things a bit. In the past if you took pictures of things that the powers that be didn&#8217;t like, they would likely take your camera and smash it and pull out the film [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fl"style="width:250px"><a href="/imagej.php?p=28&#038;image=images/misc/images/dime_minisd.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/dime_minisd.jpg" alt="100dpi MiniSD w/dime. Click for GIGANTIC size!"  /></a><br/>100dpi MiniSD w/dime. Click for GIGANTIC size!</div>
<p>So, I was thinking today and it occurred to me that digital photography has changed things a bit. In the past if you took pictures of things that the powers that be didn&#8217;t like, they would likely take your camera and smash it and pull out the film and possibly search you for more film and destroy that too. </p>
<p>Well, digital memory can be small, really small! Its also really tough, surviving drops, water, plane crashes, and lots more. So the weird guy that I am I think, hey why not swallow it? My normal SD cards are easily small enough to be swallowed, and <a href="http://www.sandisk.com/oem/sd-minisd-spec.htm">MiniSD</a> is even smaller and can be adapted to SD. So you could keep a spare SD card, when they go to take your stuff swap out the card and swallow the important one. Its definitely small enough to pass through, but no guarantees =) </p>
<p>P.S. The image is 90DPI which should be close to real sized on many monitors. 72-100dpi is fairly typical these days. My Dell 20&#8243; is spot on 100DPI. </p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2005/06/24/minisd-a-tasty-treat/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FIOS Insanity</title>
		<link>http://riskinit.com/2005/02/23/fios-insanity/</link>
		<comments>http://riskinit.com/2005/02/23/fios-insanity/#comments</comments>
		<pubDate>Thu, 24 Feb 2005 07:33:22 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">/?p=20</guid>
		<description><![CDATA[Verizon FIOS logic gone bad.]]></description>
			<content:encoded><![CDATA[<div class="image_fl_last"style="width:135px"><a href="/imagej.php?p=20&#038;image=images/misc/images/fiosinsanity.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/fiosinsanity.jpg" alt="FIOS Availability"  /></a><br/>FIOS Availability</div>
<p>So I went a little crazy and put in a bunch of my neighbors address in to the <a href="http://www22.verizon.com/FiosForHome/Channels/Fios/root/address_entry.asp"> Verizon FIOS availability form</a>.  Mix in a  little <a href="http://maps.yahoo.com>Yahoo Maps</a> and some <a href="http://www.adobe.com/photoshop/">Photoshop</a> and you have what is driving me mad. FIOS is available in what appears to be completely random locations.</p>
<p>The picture is a link to a map of my neighborhood. Click it&#8230;</p>
<p>Ok, explain that! I&#8217;ve thought about it and its either 1. random (maybe to stage the workload?), 2. computer error or 3. the bundles of fiber not hooked up at the CO have no particular order. What ever it is&#8230;its driving me a bit insane&#8230;</p>
<p>I&#8217;ve called and the CSR filled out a engineering report, but I don&#8217;t have any high hopes of that changing things.</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2005/02/23/fios-insanity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nano-explosives</title>
		<link>http://riskinit.com/2005/01/31/nano-explosives/</link>
		<comments>http://riskinit.com/2005/01/31/nano-explosives/#comments</comments>
		<pubDate>Tue, 01 Feb 2005 00:12:13 +0000</pubDate>
		<dc:creator>jriskin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">/?p=18</guid>
		<description><![CDATA[108nm Al I was recently reading Defense Tech and read a small interesting post that made a big impact. Nano-Explosives&#8230; I hadn&#8217;t considered the implications and relative ease for nano-tech in the explosives realm. Unlike many of the far reaching nano-technologies (tiny robots to fix cells, etc&#8230;) the structures for nano-explosive are orders of magnitude [...]]]></description>
			<content:encoded><![CDATA[<div class="image_fr_last"style="width:170px"><a href="/imagej.php?p=18&#038;image=images/misc/images/108nm_Al.jpg"><img src="http://riskinit.com/wp-content/themes/mytheme/images/misc/thumbs/108nm_Al.jpg" alt="108nm Al"  /></a><br/>108nm Al</div>
<p>I was recently reading <a href="http://www.defensetech.org/"> Defense Tech</a> and read a small interesting post that made a big impact. Nano-Explosives&#8230;</p>
<p> I hadn&#8217;t considered the implications and relative ease for nano-tech in the explosives realm. Unlike many of the far reaching nano-technologies (tiny robots to fix cells, etc&#8230;) the structures for nano-explosive are orders of magnitude less complicated. The implications for high-energy radiation free explosives are nothing short of staggering. The blog link points to a news article on <a href="http://www.technologyreview.com/articles/05/01/wo/wo_gartner012105.asp?p=1"> Technology Review</a> where they discuss the technology in a bit more detail. </p>
<blockquote><p><i>Researchers can greatly increase the power of weapons by adding materials known as superthermites that combine nanometals such as nanoaluminum with metal oxides such as iron oxide, according to Steven Son, a project leader in the Explosives Science and Technology group at Los Alamos.</i></p></blockquote>
<p>I&#8217;ll summarize a bit, 1000x the chemical reaction time to current high explosives. If you know anything about explosives, you know that its the velocity that counts and this is some serious improvement. </p>
<p>Here is an older but interesting look at the topic from Feb 2, 2002 from <a href="http://www.smalltimes.com/document_display.cfm?document_id=3045"> Small Times</a>, a look at the <a href="http://pearl1.lanl.gov/external/Research/CARISS.html">Los Alamos Team on the bottom of this link</a>, and some interesting electron microscope shots from <a href="http://www.me.ttu.edu/?page=376">Texas Tech</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://riskinit.com/2005/01/31/nano-explosives/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
