<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace Site Server v5.11.81 (http://www.squarespace.com/) on Fri, 01 Jun 2012 10:20:42 GMT--><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>Blog</title><link>http://www.sigmyers.com/blog/</link><description></description><lastBuildDate>Tue, 01 Nov 2011 06:49:34 +0000</lastBuildDate><copyright></copyright><language>en-US</language><generator>Squarespace Site Server v5.11.81 (http://www.squarespace.com/)</generator><item><title>Minifying Life + Backups</title><category>Personal</category><category>minify life</category><category>personal belongings</category><category>ssubscription economy</category><dc:creator>Sig Myers</dc:creator><pubDate>Tue, 01 Nov 2011 06:15:56 +0000</pubDate><link>http://www.sigmyers.com/blog/2011/10/31/minifying-life-backups.html</link><guid isPermaLink="false">414335:4546539:13548676</guid><description><![CDATA[Ya know, I was looking around today and starting to realize the fruits of some of my labours over the past couple of months.
]]></description><wfw:commentRss>http://www.sigmyers.com/blog/rss-comments-entry-13548676.xml</wfw:commentRss></item><item><title>Some Cool Coding Tips</title><category>.NET</category><category>App Development</category><category>C#</category><category>C# 4.0</category><category>Razor</category><category>Technology</category><category>app development</category><category>programming</category><category>programming tips</category><dc:creator>Sig Myers</dc:creator><pubDate>Fri, 21 Oct 2011 04:33:53 +0000</pubDate><link>http://www.sigmyers.com/blog/2011/10/20/some-cool-coding-tips.html</link><guid isPermaLink="false">414335:4546539:13400004</guid><description><![CDATA[<p>I was doing some nighttime programming for fun, and came across a bit of code I had to look up (i.e. search on the web). &nbsp;In C#, I was familiar with ternary operators. &nbsp;I love using them when appropriate. &nbsp;It turns 3 ~ 5 lines of code into one pretty, simple statement.</p>
<p>When I came across a coalescing operator, my head exploded (ok, that may be a bit over-the-top&#8230;).</p>
<p>Coalescing operators have a fantastic usage (particularly in C#) with nullable objects.</p>
<p>Example time!</p>
<p>Lets say we&#8217;re posting data to a form. &nbsp;The form contains a name (which is an optional field) and birth year (another nullable field).</p>
<p>Assuming we have a &#8220;Person&#8221; object, that takes a string and integer for a birthdate, we could code that up as follows to handle the null-case of those objects being passed in.</p>
<p>&nbsp;</p>
<p><span style="font-size: 80%;">public void doThis(String? name, int? birthyear)</span></p>
<p><span style="font-size: 80%;">{</span></p>
<p><span style="font-size: 80%;">Person p = &nbsp;new Person();</span></p>
<p><span style="font-size: 80%;">&nbsp; // option #1 - if statements</span></p>
<p><span style="font-size: 80%;">&nbsp; if(name!=null)</span></p>
<p><span style="font-size: 80%;">p.name=name;</span></p>
<p><span style="font-size: 80%;">&nbsp; else&nbsp;</span></p>
<p><span style="font-size: 80%;">&nbsp; &nbsp; &nbsp; &nbsp; p.name = &#8220;Bob&#8221;;</span></p>
<p><span style="font-size: 80%;">&nbsp; if(birthyear != null)</span></p>
<p><span style="font-size: 80%;">&nbsp; &nbsp; &nbsp; &nbsp; p.birthyear = birthyear;</span></p>
<p><span style="font-size: 80%;">&nbsp; else&nbsp;</span></p>
<p><span style="font-size: 80%;">&nbsp; &nbsp; &nbsp; &nbsp; p.birthyear = 1902;</span></p>
<p><span style="font-size: 80%;">&nbsp; // option #2 &#8212; ternary operators</span></p>
<p><span style="font-size: 80%;">&nbsp; p.name = name!=null ? name : &#8220;Bob&#8221;;</span></p>
<p><span style="font-size: 80%;">&nbsp; p.birthyear = birthyear != null ? birthyear : 1902;</span></p>
<p><span style="font-size: 80%;">&nbsp;</span></p>
<p><span style="font-size: 80%;">&nbsp; //option #3 &#8212; coalescing operator</span></p>
<p><span style="font-size: 80%;">&nbsp; p.name = name ?? &#8220;Bob&#8221;;</span></p>
<p><span style="font-size: 80%;">&nbsp; p.birthyear = birthyear ?? 1902;</span></p>
<p><span style="font-size: 80%;">}</span></p>
<p>&nbsp;</p>
<p>How about that for a super quick example? I&#8217;m not sure how useful this is, but it seemed like a cool little tidbit of information to come across that I was previously unaware of. &nbsp;Maybe it&#8217;s time I start reading up on the changes between C# 3.0, 3.5 and 4.0. &nbsp; If I start doing that, I&#8217;ll need to look in the differences between Java 6 and 7 (I have 5 and 6 down pretty well), and don&#8217;t get me started on PHP 4 and 5&#8230;</p>
<p>Ah well, that&#8217;s all. &nbsp;Hope someone on the interwebs finds this useful!</p>
]]></description><wfw:commentRss>http://www.sigmyers.com/blog/rss-comments-entry-13400004.xml</wfw:commentRss></item><item><title>$100 in 100 days. Making Money on Android.</title><category>App Development</category><category>Technology</category><category>advertising models</category><category>android</category><category>app development</category><category>monetization</category><dc:creator>Sig Myers</dc:creator><pubDate>Sun, 16 Oct 2011 21:12:59 +0000</pubDate><link>http://www.sigmyers.com/blog/2011/10/16/100-in-100-days-making-money-on-android.html</link><guid isPermaLink="false">414335:4546539:13301079</guid><description><![CDATA[<p>This is the first in what I hope to be a series of three blog posts discussing monetization on Android.&nbsp; I recently attended O&#8217;Reilly&#8217;s Android Open Conference held here in downtown San Francisco.&nbsp; It was a great event with plenty of fantastic speakers.&nbsp; One speaker presented 50 business models in 20 minutes.&nbsp; While the talk was great, I thought I&#8217;d try and bring about a slightly different focus on app developers monetizing their hobby apps.</p>
<p>I&#8217;ve been curious about making money on the Android marketplace for a while, and have read a few other blogs and articles about such information.&nbsp; I&#8217;m inclined to start fresh.</p>
<p>The question I&#8217;m setting out to answer is: what does it take to make $100 by making an Android application.&nbsp; I plan to launch three different types of applications.&nbsp; Each of these applications will be in a distinct category within the marketplace.&nbsp; Each app will also be infused with as much analytical information as I can possibly gather.</p>
<p>The soul purpose of the analytics is so that I can share some pretty charts and graphs about what my apps users are doing.&nbsp; What types of users respond to advertisements, what types of users are willing to pay an up-front fee for apps, and what in-app purchase mechanisms work well for an audience, etc.</p>
<p>If this were a scientific test, I would do three different apps in three different categories and do a comparison based on that information.&nbsp; Due to the fact I&#8217;m only composed of two hands and one brain currently, I&#8217;ll be a little bit more limited than a team of developers looking to answer my rather basic questions (for only $100, too).&nbsp;</p>
<p>My hypothesis is that in-app purchases will be more difficult (i.e. not as fruitful) on the Android Marketplace than the Amazon Marketplace.&nbsp; Further, I&nbsp; think advertisments inside of apps will be almost useless in terms of monetization.&nbsp; Lastly, I think the freemium / premium app versions will be the best bet.&nbsp; Give a user a decent ad-enabled free app, and remind them that they would really like to drop a buck or two for the ad-free version at a later date.</p>
<p>I started some small development on these apps this weekend, and after I get some UI help from a friend, will launch them with Google and Flurry Analytics.&nbsp; From there, I&#8217;ll wrap the apps up, launch them in the marketplace, and report back accordingly.</p>
]]></description><wfw:commentRss>http://www.sigmyers.com/blog/rss-comments-entry-13301079.xml</wfw:commentRss></item><item><title>Moving from paperback to eBooks... Is this the future?</title><category>Personal</category><category>Technology</category><category>ebooks</category><category>getting rid of junk</category><category>minifying life</category><category>paperback</category><category>subscription economy</category><category>switching to ebooks</category><dc:creator>Sig Myers</dc:creator><pubDate>Sat, 15 Oct 2011 21:10:52 +0000</pubDate><link>http://www.sigmyers.com/blog/2011/10/15/moving-from-paperback-to-ebooks-is-this-the-future.html</link><guid isPermaLink="false">414335:4546539:13286199</guid><description><![CDATA[Sometimes it&#8217;s best to get rid of the old and bring in the new.  It is my hope that the new will help me keep my life organized and minified as much as possible.  This will is part one in a three part series of removing extra clutter from ones life.  This version focuses on switching to eBooks and understanding where the economy is moving (which is seemingly towards subscriptions).
]]></description><wfw:commentRss>http://www.sigmyers.com/blog/rss-comments-entry-13286199.xml</wfw:commentRss></item><item><title>Cattle Prod + Work Environment</title><category>Personal</category><category>amazon review</category><category>cattle prod</category><category>office humor</category><dc:creator>Sig Myers</dc:creator><pubDate>Thu, 06 Oct 2011 19:17:03 +0000</pubDate><link>http://www.sigmyers.com/blog/2011/10/6/cattle-prod-work-environment.html</link><guid isPermaLink="false">414335:4546539:13104533</guid><description><![CDATA[<p>Looks like a coworker of mine decided to evaluate the newest addition to his desk.</p>
<p>As long as my coworker does a good job of hiding it from HR, he&#8217;s set.</p>
<p><a href="http://www.amazon.com/review/R2IHH2PCPIMCIV/ref=cm_cr_pr_cmt/184-9326340-0664415?ie=UTF8&amp;ASIN=B000LF652Q&amp;nodeID=&amp;tag=&amp;">Check out the Amazon Cattle Prod Review</a></p>
]]></description><wfw:commentRss>http://www.sigmyers.com/blog/rss-comments-entry-13104533.xml</wfw:commentRss></item><item><title>Updated website + more blogs</title><category>Personal</category><category>Technology</category><category>android</category><category>android conference</category><category>blogs</category><category>family</category><category>iOS</category><category>resolutions</category><category>sendme</category><category>technology</category><dc:creator>Sig Myers</dc:creator><pubDate>Wed, 05 Oct 2011 03:58:54 +0000</pubDate><link>http://www.sigmyers.com/blog/2011/10/4/updated-website-more-blogs.html</link><guid isPermaLink="false">414335:4546539:13083099</guid><description><![CDATA[I&#8217;ve cleaned up my act.  It&#8217;s time that I regularly blogged about everything going on in the (technology) world that I can gripe about.
]]></description><wfw:commentRss>http://www.sigmyers.com/blog/rss-comments-entry-13083099.xml</wfw:commentRss></item><item><title>Selling Smartphones</title><category>Personal</category><category>Technology</category><category>sales</category><category>smartphones</category><category>technology</category><dc:creator>Sig Myers</dc:creator><pubDate>Tue, 08 Sep 2009 03:00:00 +0000</pubDate><link>http://www.sigmyers.com/blog/2009/9/7/selling-smartphones.html</link><guid isPermaLink="false">414335:4546539:13082541</guid><description><![CDATA[<p>One of the biggest problems (in my opinion) with cell-phone carriers  these days is the inability to really try a cell-phone before you  purchase. &nbsp;When a customer walks into Best Buy, they are expecting to  touch, look at and play with the devices inside the store. &nbsp;Best Buy  stores (and other similar retailers) generally have a section of  technology products that a customer can demo&#8212;be it a laptop, desktop or  other techno-widget-device, however when it comes to cell phones  everybody is lacking it seems.</p>
<p>When a customer wants to consider purchasing a product, the easiest  way many sales veterans might advise would be to get the product into  the customers hands. &nbsp;At stores like Best Buy, Costco, and many cell  phone retailers this is where they go insanely wrong. &nbsp;They get a  &#8220;model&#8221; of the product into the customers hands. &nbsp;It&#8217;s a plastic rip-off  without any functionality. &nbsp;In the age of touch-screen-enabled devices  and the mobile-app economy, the former ideology of placing a cheap  plastic prototype on display for customers to see is a bit absurd. &nbsp;How  many people would actually walk in and say &#8220;Man, this plastic container  fits my hand perfectly, so the phone&#8217;s operating system, applications,  screen, etc., must all be great in the real thing.&#8221; &nbsp;Nobody.</p>
<p>I&#8217;d propose fixing this problem by having the likes of LG, Samsung,  Apple, Palm (HP) and all the other carriers get a device to put on  display that actually works. &nbsp;Maybe lock it down or disallow the  addition of apps in the various models, but the days of a plastic model  being the means for making a decision on a new cell phone are long gone.  &nbsp;With<a title="2010 Smartphone sales article by ComputerWorld" href="http://www.computerworld.com/s/article/9183840/IDC_boosts_2010_smartphone_shipment_projections_by_10_" target="_blank"> increased projections for cell-phone sales this year</a>, it might be time to put some actual sales tactics to use for some of these stores.</p>
]]></description><wfw:commentRss>http://www.sigmyers.com/blog/rss-comments-entry-13082541.xml</wfw:commentRss></item><item><title>The W3C</title><category>Personal</category><category>Technology</category><category>css</category><category>html</category><category>standardization</category><category>w3c</category><dc:creator>Sig Myers</dc:creator><pubDate>Wed, 19 Aug 2009 03:00:00 +0000</pubDate><link>http://www.sigmyers.com/blog/2009/8/18/the-w3c.html</link><guid isPermaLink="false">414335:4546539:13082530</guid><description><![CDATA[<div class="article-content">
<div class="article-content">
<p>I&#8217;ve been reading article after article, and listening to podcast  after podcast about how the World Wide Web Consortium&#8217;s CSS and XHTML  standards are basically moot in the ongoing browser wars between IE, and  Firefox, and Opera, and Safari, and &#8230;</p>
<p>I thought I&#8217;d throw in my two cents.  I think standards are  fantastic, and love coding to them, when I get the chance.  Of course,  I&#8217;m not claiming complete compliance, but lets face it&#8212;there are  standards for a reason.  We hope that someday every browser abides by  the standards so that we can stop coding two or three additional CSS  files just to get the look and feel down across all the browsers.</p>
<p>I&#8217;m not sure why it is that it&#8217;s so hard for all these groups to  conform to a standard, sorry&#8212;THE standard.  It seems like it will be an  ongoing battle and everyone is merely in the midst of rooting for their  favorite player.</p>
<p>Who knows, maybe next week Microsoft will release a patch that  standardizes everything.  That would single-handedly save  out-of-employment programmers.  How, you ask?  Lets see, everyone starts  upgrading, those that upgrade will realize that their websites are all  goofy now.  What are they gonna do?  They&#8217;re gonna hire a consultant to  fix all the goofy little problems.  You know what&#8212;that&#8217;s a LOT of  problems that need-a-fixin&#8217;.  Okay, I&#8217;ll admit, it probably wouldn&#8217;t be  THAT big a deal, but who knows, maybe it would generate some business  for all of us pawns in the web and software worlds who are looking to  climb up the chain.</p>
<p>Or maybe we should look for a different rope to climb up.  Ah well, who knows.</p>
</div>
<br />
<p>I&#8217;ll first mention why I do not care for Comcast&#8217;s HD-DVR.  I don&#8217;t  like monthly bills&#8212;and when a monthly bill is absolutely necessary, I  want it to be as low a fixed cost as possible.  I pay $40/month for  internet via Comcast, which is quite speedy, and when I had the HD-DVR,  that cost went to $90.00 for the first six months.  Six months later, I  saw my bill jump to $120.00, and being a person that doesn&#8217;t watch a  massive amount of TV, I called and cancelled.  The actual DVR lacked  many capabilities, and was annoyingly complex.  I was paying for  HD-service and DVR capabilities, yet when searching for programs 1/2 the  screen is taken up with the Comcast logo and new movies available for  purchase.  I&#8217;d prefer to see a full-page listing of as many channels and  programs as possible, but the capability to remove advertising is  nonexistent.  Further, I don&#8217;t want to manually delete every show just  to free up space on my box.  I&#8217;m slow at watching programs, and 2 weeks  is often not enough time to get me caught up on my shows, and so I get  far behind on my DVR.  It fills up, and in order to free up  space, I  have to go through and punch delete (a 3-step, slow process) on every  show I decide I can do without seeing.</p>
<p>TiVo HD and Series-2 DVR&#8217;s have the same user interface, but their  hardware specs differ.  One can do HD, the other cannot.  One has tons  of storage space, the other has 80 gigabytes (which is still alot!).   One costs $300.00, the other you can snag used for $30-40 bucks on eBay.   After toying with the HD version, I decided on the HD box because of  my interest in watching HD content. &nbsp;There is one caveat with my  choice&#8212;I had to get a cable card from my local cable company. &nbsp;When I  inquired about the little cards, I had some interesting responses from  Comcast&#8212;I told them it was going into a TiVo, and that I wanted the  &#8220;M-Series&#8221;&nbsp;card (M-Series = Multi Stream, I believe). &nbsp;An &#8220;M-Series&#8221;  card allows a user to watch one channel and record another at the same  time. &nbsp;The &#8220;S-Series&#8221; cards (or Single-Stream) only allow for one  channel at a time. &nbsp;The difficult part of this situation was that, in  requesting the &#8220;M-Series&#8221; card, the phone support tech at Comcast was  convinced that I&#8217;d have to pay to have a tech come out and do an  &#8220;advanced install.&#8221; &nbsp;I asked if I could just pick up the card and put it  in myself (it really <em>can&#8217;t</em>&nbsp;be <em>that </em>hard, can it?),  and was told that it was out of the question. &nbsp;I caved and paid the  one-time set-up fee for the tech to come out.</p>
<p>When the Comcast technician arrived, he had an M-series card in hand,  popped it into the back of the TiVo, made a phone call to send an  &#8220;Init&#8221; request to the mothership, and left. &nbsp;I know what you&#8217;re  thinking, and I blame Comcast (not the technician) for believing that I  was too inept to plug in a card and make a phone call. &nbsp;After reading  the forums online, I found out that maybe it was best to have the  technician come after all because there are users having great  difficulties with CableCards in some cases. &nbsp;Ah well, at least I got my  HD service and TiVo up and running in under a week.</p>
<p>Well, there you have one more rant.  Eventually I&#8217;ll find time to go  back and proof read one of these, but that day is certainly not today.</p>
</div>
]]></description><wfw:commentRss>http://www.sigmyers.com/blog/rss-comments-entry-13082530.xml</wfw:commentRss></item><item><title>Cable Company DVR vs. TiVo</title><category>DVR</category><category>HCI</category><category>Personal</category><category>Technology</category><category>Tivo</category><category>comcast</category><category>technology</category><category>technology questions</category><dc:creator>Sig Myers</dc:creator><pubDate>Thu, 13 Aug 2009 02:58:00 +0000</pubDate><link>http://www.sigmyers.com/blog/2009/8/12/cable-company-dvr-vs-tivo.html</link><guid isPermaLink="false">414335:4546539:13082492</guid><description><![CDATA[<div class="article-content">
<p>I&#8217;ve got some positive news&#8212;my television picks up over-the-air  content quite well, so I now have about 25 channels (everything from G4,  HGTV and Animal Planet to local programming).  I was thinking it might  be time to consider getting a TiVo DVR.  Then I started thinking it  might be worthwhile to compare the features of TiVo to that of Comcast&#8217;s  DVR.</p>
<p>I believe in this day and age, everything should be about HCI&#8212;Human  Computer Interaction.  If you don&#8217;t have an awesome, clean, intuitive  user-interface, your product and user-base will eventually disappear.  I  firmly believe that Comcast&#8217;s DVR&#8217;s, if they weren&#8217;t subsidized by the  cost of cable, would all be headed to the landfills because no one would  want to pay for such a clunky device (even though most people do, they  just don&#8217;t notice it popping up on their cable bills).</p>
<p>I&#8217;ve played with three DVR devices: Comcast&#8217;s HD-DVR, TiVo&#8217;s Series  2-DVR, and TiVo&#8217;s HD-DVR.  There are pros and cons to all of them, and  it&#8217;s notable that all devices have dual-tuner capabilities, but one  device has a warm spot in my heart&#8230;</p>
<p>I&#8217;ll first mention why I do not care for Comcast&#8217;s HD-DVR.  I don&#8217;t  like monthly bills&#8212;and when a monthly bill is absolutely necessary, I  want it to be as low a fixed cost as possible.  I pay $40/month for  internet via Comcast, which is quite speedy, and when I had the HD-DVR,  that cost went to $90.00 for the first six months.  Six months later, I  saw my bill jump to $120.00, and being a person that doesn&#8217;t watch a  massive amount of TV, I called and cancelled.  The actual DVR lacked  many capabilities, and was annoyingly complex.  I was paying for  HD-service and DVR capabilities, yet when searching for programs 1/2 the  screen is taken up with the Comcast logo and new movies available for  purchase.  I&#8217;d prefer to see a full-page listing of as many channels and  programs as possible, but the capability to remove advertising is  nonexistent.  Further, I don&#8217;t want to manually delete every show just  to free up space on my box.  I&#8217;m slow at watching programs, and 2 weeks  is often not enough time to get me caught up on my shows, and so I get  far behind on my DVR.  It fills up, and in order to free up  space, I  have to go through and punch delete (a 3-step, slow process) on every  show I decide I can do without seeing.</p>
<p>TiVo HD and Series-2 DVR&#8217;s have the same user interface, but their  hardware specs differ.  One can do HD, the other cannot.  One has tons  of storage space, the other has 80 gigabytes (which is still alot!).   One costs $300.00, the other you can snag used for $30-40 bucks on eBay.   After toying with the HD version, I decided on the HD box because of  my interest in watching HD content. &nbsp;There is one caveat with my  choice&#8212;I had to get a cable card from my local cable company. &nbsp;When I  inquired about the little cards, I had some interesting responses from  Comcast&#8212;I told them it was going into a TiVo, and that I wanted the  &#8220;M-Series&#8221;&nbsp;card (M-Series = Multi Stream, I believe). &nbsp;An &#8220;M-Series&#8221;  card allows a user to watch one channel and record another at the same  time. &nbsp;The &#8220;S-Series&#8221; cards (or Single-Stream) only allow for one  channel at a time. &nbsp;The difficult part of this situation was that, in  requesting the &#8220;M-Series&#8221; card, the phone support tech at Comcast was  convinced that I&#8217;d have to pay to have a tech come out and do an  &#8220;advanced install.&#8221; &nbsp;I asked if I could just pick up the card and put it  in myself (it really <em>can&#8217;t</em>&nbsp;be <em>that </em>hard, can it?),  and was told that it was out of the question. &nbsp;I caved and paid the  one-time set-up fee for the tech to come out.</p>
<p>When the Comcast technician arrived, he had an M-series card in hand,  popped it into the back of the TiVo, made a phone call to send an  &#8220;Init&#8221; request to the mothership, and left. &nbsp;I know what you&#8217;re  thinking, and I blame Comcast (not the technician) for believing that I  was too inept to plug in a card and make a phone call. &nbsp;After reading  the forums online, I found out that maybe it was best to have the  technician come after all because there are users having great  difficulties with CableCards in some cases. &nbsp;Ah well, at least I got my  HD service and TiVo up and running in under a week.</p>
<p>Well, there you have one more rant.  Eventually I&#8217;ll find time to go  back and proof read one of these, but that day is certainly not today.</p>
</div>
]]></description><wfw:commentRss>http://www.sigmyers.com/blog/rss-comments-entry-13082492.xml</wfw:commentRss></item><item><title>Cable Bills!</title><category>Personal</category><category>Technology</category><category>cable</category><category>comcast</category><category>internet TV</category><category>streaming TV</category><category>technology</category><dc:creator>Sig Myers</dc:creator><pubDate>Fri, 07 Aug 2009 02:56:00 +0000</pubDate><link>http://www.sigmyers.com/blog/2009/8/6/cable-bills.html</link><guid isPermaLink="false">414335:4546539:13082488</guid><description><![CDATA[<p>Yesterday I got a bit frustrated, yet again, with the massive cable  bill from Comcast.  I get my Internet and TV from them, and realized  that I only really need one of their services&#8212;high-speed Internet.   When looking at the numbers, I realized that I could get the fastest  Internet package for around $60.00.  The package I had yesterday  included a slower connection (12Mbps) and digital cable.  Not only is  their remote control utterly annoying to use (the buttons have a slow  response time, and there are just too many of em&#8217;!), but everything  seems so clunky to me.  I needed a cable box, remote, wires galore,  cable modem, more wires, a router, and a few more wires.  And I had to  pay more money.</p>
<p>The problem I was running into was that only one outlet was of enough  quality to support high-speed internet&#8212;the same one the digital cable  box was plugged into.  That creates quite a bit of congestion in terms  of wires mixing around in the TV stand.  When I realized I was spending  $100/month on cable TV and Internet, more than all my other bills  combined (yes! you read that correct!), I decided it was worth it to,  yet again, live without the TV.  I did this for about 3 months a year  ago.  The difference was, at that point in time, I didn&#8217;t have a TV,  just a computer.</p>
<p>Here&#8217;s what I&#8217;m thinking, I&#8217;ll save approximately $40/month by  cancelling cable and snagging the fasters Internet connection speed.   That $40 will go to a long way&#8212;I can go to a movie once a week every  month, get popcorn and a drink!  Or, I suppose I could put that money  towards my daily cup of coffee&#8212;that&#8217;s three weeks of coffee paid for!   Maybe I could put it towards my savings account, or invest it in  something cool.  I could use the $40/month to get a Sprint MiFi plan and  then have the internet with me <em>everywhere </em>I go.  I&#8217;m not sure  what exactely I&#8217;ll do with the spare change&#8212;granted it&#8217;s not a bunch,  but $40 x 12 months = $480.  If I go without cable for a year, I can buy  myself a pretty awesome gizmo next summer.</p>
<p>So, you may be thinking, what are you <em>actually</em> gonna do with  the money???  I&#8217;ve decided my time is more well-spent reading.  But I  tend to go crosseyed if I read for a long amount of time, so I&#8217;m  investing that spare change in <a title="Audible.com" href="http://www.audible.com/" target="_blank">Audible.com</a>.   These guys are professional story-tellers, and I can put it on my  portable music device and spend the wasted time in front of the tube  exercising my brain for a change.  Novel, you say?  Exactely my point!</p>
<p>But, alas, I can still watch TV online.  There&#8217;s always Hulu and the  big cable network websites to check out, so I don&#8217;t think I&#8217;ll starve  myself of mindless (though oddly enjoyable) entertainment anytime in the  near future.</p>
]]></description><wfw:commentRss>http://www.sigmyers.com/blog/rss-comments-entry-13082488.xml</wfw:commentRss></item></channel></rss>
