<?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>josepbales.com</title>
	<atom:link href="http://josephbales.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://josephbales.com</link>
	<description>stuff and things</description>
	<lastBuildDate>Sun, 21 Feb 2016 02:32:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.4.2</generator>
	<item>
		<title>Error converting data type DBTYPE_DBTIMESTAMP to datetime2</title>
		<link>http://josephbales.com/2015/09/15/error-converting-data-type-dbtype_dbtimestamp-to-datetime2/</link>
		<comments>http://josephbales.com/2015/09/15/error-converting-data-type-dbtype_dbtimestamp-to-datetime2/#respond</comments>
		<pubDate>Tue, 15 Sep 2015 23:06:41 +0000</pubDate>
		<dc:creator><![CDATA[Joey]]></dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[AcuODBC]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[DataReader]]></category>
		<category><![CDATA[ETL]]></category>
		<category><![CDATA[ODBC]]></category>

		<guid isPermaLink="false">https://josephbales.wordpress.com/?p=1158</guid>
		<description><![CDATA[Okay, so here is a post that has been months in the making. Lately I&#8217;ve been working on an ETL project, mostly the E and T parts. The project involves exporting data from a database via an ODBC driver (AcuODBC to be exact). I don&#8217;t have any control over the database being accessed other than being able to extract &#8230; <a href="http://josephbales.com/2015/09/15/error-converting-data-type-dbtype_dbtimestamp-to-datetime2/" class="more-link">Continue reading<span class="screen-reader-text"> "Error converting data type DBTYPE_DBTIMESTAMP to datetime2"</span></a>]]></description>
				<content:encoded><![CDATA[<p>Okay, so here is a post that has been months in the making.</p>
<p>Lately I&#8217;ve been working on an <a href="https://en.wikipedia.org/wiki/Extract,_transform,_load" target="_blank">ETL</a> project, mostly the E and T parts. The project involves exporting data from a database via an <a href="https://en.wikipedia.org/wiki/Open_Database_Connectivity" target="_blank">ODBC</a> driver (<a href="http://supportline.microfocus.com/Documentation/AcucorpProducts/docs/v6_online_doc/acuodbc/acuodbct.htm" target="_blank">AcuODBC</a> to be exact). I don&#8217;t have any control over the database being accessed other than being able to extract data and neither the client nor I have much knowledge of how the database actually works. For my part I just know that I can access it via the AcuODBC driver.</p>
<p>I am using .NET and C# to do the data extraction and translating, but I&#8217;ve run into an issue on several tables that has perplexed me for some time. It is the error message that I&#8217;ve used as the title of this post:</p>
<pre>Error converting data type DBTYPE_DBTIMESTAMP to datetime2.
</pre>
<p>No matter how I was trying to get at the data, I kept getting this error. I tried <a href="https://msdn.microsoft.com/en-us/library/ms187928.aspx" target="_blank">CAST and CONVERT</a> SQL commands. I tried <a href="https://msdn.microsoft.com/en-us/library/ms162802.aspx" target="_blank">BCP</a>. I tried using <a href="https://msdn.microsoft.com/en-us/library/ms188029.aspx" target="_blank">SELECT INTO</a>. I tried <a href="https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy(v=vs.110).aspx" target="_blank">SqlBulkCopy</a>. I finally got all the way down to using an <a href="https://msdn.microsoft.com/en-us/library/system.data.odbc.odbcdatareader(v=vs.110).aspx" target="_blank">OdbcDataReader</a> object to try to move the data, but I kept getting the error when I used <code>reader[index].ToString()</code> to access the data.</p>
<p>But then I noticed there was a method called <a href="https://msdn.microsoft.com/en-us/library/system.data.odbc.odbcdatareader.getstring(v=vs.110).aspx" target="_blank">GetString</a> in the OdbcDataReader object. I tried it and by golly it worked! (If you have been wondering what the cause of this error has been all along, it is an invalid date that was entered into the database with the year 0000). Yes, it worked, but it worked sloooooooow. Veeeeery slow. It was processing about 2 records per second, which isn&#8217;t too bad until you scale that up to over 1.1 million records. The time to extract just that one table would be over 6 days! That would not do.</p>
<p>I sat on it for a few days and thought about all the potential solutions. I could bulk copy all the rows except the ones in question, but then I&#8217;d have to go through each table and find the culprit(s) and write special select statements to exclude those rows, then special select statements to grab those rows minus the offending fields. Then I&#8217;d have to update my table with the omitted records. Not something I really wanted to do.</p>
<p>Then today I noticed that when I used the <code>reader[index].ToString()</code> method to get the data, it came out at a much faster, more acceptable speed. Okay, so what if I wrap that in a try block and then in the catch block I use the slower GetString method? If that worked then only the offending data would get extracted using the slow GetString method and everything else would use the other method. And what do you know, it DID work! Here&#8217;s the code for posterity (yeah, I&#8217;m stripping out all the new lines and spaces).</p>
<p>https://gist.github.com/josephbales/b2f6d4b93113b6ae5ec5</p>
]]></content:encoded>
			<wfw:commentRss>http://josephbales.com/2015/09/15/error-converting-data-type-dbtype_dbtimestamp-to-datetime2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up Apache Virtual Hosts on FreeBSD 10.1</title>
		<link>http://josephbales.com/2015/04/03/setting-up-apache-virtual-hosts-on-freebsd-10-1/</link>
		<comments>http://josephbales.com/2015/04/03/setting-up-apache-virtual-hosts-on-freebsd-10-1/#respond</comments>
		<pubDate>Fri, 03 Apr 2015 06:21:34 +0000</pubDate>
		<dc:creator><![CDATA[Joey]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Virtual Host]]></category>

		<guid isPermaLink="false">https://josephbales.wordpress.com/?p=1153</guid>
		<description><![CDATA[I&#8217;ve been messing around on DigitalOcean with a FreeBSD 10.1 droplet. First let me say that FreeBSD is awesome. The thing that I like the most about the BSDs is that they don&#8217;t beat about the bush when it comes to making an OS because the purpose of each BSD is the OS. My main comparison is &#8230; <a href="http://josephbales.com/2015/04/03/setting-up-apache-virtual-hosts-on-freebsd-10-1/" class="more-link">Continue reading<span class="screen-reader-text"> "Setting up Apache Virtual Hosts on FreeBSD 10.1"</span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been messing around on <a title="The DigitalOcean website" href="http://digitalocean.com" target="_blank">DigitalOcean</a> with a <a title="FreeBSD website" href="http://freebsd.org" target="_blank">FreeBSD</a> 10.1 droplet. First let me say that FreeBSD is awesome. The thing that I like the most about the BSDs is that they don&#8217;t beat about the bush when it comes to making an OS because the purpose of each BSD <em>is</em> the OS. My main comparison is to Linux based OSes, which are awesome in their own way, but feel a bit splintered. With the BSDs it&#8217;s not just a kernel with a bunch of GNU apps thrown at it to make it usable, they take great pains to produce a complete OS. So when I need to know how to do something on FreeBSD, there&#8217;s probably already a darn good document out there with detailed instructions. Hell, you rarely have to go outside the FreeBSD manual unless you&#8217;re doing something really complex.  It just works and that&#8217;s great!</p>
<p>Now on to why I&#8217;m writing this post. I was wanting to set up Apache on my FreeBSD 10.1 machine to serve up 3 different websites. In the Apache world this is called Virtual Hosts. So let us say that we have 3 different addresses, but only one IP, now what? Virtual Hosts, and specifically Named Virtual Hosts. Configuration is dead simple.</p>
<p>First, locate your httpd.conf file. The Apache configuration file has a lot of names of various different Linuxes, but on FreeBSD it&#8217;s just httpd.conf and it is located at /usr/local/etc/apache24/httpd.conf. Open that file and go all the way to the bottom.</p>
<p>Second you will need to add in VirtualHost entries for each of your sites. You&#8217;ll also need to include one for the default IP address of the machine, otherwise it will point to the first VirtualHost entry.</p>
<pre>&lt;VirtualHost *:80&gt;
ServerName 127.0.0.1
DocumentRoot /usr/local/www/apache24/data
&lt;/VirtualHost&gt;</pre>
<pre>&lt;VirtualHost *:80&gt;
ServerName example1.com
DocumentRoot /usr/local/www/apache24/data/example1.com
&lt;/VirtualHost&gt;</pre>
<pre>&lt;VirtualHost *:80&gt;
ServerName example2.com
DocumentRoot /usr/local/www/apache24/data/example2.com
&lt;/VirtualHost&gt;</pre>
<p>The first line of each listing tells Apache that this is a VirtualHost entry and that it should listen to any incoming requests (the star) on port 80. The ServerName line tells Apache the name to look for for that particular entry. If a request comes in for example1.com, then the second entry above will be used. The first entry will be used if someone just types in the IP address of the server (assuming that 127.0.0.1 is the IP). The DocumentRoot line tells Apache where the files for that site are located. I tend to create a new folder for each site in the main document root folder so that all my sites are in a common place. The last line closes the listing.</p>
<p>Once you&#8217;ve edited your file, simply write it out and restart the Apache service to pick up the new settings.</p>
<pre>sudo service apache24 restart</pre>
<p>And it&#8217;s that simple! For more detailed documentation on Virtual Hosts you should read the official <a title="Apache Virtual Hosts documentation link" href="http://httpd.apache.org/docs/2.4/vhosts/" target="_blank">Apache documentation</a>. Have fun with it!</p>
]]></content:encoded>
			<wfw:commentRss>http://josephbales.com/2015/04/03/setting-up-apache-virtual-hosts-on-freebsd-10-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The purpose of Twitter Bootstrap</title>
		<link>http://josephbales.com/2014/12/08/the-purpose-of-twitter-bootstrap/</link>
		<comments>http://josephbales.com/2014/12/08/the-purpose-of-twitter-bootstrap/#respond</comments>
		<pubDate>Tue, 09 Dec 2014 02:21:15 +0000</pubDate>
		<dc:creator><![CDATA[Joey]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://josephbales.wordpress.com/?p=1145</guid>
		<description><![CDATA[Okay, so I rarely make websites or blog anymore. I&#8217;ll admit that I&#8217;ve fallen a bit out of touch with regard to the latest and greatest web technologies. But I&#8217;ve surprised even myself in the amount of time it has taken for me to understand Bootstrap. In case you didn&#8217;t know, Bootstrap is a web &#8230; <a href="http://josephbales.com/2014/12/08/the-purpose-of-twitter-bootstrap/" class="more-link">Continue reading<span class="screen-reader-text"> "The purpose of Twitter Bootstrap"</span></a>]]></description>
				<content:encoded><![CDATA[<p>Okay, so I rarely make websites or blog anymore. I&#8217;ll admit that I&#8217;ve fallen a bit out of touch with regard to the latest and greatest web technologies. But I&#8217;ve surprised even myself in the amount of time it has taken for me to understand <a title="Twitter Bootstrap" href="http://getbootstrap.com" target="_blank">Bootstrap</a>.</p>
<p>In case you didn&#8217;t know, Bootstrap is a web framework. No, I wouldn&#8217;t go that far. It&#8217;s more like a web layout framework. Bootstrap helps take your dowdy, old site and make it look like something a professional web designer might throw together in an afternoon (this is a compliment to web designers from someone who couldn&#8217;t design their way out of a wet paper bag).</p>
<p>So the thing that has really eluded me when it comes to Bootstrap is the power. What power is this? What power could there possibly be in a glorified style sheet?</p>
<p>The power comes not from what Bootstrap does, it comes from what I don&#8217;t have to do (and this is the part that took me so long to figure out). I don&#8217;t have to write style sheets anymore. That&#8217;s it.  But whoa, THAT&#8217;S IT! I used to spend HOURS (days even) tweaking this and nudging that, opening the <a title="The Gimp!" href="http://www.gimp.org/" target="_blank">Gimp</a> and doing a little on the fly editing, reading <a title="Pretentious" href="http://alistapart.com/" target="_blank">A List Apart</a> and <a title="Nerd cred quantified." href="http://stackoverflow.com/" target="_blank">Stack Overflow</a>.</p>
<p>Now when I build a site I vow to do as little of that crap as possible. Now I&#8217;m going to use Bootstrap for what it was intended: to leave the style to designers and let the blogger/developer blog and develop.</p>
]]></content:encoded>
			<wfw:commentRss>http://josephbales.com/2014/12/08/the-purpose-of-twitter-bootstrap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I&#8217;m no longer a Google fanboy</title>
		<link>http://josephbales.com/2014/05/17/why-im-no-longer-a-google-fanboy/</link>
		<comments>http://josephbales.com/2014/05/17/why-im-no-longer-a-google-fanboy/#respond</comments>
		<pubDate>Sat, 17 May 2014 16:35:35 +0000</pubDate>
		<dc:creator><![CDATA[Joey]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[dissatisfaction]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[moving on]]></category>

		<guid isPermaLink="false">http://josephbales.wordpress.com/?p=1082</guid>
		<description><![CDATA[I used to be a Google fanboy (my wife is still a Google fangirl). I used to sing their praises and recommend their software and services to anyone who asked for the slightest computer advice. But lately I&#8217;ve been rethinking my stance on Google and have started moving in other directions. So what did Google &#8230; <a href="http://josephbales.com/2014/05/17/why-im-no-longer-a-google-fanboy/" class="more-link">Continue reading<span class="screen-reader-text"> "Why I&#8217;m no longer a Google fanboy"</span></a>]]></description>
				<content:encoded><![CDATA[<p>I used to be a Google fanboy (my wife is still a Google fangirl). I used to sing their praises and recommend their software and services to anyone who asked for the slightest computer advice. But lately I&#8217;ve been rethinking my stance on Google and have started moving in other directions.</p>
<p>So what did Google do that has put me off? They started sucking at what they used to do best. We&#8217;ve known all along that Google&#8217;s products are NOT it&#8217;s services, but it&#8217;s users. Their massive user base and associated user data is where they make the big bucks. They amassed this data by tricking us users into giving it to them and the profit margins are astonishing because we give them all of that information without being compensated one red cent. It is not this fact that put me off. Quite the contrary, it is one hell of a business model. The thing that has put me off is that they aren&#8217;t able to trick me into giving them my information for free anymore.</p>
<p>What do I mean by this? The way they tricked me in the past was to give me some pretty great software and services. The problem now is that I can&#8217;t remember the last time they tricked me into using a new product. They have tons a new stuff coming out, but I&#8217;m not using it. Google+ is a flop and if the <a href="http://arstechnica.com/gadgets/2014/04/report-google-to-end-forced-g-integration-drastically-cut-division-resources/" target="_blank">rumors</a> are true they may finally be axing it. They killed the much loved Google Reader without even a reach around and that in turn has greatly reduced my blog readership (and writership for that matter). And the changes they are making in Android, Chrome, Apps, YouTube, and other services are more often than not making those services worse rather than better.</p>
<p>One thing I&#8217;ve noticed is that Google has become much more invasive and forceful in their efforts. In the past they were nice enough to allow us to customize their services and software and keep things the way we wanted them to be and allowed you to share content across multiple platforms. Now they are moving more towards the Apple approach where they are locking you into a certain ecosystem and locking you into the feature set they want you to have. They are changing things for the sake of their ecosystem and not for the reasons of customer feedback or improved feature sets.</p>
<p>My main issue lately is a growing distrust in their reliability. It really started with the aforementioned killing off of Reader. They had killed other services before Reader, but Reader was the first one that really affected me. I used to have a set of about 25 blogs that I read on a regular basis, but when Reader went, I couldn&#8217;t find a good replacement that worked like I wanted it to work. So now I no longer read blogs. The outcry was great from the community of Reader users, but those cries were left unheard. Now I hear that cry in the back of my mind every time I use a Google service. I think, &#8220;When will Google become tired of this service and remove it?&#8221;</p>
<p>So I&#8217;ve decided to try to become much less reliant on Google services. I&#8217;ve already given up on Chrome and replaced it with Firefox. At some point I would like to replace my Android phone with a Windows phone, but that&#8217;s probably a few years down the road (if Windows phone is still there). I now use Bing for most of my searching. The main services I use beyond that are Google Play for my music collection, Google Docs, Google Calendar, and Gmail. I&#8217;m not sure where I could put my music collection that is accessible as it is on Google Play, but there are multiple alternatives to Docs, Calendar, and Gmail and I am already exploring those. If you have any suggestions on replacements, feel free to contact me.</p>
<p>I don&#8217;t want this blog to become Google bashing central and my intent is not to bash Google. As a company Google is no better or worse than any other large corporation. I&#8217;m simply stating what my issues with Google are and why I am personally trying to move in another direction. The simple fact is they just aren&#8217;t capturing my enthusiasm anymore.</p>
]]></content:encoded>
			<wfw:commentRss>http://josephbales.com/2014/05/17/why-im-no-longer-a-google-fanboy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deleting Your Google Apps for Your Domain Account</title>
		<link>http://josephbales.com/2013/11/29/deleting-your-google-apps-for-your-domain-account/</link>
		<comments>http://josephbales.com/2013/11/29/deleting-your-google-apps-for-your-domain-account/#respond</comments>
		<pubDate>Fri, 29 Nov 2013 16:00:55 +0000</pubDate>
		<dc:creator><![CDATA[Joey]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[Google Apps]]></category>

		<guid isPermaLink="false">http://josephbales.wordpress.com/?p=1067</guid>
		<description><![CDATA[Okay, I spent about an hour trying to figure this out and finally did it. Google does not make deleting information easy because that information is their product. So the documentation about this particular subject is very sparse and ultimately I got what I needed from a obscure post in one of Google&#8217;s product forums. &#8230; <a href="http://josephbales.com/2013/11/29/deleting-your-google-apps-for-your-domain-account/" class="more-link">Continue reading<span class="screen-reader-text"> "Deleting Your Google Apps for Your Domain Account"</span></a>]]></description>
				<content:encoded><![CDATA[<p>Okay, I spent about an hour trying to figure this out and finally did it. Google does not make deleting information easy because that information is their product. So the documentation about this particular subject is very sparse and ultimately I got what I needed from a obscure post in one of Google&#8217;s product forums. I&#8217;m posting this here for posterity.</p>
<p>First let me start with how I ended up with a Google Apps account. Several years ago I was going on the road for a while and decided to manage my domain through <a href="http://wordpress.com" title="Wordpress" target="_blank">WordPress.com</a>. One of the features that WordPress offered was integration with Google Apps. I was a big fan of Gmail at the time, so I signed up so that I could manage my josephbales.com email addresses in Gmail.  I set up one address and forgot about it for 5 years.</p>
<p>Fast forward a few years.  I&#8217;ve decided that in light of recent events that Google isn&#8217;t the coolest anymore. I&#8217;m still sticking with them for the moment, but I wanted to make sure I had full control of my own domain and email accounts and that none of that information was connected to a Google product.</p>
<p>When you search for instructions on how to delete your Google Apps account you get <a href="https://support.google.com/a/answer/1257646?hl=en" target="_blank">this url</a> as the first result in Google. These instructions are great for anyone who has been actively administering their Google Apps account.  However, if you set your Google Apps account up in 2007 and promptly forgot about it, a few things have changed and these instructions are worthless.</p>
<p>The real key is figuring out what the administrative user for the account is. If you just have one user, it may not be that user which was what was happening in my case. The admin user is admin@your-domain.com or possibly superuser@your-domain.com (where your-domain.com is your actual domain). The user &#8220;admin&#8221; worked for me.  Instead of signing in as my normal user, I signed in as admin and was able to follow the instructions for the search results I mentioned above. It might help to do this in Privacy Mode in whatever browser you happen to be using, just to make sure browser cookies are not accidentally logging you in as someone else.  Hope this helps all you people out there.</p>
]]></content:encoded>
			<wfw:commentRss>http://josephbales.com/2013/11/29/deleting-your-google-apps-for-your-domain-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web’s Dead, Baby: Part 2</title>
		<link>http://josephbales.com/2013/06/12/webs-dead-baby-part-2/</link>
		<comments>http://josephbales.com/2013/06/12/webs-dead-baby-part-2/#comments</comments>
		<pubDate>Wed, 12 Jun 2013 07:00:27 +0000</pubDate>
		<dc:creator><![CDATA[Joey]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://josephbales.wordpress.com/?p=1057</guid>
		<description><![CDATA[Well, now that I&#8217;ve made you wait a couple of weeks to tell you why the Web is dead, I guess it&#8217;s time to disappoint (nothing can live up to that amount of hype). As my one piece of evidence I present this link. Go ahead, look at it. I&#8217;ll wait. &#8230; So, what did &#8230; <a href="http://josephbales.com/2013/06/12/webs-dead-baby-part-2/" class="more-link">Continue reading<span class="screen-reader-text"> "Web’s Dead, Baby: Part 2"</span></a>]]></description>
				<content:encoded><![CDATA[<p>Well, now that I&#8217;ve made you wait a couple of weeks to tell you why the Web is dead, I guess it&#8217;s time to disappoint (nothing can live up to that amount of hype). As my one piece of evidence I present <a href="http://sachachua.com/blog/2013/05/how-to-learn-emacs-a-hand-drawn-one-pager-for-beginners/" target="_blank">this link</a>. Go ahead, look at it. I&#8217;ll wait.</p>
<p>&#8230;</p>
<p>So, what did you think? If you were thinking, &#8220;What the hell is Emacs?&#8221; you missed the point. I wanted you to look at the design of the page. In fact, you can check out <a href="http://sachachua.com/blog/2013/05/how-to-make-a-hand-drawn-highlighted-web-page-header/" target="_blank">this link</a> to see the time and effort that went into that design.  I&#8217;ll wait.. again.</p>
<p>&#8230;</p>
<p>Okay, you done? Good. What did you think? Don&#8217;t answer, that was rhetorical (and people sitting near you will think you&#8217;re crazy for talking at the computer). I&#8217;ll tell you what I think. It&#8217;s glorious. It&#8217;s a fine piece of web design. That hand drawn look is very cool and the overall design is simple and easy to read.  The fonts are great and I really admire the thought, time, and artistry that went into creating it. Now look at this image (click or touch for a larger version):</p>
<p><a href="http://josephbales.com/wp-content/uploads/2013/06/sacha_chua_screenshot.png"><img src="http://josephbales.com/wp-content/uploads/2013/06/sacha_chua_screenshot.png?w=168" alt="sacha_chua_screenshot" width="168" height="300" class="alignnone size-medium wp-image-1062" /></a></p>
<p>This is how that website looks on a mobile browser. Specifically, that&#8217;s how it looks on Chrome for Android on my Galaxy S3. So that great design, gone. The artistry, gone. Everything that made that sight design unique and interesting, gone.</p>
<p>&#8220;But Joey, the content is still there and surely that is what&#8217;s most important.&#8221; Yes, I know. Bear with me. It&#8217;s not just the mobile browsers, it&#8217;s the news aggregators that have been chipping away as well. Google Reader (now defunct), Feedly, whatever you want to use, they all strip the style of a site and just serve up the content. I&#8217;m old school and even though I&#8217;ve used Reader, even I have to admit that that it stripped away the context, the feel that the author intended to convey when they designed their site. Also, it makes it much easier to just go to your news aggregator and have things served up to you that you&#8217;ve previously subscribed to. Pretty soon, that&#8217;s all you&#8217;re looking at and the wider web is not within your walls.</p>
<p>Speaking of walls, here comes the real web killer. The thing that is making the web the long lost child that everyone has forgotten. Apps. APPS!!!! Apps are creating walled gardens of content. Instagram instantly comes to mind as an example. It&#8217;s pretty much a mobile only experience (at first an iPhone only experience). Sure they&#8217;ve added some web content in the past few months, but it&#8217;s just an afterthought, the only real way to see and interact fully is through an app.</p>
<p>Apps are putting up walls where the web had previously broke them down. Before the web, AOL, Prodigy, CompuServe, etc. all served up their own private content, and if you didn&#8217;t subscribe, you didn&#8217;t even have access to it. Apps are doing the same thing. To view and create content through certain services, you have to have their app. And some apps are iPhone only, or Android only, or only available on certain phone carriers. This isn&#8217;t progression, it&#8217;s regression. We are literally traveling back in time to the land of AOL and the private BBS.</p>
<p>Sure, the web is still around, and it will be for years and years to come, but it&#8217;s dead. Like magma that has cooled and solidified, the web sits and awaits its fate. And the freedom and the openness of the web? They&#8217;re slipping away too. The time when all you needed was a browser window to look into the vastness of all human intellect is fading into history. So when your grandkids ask you what the web was, you&#8217;ll just tell them, &#8220;<a href="http://youtu.be/y7Yp2L6c2KM" target="_blank">The Web&#8217;s dead, baby. The Web&#8217;s dead.</a>&#8220;</p>
]]></content:encoded>
			<wfw:commentRss>http://josephbales.com/2013/06/12/webs-dead-baby-part-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web’s Dead, Baby: Part 1</title>
		<link>http://josephbales.com/2013/05/26/webs-dead-baby-part-1/</link>
		<comments>http://josephbales.com/2013/05/26/webs-dead-baby-part-1/#comments</comments>
		<pubDate>Mon, 27 May 2013 02:34:40 +0000</pubDate>
		<dc:creator><![CDATA[Joey]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://josephbales.wordpress.com/?p=1049</guid>
		<description><![CDATA[Twenty two years is a good run for most technology these days. In fact it’s a phenomenal run. That&#8217;s how long the World Wide Web has been in existence. But I&#8217;m here today to tell you that the web as we know it is DEAD! (The irony of making this statement in a weblog post &#8230; <a href="http://josephbales.com/2013/05/26/webs-dead-baby-part-1/" class="more-link">Continue reading<span class="screen-reader-text"> "Web’s Dead, Baby: Part 1"</span></a>]]></description>
				<content:encoded><![CDATA[<p>Twenty two years is a good run for most technology these days. In fact it’s a phenomenal run. That&#8217;s how long the <a href="http://en.wikipedia.org/wiki/World_Wide_Web" target="_blank">World Wide Web</a> has been in existence. But I&#8217;m here today to tell you that the web as we know it is DEAD! (The irony of making this statement in a weblog post does not escape me.) What killed the web? How did it die? Is this the end of all things? Come close and I&#8217;ll tell you the story of the end of the web, but first, a little history.</p>
<p>The web has become synonymous with the <a href="http://en.wikipedia.org/wiki/Internet" target="_blank">Internet</a>. When people today talk about the Internet, they are talking about the World Wide Web (henceforth, I&#8217;ll just call it the web). But the Internet is actually more than just the web. It is a large network of computers that use a number of protocols and services to exchange information. <a href="http://en.wikipedia.org/wiki/Email" target="_blank">Email</a> is the prime example often given of a non-web Internet service, although it can now be accessed through the web. The Internet is more the connections between the computers than it is the content. Here are a list of some Internet services, both living and dead, that you might know.</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Usenet" target="_blank">Usenet</a> &#8211; This is the original Internet discussion forum. Thousands of Usenet groups were created for topics ranging from computing to German fetish porn. In fact the web was <a href="http://en.wikipedia.org/wiki/History_of_the_World_Wide_Web" target="_blank">first announced</a> on a group called alt.hypertext.</li>
<li><a href="http://en.wikipedia.org/wiki/Gopher_(protocol)" target="_blank">Gopher</a> &#8211; This is a (mostly) dead Internet service that was very similar to the early web. It was text based like the early web, but instead of <a href="http://en.wikipedia.org/wiki/Hyperlinks" target="_blank">hyperlinks</a>, it used numbered menus for navigation. (I am old enough to remember and have used Gopher. I actually preferred it to the web in my early Internet dealings.)</li>
<li><a href="http://en.wikipedia.org/wiki/Irc" target="_blank">Internet Relay Chat (IRC)</a> &#8211; Before Facetime, Hangouts, Skype, or even AIM and Yahoo Messenger, IRC was where people came to chat with other netizens (remember when that was a word?).</li>
<li><a href="http://en.wikipedia.org/wiki/Ftp" target="_blank">File Transfer Protocol (FTP)</a> &#8211; This was an early, and still in use Internet protocol for file sharing. In the days before <a href="http://en.wikipedia.org/wiki/BitTorrent" target="_blank">BitTorrent</a> and the Pirate Bay, anonymous FTP servers were where the pirates went to trade their <a href="http://en.wikipedia.org/wiki/Warez" target="_blank">warez</a>.</li>
</ul>
<p>Before the web these were the main services that were used on the Internet. They were all text based and text information was the main thing being shared on most of them. If you wanted a richer multimedia experience, early Internet consumers turned to services like <a href="http://en.wikipedia.org/wiki/AOL#History" target="_blank">America Online</a>, <a href="http://en.wikipedia.org/wiki/Compuserve" target="_blank">CompuServe</a>, and <a href="http://en.wikipedia.org/wiki/Prodigy_(online_service)" target="_blank">Prodigy</a>. They offered <a href="http://en.wikipedia.org/wiki/Walled_garden_(technology)" target="_blank">walled gardens</a> of multimedia content.</p>
<p>But then came the web. At first it was text based too, but multimedia was quickly added. With the advent of the graphical <a href="http://en.wikipedia.org/wiki/Mosaic_(web_browser)" target="_blank">Mosaic web browser</a>, then <a href="http://en.wikipedia.org/wiki/Netscape_Navigator" target="_blank">Netscape Navigator</a>, and finally <a href="http://en.wikipedia.org/wiki/Internet_Explorer" target="_blank">Internet Explorer</a>, the web took off like a rocket. Standards bodies were set up and mostly agreed upon and the golden age of the web began.</p>
<p>From the mid-90s to about the year 2000 the web grew at a tremendous rate, but after that the newness started to wear off. People began to wonder what was next for the web. In 1999 a new term was coined, <a href="http://en.wikipedia.org/wiki/Web_2.0" target="_blank">Web 2.0</a>. This term referred to the use of dynamic content on web sites (until that point most web content was just static content on a page). Web 2.0 allowed the web consumer to interact with content. We were on the verge of a new golden age, but there was a threat. After crushing Netscape Navigator in the <a href="http://en.wikipedia.org/wiki/Browser_wars" target="_blank">great browser wars</a>, Microsoft allowed it&#8217;s browser Internet Explorer to languish. Innovation ground to a halt and web developers spent most of their time writing around rendering errors in IE&#8217;s browsing engine. Finally, in 2003 a new web browser called Firefox rose from the ashes to challenge IE and allowed Web 2.0 to reach its full potential.</p>
<p>Okay, now the history lesson&#8217;s over. We get to the heart of it in Part 2!</p>
]]></content:encoded>
			<wfw:commentRss>http://josephbales.com/2013/05/26/webs-dead-baby-part-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SC-01, Have you no shame?</title>
		<link>http://josephbales.com/2013/05/10/sc-01-have-you-no-shame/</link>
		<comments>http://josephbales.com/2013/05/10/sc-01-have-you-no-shame/#respond</comments>
		<pubDate>Sat, 11 May 2013 01:10:05 +0000</pubDate>
		<dc:creator><![CDATA[Joey]]></dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[current-events]]></category>
		<category><![CDATA[douche bags]]></category>
		<category><![CDATA[Mark Sanford]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[South Carolina]]></category>

		<guid isPermaLink="false">http://josephbales.wordpress.com/?p=1046</guid>
		<description><![CDATA[For those of you living in South Carolina&#8217;s first congressional district, I have one question. Have you no shame? Mark Sanford&#8217;s re-election to his former post as your U.S. Representative would be laughable if it didn&#8217;t show the utter ignorance, hypocracy, and blind loyalty of 54% of the voters of that district. These results, combined &#8230; <a href="http://josephbales.com/2013/05/10/sc-01-have-you-no-shame/" class="more-link">Continue reading<span class="screen-reader-text"> "SC-01, Have you no shame?"</span></a>]]></description>
				<content:encoded><![CDATA[<p>For those of you living in South Carolina&#8217;s first congressional district, I have one question. Have you no shame?</p>
<p><a href="http://en.wikipedia.org/wiki/Mark_Sanford" title="A Hypocrite's" target="_blank">Mark Sanford&#8217;s</a> re-election to his former post as your U.S. Representative would be laughable if it didn&#8217;t show the utter ignorance, hypocracy, and blind loyalty of 54% of the voters of that district. These results, combined with the 2012 re-election of TN-04 Rep. <a href="http://en.wikipedia.org/wiki/Scott_DesJarlais" title="Liar" target="_blank">Scott DesJarlais</a>, show that most people voting Republican are doing so strictly because there is an (R) behind the name on the ballot.</p>
<p>Let me break it down for you. Mark Sanford is a dirty liar. He took off on a trip to Argentina to see his mistress and told everyone he was hiking the Appalachian Trail. While he was governor&#8230; of a state. So if there had been an emergency like a tornado outbreak, terrorist attack, or tsunami, ol&#8217; Mark would have had to span a quarter of the globe to get back home. This alone should have gotten him impeached (and it nearly did).</p>
<p>He&#8217;s a corrupt hypocrite too. On an earlier trip, he used state funds for his jaunt to Argentina. In his defense he did pay all that money back, but not until the scandal broke and a reporter dug it up. Additionally, <a href="http://www.cbsnews.com/stories/2009/08/09/politics/main5228211.shtml" target="_blank">he used state aircraf</a>t for other personal and political trips, including one to get a haircut&#8230; in violation of SC state law. So much for integrity and so much for fiscal responsibility (which is what he ran on in his most recent campaign).</p>
<p>This guy is a low down, despicable person who really needed to fade into obscurity and never be heard from again. For the life of me, I cannot fathom how in the world this guy even won his primary, let alone won his election.</p>
]]></content:encoded>
			<wfw:commentRss>http://josephbales.com/2013/05/10/sc-01-have-you-no-shame/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Primary Challengers Wanted</title>
		<link>http://josephbales.com/2013/04/21/primary-challengers-wanted/</link>
		<comments>http://josephbales.com/2013/04/21/primary-challengers-wanted/#respond</comments>
		<pubDate>Mon, 22 Apr 2013 03:26:04 +0000</pubDate>
		<dc:creator><![CDATA[Joey]]></dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[current-events]]></category>
		<category><![CDATA[douche bags]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[stacey campfield]]></category>
		<category><![CDATA[tennessee republicans]]></category>
		<category><![CDATA[tennessee state senate]]></category>

		<guid isPermaLink="false">http://josephbales.wordpress.com/?p=1038</guid>
		<description><![CDATA[I&#8217;m from Tennessee and if we know one thing, it&#8217;s how to create terrible, awful politicians. I&#8217;d love to see many of our local politicians voted out. Unfortunately, our populace is fairly uneducated and apathetic when it comes to politics. They are used to going into the voting booth and voting for a (D) or &#8230; <a href="http://josephbales.com/2013/04/21/primary-challengers-wanted/" class="more-link">Continue reading<span class="screen-reader-text"> "Primary Challengers Wanted"</span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m from Tennessee and if we know one thing, it&#8217;s how to create terrible, awful politicians. I&#8217;d love to see many of our local politicians voted out. Unfortunately, our populace is fairly uneducated and apathetic when it comes to politics. They are used to going into the voting booth and voting for a (D) or (R). The only real hope we have that awful people will get voted out is a primary challenge (or retirement, but nobody&#8217;s going to be doing us any favors there). Here are my top 3 <del datetime="2013-04-22T02:43:33+00:00">douche bags</del> problematic candidates that deserve a boot.</p>
<p>Problematic Candidate #1: Stacey Campfield. This guy is notorious not only in Tennessee, but in the nation as a whole. He&#8217;s probably most famous as the &#8220;<a href="http://www.huffingtonpost.com/2013/01/30/tennessee-dont-say-gay-bill_n_2582390.html" title="Don't Say Gay bill" target="_blank">Don&#8217;t Say Gay</a>&#8221; guy, but more recently he attempted to pass some welfare &#8220;reform&#8221; that would <a href="http://www.tennessean.com/article/20130412/NEWS0201/304110082/Sen-Stacey-Campfield-withdraws-welfare-bill-after-run-girl-protesters" title="Campfield's terrible welfare bill" target="_blank">reduce the benefits of parents whose children are not doing well in school</a>. Umm, there are about a billion things we can do to help those kids do better in school, but taking away what little money their family has coming in is not one of those things. In fact many children in such situations already have terrible home lives, and making them responsible for the income of the family is NOT something that is going to make school work any easier for them. He represents Knoxville in the Tennessee State Senate and he needs to GO! This is my official call to any Republican willing to take this guy on. As long as you aren&#8217;t an even bigger <del datetime="2013-04-22T02:56:22+00:00">douche bag</del> problematic candidate, I&#8217;ll do what I can to help you win your primary.</p>
<p>Problematic Candidate #2: Scott Dejarlais. Dr. Dejarlais (how he still has a medical license is beyond me) is just a hypocrite. This <a href="http://www.huffingtonpost.com/2012/11/15/scott-desjarlais-approved_n_2140171.html" title="Scott's bad things" target="_blank">pro-life, family values candidate</a> encouraged two ex-mistresses and his ex-wife to get abortions and also had multiple ethically questionable things going on in his medical career. Fortunately, the Tennessee Republicans were on top of this one as soon as the election (which he somehow won, proving that people indeed just vote for the party and not the candidate) was over. There are already several candidates lined up to give him a good primary challenge. I&#8217;ll be surprised if we see this guy back in Washington after the next election.</p>
<p>Problematic Candidate #3: Jim Cooper. Cooper is the TN-05 Representative in Washington. He runs as a Democrat, but his actions are more old Southern Democrat rather than the newer, more progressive Democrats we are used to. If a bill involves any kind of spending increase, Jim will vote against it, including <a href="http://www.nashvillescene.com/pitw/archives/2013/01/16/cooper-on-sandy-vote-i-hate-voting-with-the-republicans-but-congress-has-to-do-the-right-thing-for-the-country" title="Really?" target="_blank">Hurricane Sandy relief</a>. While Jim Cooper has been a target since at least <a href="http://www.salon.com/2009/09/25/various_matters_4/" title="Salon was working on it" target="_blank">2009</a>, no one has been able to mount a successful challenge to this Nashville Democrat&#8217;s name recognition juggernaut. Hell, even I held my nose and voted for him in the last general election despite a decent Green Party alternative. I&#8217;m not sure I will do that again. Since he basically votes Republican anyway, it wouldn&#8217;t really be any different having an actual Republican in the seat and might allow a real Democrat to step up in a following election.</p>
]]></content:encoded>
			<wfw:commentRss>http://josephbales.com/2013/04/21/primary-challengers-wanted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
