<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>SethBlog</title>
	
	<link>http://www.sethb.com/weblog</link>
	<description>Seth Bokelman's Weblog</description>
	<lastBuildDate>Mon, 30 Apr 2012 17:02:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/sethb/dvLu" /><feedburner:info uri="sethb/dvlu" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://superfeedr.com/hubbub" /><geo:lat>42.527184</geo:lat><geo:long>-92.45609</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><item>
		<title>PowerShell script to create numerous DHCP scopes</title>
		<link>http://feedproxy.google.com/~r/sethb/dvLu/~3/p21K9iWsU08/</link>
		<comments>http://www.sethb.com/weblog/?p=1354#comments</comments>
		<pubDate>Mon, 30 Apr 2012 17:02:34 +0000</pubDate>
		<dc:creator>Seth</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.sethb.com/weblog/?p=1354</guid>
		<description><![CDATA[Let&#8217;s say you need to create a whole bunch of DHCP scopes in the Windows DHCP server, and you don&#8217;t feel like spending hours using the wizard, or manually constructing all the netsh commands you need to do it from &#8230; <a href="http://www.sethb.com/weblog/?p=1354">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Let&#8217;s say you need to create a whole bunch of DHCP scopes in the Windows DHCP server, and you don&#8217;t feel like spending hours using the wizard, or manually constructing all the netsh commands you need to do it from the command line.  I had this very problem last week, so I hacked together this script to take a CSV file with all the details needed for the scopes, and output a .cmd file that I can simply run against my DHCP server to create them all.  I&#8217;ve only included the DHCP options for router address, DNS servers, and DNS suffix, but you could certainly add more.</p>
<p><code><br />
##==============================================================================<br />
##==============================================================================<br />
## SCRIPT.........: Create-Scope.ps1<br />
## AUTHOR.........: Seth H. Bokelman<br />
## EMAIL..........: seth.bokelman@uni.edu<br />
## VERSION........: 1<br />
## DATE...........: 2012-04-030<br />
## REQUIREMENTS...: Powershell v2.0<br />
##<br />
## DESCRIPTION....: Creates a CMD file to create numerous DHCP scopes<br />
##<br />
## NOTES..........: Requires CSV file with these fields: SCOPE, MASK, NAME, DESC<br />
##                  ROUTER, STARTIP, ENDIP, DNSSUFFIX<br />
## CUSTOMIZE......:<br />
##==============================================================================<br />
## START<br />
##==============================================================================<br />
# IP address of DHCP server<br />
$DHCPServer = "127.0.0.1"</p>
<p>#IP address of DNS servers<br />
$DNS1 = "127.0.0.1"<br />
$DNS2 = "127.0.0.1"</p>
<p># Stores current date &#038; time in a sortable format<br />
$date = Get-Date -format s</p>
<p># Name of output batch file<br />
$outputfile = "C:DHCPscopes.cmd"</p>
<p># Assumes a CSV with 8 columns listed above.<br />
$ips = import-csv "C:input.csv"</p>
<p>$ips | %{<br />
add-content -Encoding ASCII -Path $outputfile -Value "netsh dhcp server $DHCPServer add scope $($_.SCOPE) $($_.MASK) `"$($_.NAME)`" `"$date - $($_.DESC)`""<br />
add-content -Encoding ASCII -Path $outputfile -Value "netsh dhcp server $dhcpserver scope $($_.SCOPE) set optionvalue 3 IPADDRESS $($_.ROUTER)"<br />
add-content -Encoding ASCII -Path $outputfile -Value "netsh dhcp server $dhcpserver scope $($_.SCOPE) set optionvalue 6 IPADDRESS $DNS1 $DNS2"<br />
add-content -Encoding ASCII -Path $outputfile -Value "netsh dhcp server $dhcpserver scope $($_.SCOPE) set optionvalue 15 STRING `"$($_.DNSSUFFIX)`""<br />
add-content -Encoding ASCII -Path $outputfile -Value "netsh dhcp server $dhcpserver scope $($_.SCOPE) add iprange $($_.STARTIP) $($_.ENDIP)"<br />
add-content -Encoding ASCII -Path $outputfile -Value "netsh dhcp server $DHCPserver scope $($_.SCOPE) set state 1"<br />
}<br />
##==============================================================================<br />
## END<br />
##==============================================================================<br />
</code></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=p21K9iWsU08:lCvCLxsq5ak:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=p21K9iWsU08:lCvCLxsq5ak:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?i=p21K9iWsU08:lCvCLxsq5ak:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=p21K9iWsU08:lCvCLxsq5ak:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sethb/dvLu/~4/p21K9iWsU08" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sethb.com/weblog/?feed=rss2&amp;p=1354</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.sethb.com/weblog/?p=1354</feedburner:origLink></item>
		<item>
		<title>Powershell script for creating DHCP reservation batch file</title>
		<link>http://feedproxy.google.com/~r/sethb/dvLu/~3/zLcFscYfFB4/</link>
		<comments>http://www.sethb.com/weblog/?p=1348#comments</comments>
		<pubDate>Fri, 20 Apr 2012 15:10:58 +0000</pubDate>
		<dc:creator>Seth</dc:creator>
				<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.sethb.com/weblog/?p=1348</guid>
		<description><![CDATA[I&#8217;ve taken a handy script from Clint McGuire that creates batch files to aid in creating large groups of DHCP reservations and modified it a little bit to also insert the date in a sortable format at the start of &#8230; <a href="http://www.sethb.com/weblog/?p=1348">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve taken a <a href="http://www.clintmcguire.com/2011/01/26/add-dhcp-reservations-with-a-script/" target="_blank">handy script from Clint McGuire</a> that creates batch files to aid in creating large groups of DHCP reservations and modified it a little bit to also insert the date in a sortable format at the start of the description field.  Posting it here in case anyone else finds it useful:</p>
<p><code><br />
##==============================================================================<br />
##==============================================================================<br />
## SCRIPT.........: Create-Reservation.ps1<br />
## AUTHOR.........: originally: Clint McGuire, modified by Seth H. Bokelman<br />
## EMAIL..........:<br />
## VERSION........: 2<br />
## DATE...........: 2012-04-020<br />
## COPYRIGHT......: 2011, Clint McGuire<br />
## LICENSE........:<br />
## REQUIREMENTS...: Powershell v2.0<br />
##<br />
## DESCRIPTION....: Creates an CMD file to add reservations to DHCP.<br />
##<br />
## NOTES..........: Requires CSV file with 4 fields, IP, MAC, NAME and DESC<br />
##<br />
## CUSTOMIZE......:<br />
##==============================================================================<br />
## START<br />
##==============================================================================<br />
# IP address of DHCP server<br />
$DHCPServer = "127.0.0.1"</p>
<p># DHCP Scope you'd like reservations created for<br />
$DHCPscope = "10.10.1.0"</p>
<p># Stores current date &#038; time in a sortable format<br />
$date = Get-Date -format s</p>
<p># Name of output batch file<br />
$outputfile = "C:DHCPreservations.cmd"</p>
<p># Assumes a CSV with four columns, MAC, IP, NAME and DESC.<br />
$ips = import-csv "C:input.csv"</p>
<p>$ips | %{<br />
add-content -Encoding ASCII -Path $outputfile -Value "netsh Dhcp Server $DHCPServer Scope $DHCPScope Add reservedip $($_.IP) $($_.MAC) `"$($_.NAME)`" `"$date - $($_.DESC)`" `"DHCP`""<br />
}<br />
##==============================================================================<br />
## END<br />
##==============================================================================<br />
</code></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=zLcFscYfFB4:vQiBb7pjGb0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=zLcFscYfFB4:vQiBb7pjGb0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?i=zLcFscYfFB4:vQiBb7pjGb0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=zLcFscYfFB4:vQiBb7pjGb0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sethb/dvLu/~4/zLcFscYfFB4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sethb.com/weblog/?feed=rss2&amp;p=1348</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.sethb.com/weblog/?p=1348</feedburner:origLink></item>
		<item>
		<title>WordPress 3.2</title>
		<link>http://feedproxy.google.com/~r/sethb/dvLu/~3/Ezo0bBr8l8k/</link>
		<comments>http://www.sethb.com/weblog/?p=1346#comments</comments>
		<pubDate>Tue, 05 Jul 2011 03:38:27 +0000</pubDate>
		<dc:creator>Seth</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.sethb.com/weblog/?p=1346</guid>
		<description><![CDATA[WordPress 3.2 is out, upgrading this site to it turned out to be problematic, as I was still using MySQL version 4, and this new version requires 5! I use GoDaddy for my hosting, and found this excellent post detailing &#8230; <a href="http://www.sethb.com/weblog/?p=1346">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>WordPress 3.2 is out, upgrading this site to it turned out to be problematic, as I was still using MySQL version 4, and this new version requires 5!  I use GoDaddy for my hosting, and <a href="http://crenk.com/upgrade-mysql-in-godaddy/">found this excellent post</a> detailing how to set up a new database and move the content over.  I can report that it worked just fine&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=Ezo0bBr8l8k:tyeRr-p93u0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=Ezo0bBr8l8k:tyeRr-p93u0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?i=Ezo0bBr8l8k:tyeRr-p93u0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=Ezo0bBr8l8k:tyeRr-p93u0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sethb/dvLu/~4/Ezo0bBr8l8k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sethb.com/weblog/?feed=rss2&amp;p=1346</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sethb.com/weblog/?p=1346</feedburner:origLink></item>
		<item>
		<title>My new PC, part III</title>
		<link>http://feedproxy.google.com/~r/sethb/dvLu/~3/iEFQKbY6fUw/</link>
		<comments>http://www.sethb.com/weblog/?p=1342#comments</comments>
		<pubDate>Sun, 03 Jul 2011 02:33:26 +0000</pubDate>
		<dc:creator>Seth</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Video Games]]></category>

		<guid isPermaLink="false">http://www.sethb.com/weblog/?p=1342</guid>
		<description><![CDATA[Since at least a couple people reading this have expressed interest in building a similar machine, I&#8217;m going to continue explaining why I chose the parts I ddi for my new machine: Intel i5-2500K CPU I typically prefer to use &#8230; <a href="http://www.sethb.com/weblog/?p=1342">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Since at least a couple people reading this have expressed interest in building a similar machine, I&#8217;m going to continue explaining why I chose the parts I ddi for my new machine:</p>
<p><a href="http://www.amazon.com/gp/product/B004EBUXHQ/ref=as_li_ss_tl?ie=UTF8&#038;tag=sethbokelman&#038;linkCode=as2&#038;camp=217145&#038;creative=399373&#038;creativeASIN=B004EBUXHQ">Intel i5-2500K CPU</a></p>
<p>I typically prefer to use AMD processors whenever possible in both my home machines and in the servers I buy at work, but with the <a href="http://www.anandtech.com/show/4083/the-sandy-bridge-review-intel-core-i7-2600k-i5-2500k-core-i3-2100-tested/20">dominance that Intel is currently displaying on the desktop</a>, choosing anything other than a &#8220;Sandy Bridge&#8221; chip didn&#8217;t seem to make a lot of sense.  I&#8217;ve always thought that AMD chips represented a very good value, and I think that continues to be true, but I was looking to get as much performance as I could reasonably afford, and had the budget for Intel.  Intel has broken their mainstream chips into the i3, i5, and i7 families.  The i3 chips are aimed at budget and entry-level machines, the i5 at mainstream machines, and the i7 at performance &#038; enthusiast computers.  Intel has also made a few parts, such as the i5-2500K and the i7-2600K that are purely aimed at enthusiasts building their own machines.  The K designator in the model number indicates chips with an unlocked clock multiplier, chips that are practically guaranteed to overclock, as that&#8217;s the only reason to care about an unlocked multiplier…  I&#8217;ve had a few people ask me why I didn&#8217;t go with the i7-2600 instead of my i5-2500K.  My reasoning was simple, the only real difference between the two is hyperthreading support on the i7.  Since I don&#8217;t have a lot of apps (especially games) that can use more than 4 CPU cores, I didn&#8217;t really feel it was worth the price premium.  Sure, the i7 is 100mhz faster than the i5, but, using the stock cooler that came with my CPU, I easily overclocked my chip to 4.3Ghz just by using the auto-overclocking feature of my motherboard.</p>
<p><a href="http://www.amazon.com/gp/product/B000GQMHBI/ref=as_li_ss_tl?ie=UTF8&#038;tag=sethbokelman&#038;linkCode=as2&#038;camp=217145&#038;creative=399369&#038;creativeASIN=B000GQMHBI">Antec Three Hundred Case</a></p>
<p>I chose the Antec case because it had pretty good reviews from real users, was from a quality manufacturer, and had a mounting space for a 2.5&#8243; hard drive.  I like that all the edges inside are rounded, so you don&#8217;t slice your hand up while working in it, and I also like that there&#8217;s a handy chamber for stashing any extra power supply cables you&#8217;re stuck with, if you&#8217;re using a non-modular power supply like I am.  The two included case fans are very quiet when run at their low setting, but they don&#8217;t interface with the motherboard to let it throttle them, you have to open the case and flip their switches to the speed you desire.  All-in-all, it&#8217;s a solid choice, and my Radeon 6870 card easily fit between the case and the 3.5&#8243; hard drive spaces, and there are room for many drives.  There is not an external 3.5&#8243; slot, however, so if you&#8217;re dead-set on having a floppy drive in your case, you&#8217;ll want to either get an adapter or look elsewhere.  Same for a card reader.</p>
<p><a href="http://www.amazon.com/gp/product/B00503EA80/ref=as_li_ss_tl?ie=UTF8&#038;tag=sethbokelman&#038;linkCode=as2&#038;camp=217145&#038;creative=399373&#038;creativeASIN=B00503EA80">ASUS LGA 1155 Intel Z68 Chipset Motherboard P8Z68-V PRO</a></p>
<p>I really waffled on what motherboard to purchase.  I had a few requirements in mind.  I really wanted 4 DIMM slots so I could expand beyond the initial 8GB of memory I purchased if I ever saw a smoking deal and wanted to go to 16GB.  I also wanted the full ATX formfactor, and not one of the smaller variants, because my case had room for it.  Sandy Bridge has three different chipsets, and the Z68 chipset is the top-of-the-line one, that incorporates the best parts of each of the two lesser chipsets.  I initially had picked out <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16813128498">this Gigabyte board</a>, but it went out of stock as I was going to order it, so I stepped up to the more expensive Asus motherboard, and I can&#8217;t say I&#8217;m disappointed.  I was able to use the one-click overclock button in the Asus software to overclock my CPU to 4.3Ghz, and installing the drivers off the included DVD was pretty painless, with a nice little menu app that let you know what you were installing.  The onboard audio works well, and this motherboard, combined with the i5-2500K, actually provides pretty decent integrated video as well.  If you don&#8217;t really plan on playing any modern 3D games on the system, you could easily get by with the HD3000 graphics chip integrated into the CPU until you find a good deal on a graphics card you want later.  The motherboard manual actually was pretty helpful too, and everything is clearly labeled and explained, unlike the cheaper boards I&#8217;ve used in the past, where you get a poorly Xeroxed folded page of paper or two..</p>
<p>Tomorrow, I&#8217;ll wrap this up talking about storage, and what the total cost of building this system was.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=iEFQKbY6fUw:mntO008N118:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=iEFQKbY6fUw:mntO008N118:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?i=iEFQKbY6fUw:mntO008N118:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=iEFQKbY6fUw:mntO008N118:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sethb/dvLu/~4/iEFQKbY6fUw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sethb.com/weblog/?feed=rss2&amp;p=1342</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.sethb.com/weblog/?p=1342</feedburner:origLink></item>
		<item>
		<title>My new PC, part II</title>
		<link>http://feedproxy.google.com/~r/sethb/dvLu/~3/ILXhxTXu1EA/</link>
		<comments>http://www.sethb.com/weblog/?p=1337#comments</comments>
		<pubDate>Sat, 02 Jul 2011 04:52:06 +0000</pubDate>
		<dc:creator>Seth</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Video Games]]></category>

		<guid isPermaLink="false">http://www.sethb.com/weblog/?p=1337</guid>
		<description><![CDATA[As I wrote yesterday, I’ve built a new gaming PC for home, and I promised to write some more today about why I chose certain components.&#160; I’ll write about two of them today, and talk a little bit about power &#8230; <a href="http://www.sethb.com/weblog/?p=1337">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>As I wrote yesterday, I’ve built a new gaming PC for home, and I promised to write some more today about why I chose certain components.&nbsp; I’ll write about two of them today, and talk a little bit about power consumption.</p>
<p><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16817371031&amp;cm_re=Antec_620W_power_supply-_-17-371-031-_-Product">Antec 620W Neo Eco Power Supply</a></p>
<p>The first component I bought was the power supply.&nbsp; Power supplies aren’t very exciting components, and the main reason I picked this one is that I saw it on a special on <a href="http://slickdeals.net/">Slickdeals</a>.&nbsp; I knew that I wanted a power supply with enough power that I could eventually run two video cards in my computer (ATI/AMD calls this Crossfire) and this power supply can do that.&nbsp; Also, I wanted something relatively energy efficient, and since this one has the 80 Plus certification, I won’t be wasting a lot of power by using it.&nbsp; Antec is generally a quality brand, and this is a quality (and heavy)&nbsp; power supply, but it isn’t a “modular” power supply, where you only attach the cables to power the specific components needed in your build.&nbsp; As a result, I have a couple extra cables in my case, and it makes for a bit of a mess when you’re wiring it all up.&nbsp; If I was doing this over again, I’d wait a bit longer for a deal to pop up on a modular supply, as it would make the finished product look much tidier.</p>
<p><a href="http://www.amazon.com/gp/product/B0047N0XBW/ref=as_li_ss_tl?ie=UTF8&amp;tag=sethbokelman&amp;linkCode=as2&amp;camp=217145&amp;creative=399369&amp;creativeASIN=B0047N0XBW">HIS Radeon 6870 Video Card (H687F1G2M)</a><img border="0" alt="" src="http://www.assoc-amazon.com/e/ir?t=&amp;l=as2&amp;o=1&amp;a=B0047N0XBW&amp;camp=217145&amp;creative=399369" width="1" height="1"/></p>
<p>I spent a lot of time agonizing over which video card to purchase.&nbsp; There are a LOT of options for video cards, at many different price points, and typically the way I choose one is by finding the fastest card at the price point I’m willing to spend.&nbsp; I read numerous benchmarks, and fortunately, <a href="http://www.anandtech.com/show/3987/amds-radeon-6870-6850-renewing-competition-in-the-midrange-market/13" target="_blank">AnandTech is currently</a> using <a href="http://www.amazon.com/gp/product/B0038TT8QM/ref=as_li_ss_tl?ie=UTF8&amp;tag=sethbokelman&amp;linkCode=as2&amp;camp=217145&amp;creative=399369&amp;creativeASIN=B0038TT8QM" target="_blank">Civilization 5</a> as one of their benchmarking games.&nbsp; I’ve been playing this game quite a bit lately, so it’s a very useful benchmark, and it was pretty clear that in the $150-ish price range, the NVidia GeForce 460 cards offered the most bang for the buck in Civ 5.&nbsp; However, I’ve also been mining some Bitcoins lately with my hardware, and for <a href="https://en.bitcoin.it/wiki/How_bitcoin_works#Bitcoin_mining" target="_blank">Bitcoin mining</a>, the Radeon cards are the only way to go.&nbsp; They’re also sort of confusing to buy, as the performance doesn’t scale cleanly with price, due to the way that the mining software uses the processing power of the card.&nbsp; After pouring over a lot of breakdowns of cost, mining performance, and energy consumption, I decided on a Radeon 6870 card as being something that would perform well in Bitcoin mining, in games, and still come in at a price I could live with.&nbsp; It’s actually faster than the GeForce 460 I mentioned above in most games, except for Civilization 5, but honestly, if you’re not interested in Bitcoin mining, go for the 460, you can often find <a href="http://slickdeals.net/permadeal/54275/newegg-evga-geforce-gtx-460-fermi-ssc-1gb-gddr5-pci-express-video-card">good deals on them listed on Slickdeals</a>, and you can save at least $25 over the cost of the Radeon 6870, which ran me $165 after rebate.&nbsp; If you want to stick with the Radeon family, the slightly-slower <a href="http://www.amazon.com/gp/product/B0047N0XBM/ref=as_li_ss_tl?ie=UTF8&#038;tag=sethbokelman&#038;linkCode=as2&#038;camp=217145&#038;creative=399369&#038;creativeASIN=B0047N0XBM">Radeon 6850</a> is also a good choice, it’s just not nearly as good at Bitcoin mining as its bigger brother.</p>
<p>&nbsp;</p>
<h1>Power Consumption</h1>
<p>So, how much power does this new rig of mine use?&nbsp; Can I actually turn a profit on my Bitcoin mining?&nbsp; I plugged in my trusty <a href="http://www.amazon.com/gp/product/B00009MDBU/ref=as_li_ss_tl?ie=UTF8&amp;tag=sethbokelman&amp;linkCode=as2&amp;camp=217145&amp;creative=399369&amp;creativeASIN=B00009MDBU" target="_blank">Kill-A-Watt</a> tonight to find out, and here are the results, not counting the monitor:</p>
<p>&nbsp;</p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="200"><strong>State</strong></td>
<td valign="top" width="200"><strong>Power consumption (watts)</strong></td>
</tr>
<tr>
<td valign="top" width="200">Off</td>
<td valign="top" width="200">0</td>
</tr>
<tr>
<td valign="top" width="200">Booting</td>
<td valign="top" width="200">100-130</td>
</tr>
<tr>
<td valign="top" width="200">Idle/Login Screen</td>
<td valign="top" width="200">70</td>
</tr>
<tr>
<td valign="top" width="200">Mining Bitcoins</td>
<td valign="top" width="200">182</td>
</tr>
<tr>
<td valign="top" width="200">Civilization V</td>
<td valign="top" width="200">196</td>
</tr>
<tr>
<td valign="top" width="200">Sleep</td>
<td valign="top" width="200">1</td>
</tr>
</tbody>
</table>
<p>So, I’m clearly not stressing my 620W power supply yet, but these numbers let us easily calculate what it’s costing me to mine Bitcoins.&nbsp; Our power costs us about 7.8 cents per kw-hr, so when mining Bitcoins, I’m using about 34 cents worth of power per day versus leaving my computer turned off.&nbsp; At my current rate, I can earn a Bitcoin about every 4 days, and they’re currently <a href="https://mtgox.com/" target="_blank">trading at over $15 each</a>, so I could make $13 every four days in profit.&nbsp; (Obviously, that heat goes somewhere, so my air conditioning will have to work slightly harder to dissipate that heat in the summer, but I&#8217;ll save natural gas in the winter, so we’ll call it a wash).</p>
<p>&nbsp;</p>
<p>Clearly, putting the computer to sleep is a good way to cut down on your power bill, but even leaving it idle isn’t going to break the bank, at a cost of only 13 cents per day.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=ILXhxTXu1EA:sVZln6VIUAI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=ILXhxTXu1EA:sVZln6VIUAI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?i=ILXhxTXu1EA:sVZln6VIUAI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=ILXhxTXu1EA:sVZln6VIUAI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sethb/dvLu/~4/ILXhxTXu1EA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sethb.com/weblog/?feed=rss2&amp;p=1337</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.sethb.com/weblog/?p=1337</feedburner:origLink></item>
		<item>
		<title>My new PC</title>
		<link>http://feedproxy.google.com/~r/sethb/dvLu/~3/MJsLa04IoM4/</link>
		<comments>http://www.sethb.com/weblog/?p=1317#comments</comments>
		<pubDate>Fri, 01 Jul 2011 02:55:42 +0000</pubDate>
		<dc:creator>Seth</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Video Games]]></category>

		<guid isPermaLink="false">http://www.sethb.com/weblog/?p=1317</guid>
		<description><![CDATA[As the refurbished Dell PC I bought about four years ago was getting to be a bit slow, I decided that I wanted to build myself a new PC this summer. I don&#8217;t game as much on my PC as &#8230; <a href="http://www.sethb.com/weblog/?p=1317">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>As the refurbished Dell PC I bought about four years ago was getting to be a bit slow, I decided that I wanted to build myself a new PC this summer.  I don&#8217;t game as much on my PC as I used to, but with my current favorite, <a href="http://www.amazon.com/gp/product/B0038TT8QM/ref=as_li_ss_tl?ie=UTF8&#038;tag=sethbokelman&#038;linkCode=as2&#038;camp=217145&#038;creative=399369&#038;creativeASIN=B0038TT8QM">Sid Meier&#8217;s Civilization V</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=B0038TT8QM&#038;camp=217145&#038;creative=399369" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, being dog slow on my Inspiron 531, and Diablo III being just around the corner, now seemed like a good time for an update.</p>
<p>My last three PCs were built by companies, Dell, iBuyPower, and Dell again.  My Dell boxes were rock solid, my iBuyPower box had some issues pop up after a couple years, but on the whole, they worked.  I&#8217;d gotten out of the habit of building my own PCs, because I&#8217;d gotten fed up with compatibility problems, flaky parts, and unstable and loud machines.  Fortunately, the parts available to the PC enthusiast market have come a long ways in the last decade, and building my new PC wasn&#8217;t hard at all.  In fact, it passed the POST on the first try, and everything has worked well, other than the optical drive I forgot to connect to the motherboard at first.  Oops.</p>
<p>So, here&#8217;s what&#8217;s inside my new PC:</p>
<li><a href="http://www.amazon.com/gp/product/B004EBUXHQ/ref=as_li_ss_tl?ie=UTF8&#038;tag=sethbokelman&#038;linkCode=as2&#038;camp=217145&#038;creative=399373&#038;creativeASIN=B004EBUXHQ">Intel Core i5-2500K Processor 3.3GHz 6 MB Cache Socket LGA1155</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=B004EBUXHQ&#038;camp=217145&#038;creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</li>
<li><a href="http://www.amazon.com/gp/product/B000GQMHBI/ref=as_li_ss_tl?ie=UTF8&#038;tag=sethbokelman&#038;linkCode=as2&#038;camp=217145&#038;creative=399369&#038;creativeASIN=B000GQMHBI">Antec Three Hundred Gaming Case</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=B000GQMHBI&#038;camp=217145&#038;creative=399369" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</li>
<li><a href="http://www.amazon.com/gp/product/B00503EA80/ref=as_li_ss_tl?ie=UTF8&#038;tag=sethbokelman&#038;linkCode=as2&#038;camp=217145&#038;creative=399373&#038;creativeASIN=B00503EA80">ASUS LGA 1155 Intel Z68 Chipset Motherboard P8Z68-V PRO</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=B00503EA80&#038;camp=217145&#038;creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></li>
<li><a href="http://www.amazon.com/gp/product/B0047N0XBW/ref=as_li_ss_tl?ie=UTF8&#038;tag=sethbokelman&#038;linkCode=as2&#038;camp=217145&#038;creative=399369&#038;creativeASIN=B0047N0XBW">HIS Radeon 6870 Video Card (H687F1G2M)</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=B0047N0XBW&#038;camp=217145&#038;creative=399369" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></li>
<li><a href="http://www.amazon.com/gp/product/B003NSBF32/ref=as_li_ss_tl?ie=UTF8&#038;tag=sethbokelman&#038;linkCode=as2&#038;camp=217145&#038;creative=399369&#038;creativeASIN=B003NSBF32">Seagate Momentus XT 500 GB Solid State Hybrid Drive ST95005620AS</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=B003NSBF32&#038;camp=217145&#038;creative=399369" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></li>
<li><a href="http://www.amazon.com/gp/product/B004DHNAGM/ref=as_li_ss_tl?ie=UTF8&#038;tag=sethbokelman&#038;linkCode=as2&#038;camp=217145&#038;creative=399373&#038;creativeASIN=B004DHNAGM">PNY Optima 8 GB (2 x 4 GB) PC3-10666 1333MHz DDR3 RAM</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=B004DHNAGM&#038;camp=217145&#038;creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></li>
<li><a href="http://www.amazon.com/gp/product/B002FJJGUO/ref=as_li_ss_tl?ie=UTF8&#038;tag=sethbokelman&#038;linkCode=as2&#038;camp=217145&#038;creative=399369&#038;creativeASIN=B002FJJGUO">Lite-On iHAP422 22x DVD±RW Drive with LightScribe</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=B002FJJGUO&#038;camp=217145&#038;creative=399369" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16817371031&#038;cm_re=Antec_620W_power_supply-_-17-371-031-_-Product">Antec 620W Neo Eco Power Supply</a></li>
<p>So that&#8217;s the parts list.  I&#8217;ll write more tomorrow about why I chose some of those components, how it turned out, and what I&#8217;d do differently, as well as break down the cost of building a gaming rig like this.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=MJsLa04IoM4:rljhFpULtuU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=MJsLa04IoM4:rljhFpULtuU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?i=MJsLa04IoM4:rljhFpULtuU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=MJsLa04IoM4:rljhFpULtuU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sethb/dvLu/~4/MJsLa04IoM4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sethb.com/weblog/?feed=rss2&amp;p=1317</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sethb.com/weblog/?p=1317</feedburner:origLink></item>
		<item>
		<title>More house shopping</title>
		<link>http://feedproxy.google.com/~r/sethb/dvLu/~3/roksBvnPacs/</link>
		<comments>http://www.sethb.com/weblog/?p=1314#comments</comments>
		<pubDate>Mon, 20 Jun 2011 16:35:55 +0000</pubDate>
		<dc:creator>Seth</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.sethb.com/weblog/?p=1314</guid>
		<description><![CDATA[We looked at several more houses this weekend: 122 Damascus &#8211; This house is mechanically excellent, everything is in great shape, but it doesn&#8217;t really excite us, there&#8217;s no place for a big screen TV, unless we either do it &#8230; <a href="http://www.sethb.com/weblog/?p=1314">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>We looked at several more houses this weekend:</p>
<li /><a href="http://www.wcfbor.com/listing/172133-122-damascus-cedar-falls-ia-50613/">122 Damascus</a> &#8211; This house is mechanically excellent, everything is in great shape, but it doesn&#8217;t really excite us, there&#8217;s no place for a big screen TV, unless we either do it in the &#8220;formal&#8221; living room area, or finish the basement, which may or may not stay dry&#8230;
<li /><a href="http://www.wcfbor.com/listing/172419-1458-laurel-circle-cedar-falls-ia-50613/">1458 Laurel Circle</a> &#8211; This house is huge, but very dated inside, lots of space, which we love, but that kitchen has to go, and it&#8217;s already so far up our price list that adding a kitchen remodel on top of it would probably be financially unwise&#8230;
<li /><a href="http://www.wcfbor.com/listing/172520-3414-tucson-cedar-falls-ia-50613/">3414 Tucson</a> &#8211; This house is just 2 blocks from our current home, and we really like the neighborhood, but suffers from being the most expensive house on the street, as it&#8217;s a newer house in an older neighborhood.  While it is very nice inside, it&#8217;s also rather pricey for the square footage, as it&#8217;s smaller than we would like.  The yard is very nice, though.
<li /><a href="http://www.wcfbor.com/listing/172513-1122-parkway-cedar-falls-ia-50613/">1122 Parkway</a> &#8211; This house is across the street from a really dumpy duplex, though it is in a very quiet dead-end road area.  This house is huge, but needs a lot of finish work redone, as it&#8217;s either ugly, or poorly implemented. Also, all that &#8220;wood&#8221; flooring in the photos is really laminate.
<li /><a href="http://www.wcfbor.com/listing/172431-2608-abraham-dr-cedar-falls-ia-50613/">2608 Abraham</a> &#8211; This house is interesting.  It&#8217;s only a three bedroom, and we&#8217;d really like four, but there is at least office space in the basement, and a room that could maybe be converted to a fourth bedroom if we ever needed one.  There&#8217;s a hot tub, but it&#8217;s really old looking, and the master bathroom is the only one on the main level, and also opens to the rest of the house, so you can&#8217;t leave it messy.  Also, it has a walk-in tub for old people, and I hope to be at least 40 years away from needing that&#8230;<br />
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=roksBvnPacs:zPEjV_4X1_s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=roksBvnPacs:zPEjV_4X1_s:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?i=roksBvnPacs:zPEjV_4X1_s:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=roksBvnPacs:zPEjV_4X1_s:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sethb/dvLu/~4/roksBvnPacs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sethb.com/weblog/?feed=rss2&amp;p=1314</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.sethb.com/weblog/?p=1314</feedburner:origLink></item>
		<item>
		<title>Core Flow network blog</title>
		<link>http://feedproxy.google.com/~r/sethb/dvLu/~3/vfhFHNmAq6o/</link>
		<comments>http://www.sethb.com/weblog/?p=1310#comments</comments>
		<pubDate>Mon, 20 Jun 2011 14:16:21 +0000</pubDate>
		<dc:creator>Seth</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wireless Networking]]></category>

		<guid isPermaLink="false">http://www.sethb.com/weblog/?p=1310</guid>
		<description><![CDATA[My boss, Aaron Howard, has started a new blog about networking, called Core Flow, which will focus on the implementation of the new Enterasys K-Series switch that will service students living in our residence halls starting this fall, as well &#8230; <a href="http://www.sethb.com/weblog/?p=1310">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>My boss, Aaron Howard, has started a new blog about networking, called <a href="http://coreflow.org/">Core Flow</a>, which will focus on the implementation of the new Enterasys K-Series switch that will service students living in our residence halls starting this fall, as well as other networking, such as the Juniper/Trapeze wireless gear we use on campus.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=vfhFHNmAq6o:Z2Mih1XOQSc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=vfhFHNmAq6o:Z2Mih1XOQSc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?i=vfhFHNmAq6o:Z2Mih1XOQSc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=vfhFHNmAq6o:Z2Mih1XOQSc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sethb/dvLu/~4/vfhFHNmAq6o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sethb.com/weblog/?feed=rss2&amp;p=1310</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sethb.com/weblog/?p=1310</feedburner:origLink></item>
		<item>
		<title>Feeding Google</title>
		<link>http://feedproxy.google.com/~r/sethb/dvLu/~3/dBC8AdbRZtQ/</link>
		<comments>http://www.sethb.com/weblog/?p=1306#comments</comments>
		<pubDate>Fri, 01 Apr 2011 22:26:06 +0000</pubDate>
		<dc:creator>Seth</dc:creator>
				<category><![CDATA[Television]]></category>

		<guid isPermaLink="false">http://www.sethb.com/weblog/?p=1306</guid>
		<description><![CDATA[My co-worker, Chris Conklin, has moved his weblog to WordPress, hosted in my account. This link is to help Google realize it soon&#8230;]]></description>
				<content:encoded><![CDATA[<p>My co-worker, Chris Conklin, has moved <a href="http://blog.chrisconklin.com/">his weblog</a> to WordPress, hosted in my account.  This link is to help Google realize it soon&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=dBC8AdbRZtQ:VY-d8XeOW10:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=dBC8AdbRZtQ:VY-d8XeOW10:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?i=dBC8AdbRZtQ:VY-d8XeOW10:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=dBC8AdbRZtQ:VY-d8XeOW10:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sethb/dvLu/~4/dBC8AdbRZtQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sethb.com/weblog/?feed=rss2&amp;p=1306</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sethb.com/weblog/?p=1306</feedburner:origLink></item>
		<item>
		<title>Resources for new Kindle owners</title>
		<link>http://feedproxy.google.com/~r/sethb/dvLu/~3/lGb4isPf2q0/</link>
		<comments>http://www.sethb.com/weblog/?p=1297#comments</comments>
		<pubDate>Sun, 06 Feb 2011 02:39:52 +0000</pubDate>
		<dc:creator>Seth</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.sethb.com/weblog/?p=1297</guid>
		<description><![CDATA[As I know a lot of people have received new Amazon Kindles lately for the holidays, and have probably fallen in love with them as much as I have over the last six months of owning one, I thought I&#8217;d &#8230; <a href="http://www.sethb.com/weblog/?p=1297">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>As I know a lot of people have received new <a href="http://www.amazon.com/exec/obidos/ASIN/B002Y27P3M/ref=nosim/sethbokelman">Amazon Kindles</a> lately for the holidays, and have probably fallen in love with them as much as I have over the last six months of owning one, I thought I&#8217;d compile a few tips about alternative ways of getting content on them.</p>
<p>Certainly, you can buy your eBooks all from Amazon, though there can be advantages from getting them elsewhere too, especially if it saves you money!</p>
<p>One of the ways you can save a few bucks is by using the excellent free software package called <a href="http://calibre-ebook.com/">Calibre</a> to load content you already own on your Kindle.  Amazon has a nice service where they will convert PDF and Word documents, among other formats, and send them to your Kindle, but they charge by the megabyte for the data they&#8217;re converting for you.  If you use Calibre, and just plug your USB cable into your computer, you can upload eBooks and other content for free, and cut out the middle an.  Calibre is available for both Mac and PC, and it&#8217;s a great app!</p>
<p>Another great source for eBooks is Baen, the science fiction publisher.  If Sci-Fi isn&#8217;t your cup of tea, then this probably won&#8217;t interest you, but the <a href="http://www.baen.com/library/'">Baen Free Library</a> has an ever-changing collection of totally free and legal eBooks for you to download for your Kindle.  They started this program at the urging of some of their authors, to help generate interest in paper sales of catalog titles, as well as in the hopes that if you read one book by the author for free and love it, you&#8217;ll purchase subsequent books.</p>
<p>Baen also sells many other eBooks via their <a href="http://www.webscription.net/">WebScriptions</a> site, including many titles that simply aren&#8217;t available via Amazon for the Kindle, and they&#8217;re usually at a much lower price.  Another nice feature of the Baen books is that they don&#8217;t use any DRM on their eBooks, so you&#8217;ll always be able to read them, move them to another device, or loan them out to a friend.</p>
<p>Friends are another excellent source of Kindle content, as many titles can now be lent to a friend via Amazon&#8217;s web page.  You just need to enter a valid email address to send the eBook code to, and then that Kindle owner can have the book installed on their Kindle.  It&#8217;s important to note, however, that not all Kindle books on Amazon can be lent, as it&#8217;s up to the publisher to enable that feature.  Also, a given book you own can only be lent once, and only for a period of two weeks!  Make sure the person you&#8217;re lending the book to will have time to read it, and REALLY wants the book, before you use up your one lending period on them.</p>
<p>This idea has also been extended to the <a href="http://www.kindlelendingclub.com/">Kindle Lending Club</a> online, where users can swap their &#8220;lends&#8221; with each other, giving you access to far more titles than you could get from your friends.</p>
<p>I&#8217;m hopeful in the future that libraries will implement a way to check out eBooks on the Kindle too.  They have the ability to do it for some other platforms, and while the DRM can be removed to let the content work on a Kindle, it&#8217;s something you need a computer geek to set up.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=lGb4isPf2q0:HapsGe-V8qc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=lGb4isPf2q0:HapsGe-V8qc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?i=lGb4isPf2q0:HapsGe-V8qc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sethb/dvLu?a=lGb4isPf2q0:HapsGe-V8qc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sethb/dvLu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sethb/dvLu/~4/lGb4isPf2q0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sethb.com/weblog/?feed=rss2&amp;p=1297</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sethb.com/weblog/?p=1297</feedburner:origLink></item>
	</channel>
</rss>
