<?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>dixson.org&#187; Web Tech</title>
	<atom:link href="http://dixson.org/category/web-tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://dixson.org</link>
	<description>news and rants for family &#38; friends</description>
	<lastBuildDate>Thu, 26 Jan 2012 14:58:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Custom Safari Style Sheets (Using CSS to Remove the Facebook Ticker)</title>
		<link>http://dixson.org/2011/09/custom-safari-style-sheets-using-css-to-remove-facebook-ticker/</link>
		<comments>http://dixson.org/2011/09/custom-safari-style-sheets-using-css-to-remove-facebook-ticker/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 16:58:47 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Tech]]></category>

		<guid isPermaLink="false">http://dixson.org/?p=490</guid>
		<description><![CDATA[Facebook recently released a new homepage ticker which, for some, is not a welcome change. Well, you can hide the ticker by using a custom style sheet in the Safari web browser. By creating your own style sheet, you can override the tickerActivityStories class defined in Facebook&#8217;s CSS and hide the ticker. Step 1: Open [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook recently released a new homepage ticker which, for some, is not a welcome change. Well, you can hide the ticker by using a custom style sheet in the <a href="http://www.apple.com/safari/" target="_blank">Safari</a> web browser. By creating your own style sheet, you can override the <em>tickerActivityStories</em> class defined in Facebook&#8217;s CSS and hide the ticker.</p>
<p><strong>Step 1</strong>: Open up a text editor like TextEdit, BBEdit, TextMate, etc. Place the following CSS code in the document: </p>
<pre class="brush: css">

.tickerActivityStories {
	height: 0;
	display: none;
}
</pre>
<p><strong>Step 2</strong>: Save the document as a text file and name it, fb_styles.css (you can name it anything you want, just make sure it has the &#8216;.css&#8217; extension.) </p>
<p><strong>Step 3</strong>: Open Safari and go to Preferences/Advanced. From the Style Sheet drop down menu select &#8216;Other&#8230;&#8217; and choose the fb_styles.css file. Quit Safari and then reopen it.</p>
<p>That&#8217;s it. The ticker should vanish from the sidebar the when you are on Facebook. </p>
<p><em>Note: This only works in Apple&#8217;s Safari browser. If your browser supports custom style sheets, then these instructions may work for you. Additionally, browser plugins exist that can do the same thing.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2011/09/custom-safari-style-sheets-using-css-to-remove-facebook-ticker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The software install cascade</title>
		<link>http://dixson.org/2011/03/the-software-install-cascade/</link>
		<comments>http://dixson.org/2011/03/the-software-install-cascade/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 22:00:53 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Tech]]></category>

		<guid isPermaLink="false">http://dixson.org/?p=413</guid>
		<description><![CDATA[When it comes to running development software, I always fall victim to the time-consuming, software install cascade effect. It begins innocently. You download a software package then realize it depends on another, which depends on another and so on down the line. The software trip I took this morning was a textbook example of the [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to running development software, I always fall victim to the time-consuming, software install cascade effect. It begins innocently. You download a software package then realize it depends on another, which depends on another and so on down the line. The software trip I took this morning was a textbook example of the cascade in action. It began with downloading and installing <a href="http://www.adobe.com/products/coldfusion/" target="_blank">ColdFusion 9</a> then&#8230;</p>
<ul>
<li>upgrading to <a href="http://www.mysql.com/" target="_blank">MySQL 5</a> (my Mac had an ancient 4.0 version since I&#8217;ve fallen for <a href="http://www.sqlite.org/" target="_blank">SQLite</a> and haven&#8217;t used MySQL in a long, long time.)</li>
<li>installing <a href="http://dev.mysql.com/downloads/workbench/" target="_blank">MySQL Workbench</a> since the DB tool I had been using wouldn&#8217;t work with MySQL 5.x.</li>
<li>installing <a href="http://cfwheels.org/" target="_blank">ColdFusion on Wheels</a>.</li>
<li>making changes to my bash_profile to set the correct $PATH since I mucked it up weeks ago configuring Ruby Version Manager (<a href="http://rvm.beginrescueend.com/" target="_blank">RVM</a>.)</li>
<li>updating RVM to 1.2.8 (this had nothing to do with getting ColdFusion running but while I&#8217;m at the command line, might as well fix it.)</li>
</ul>
<p>All set. I can start coding!</p>
<p>Not so fast. <a href="http://www.barebones.com/products/bbedit/" target="_blank">BBEdit</a> and <a href="http://macromates.com/" target="_blank">TextMate</a>, my text editors of choice, don&#8217;t recognize <a href="http://en.wikipedia.org/wiki/ColdFusion_Markup_Language" target="_blank">CFML</a> (no syntax coloring, text completion, etc.) So I next,</p>
<ul>
<li>fail to locate a bundle or extension that makes either editor CFML-aware<strong>*</strong>.</li>
<li>install <a href="http://www.eclipse.org/downloads/" target="_blank">Eclipse</a> instead.</li>
<li>configure <a href="http://www.cfeclipse.org/" target="_blank">CFEclipse</a>.</li>
</ul>
<p>Great. But then,</p>
<ul>
<li><a href="http://subversion.apache.org/" target="_blank">Subversion</a> isn&#8217;t behaving so off to subversion.apache.org to <a href="http://www.urbandictionary.com/define.php?term=RTFM" target="_blank">RTFM</a>.</li>
<li>While skimming the Subversion packages, I end up at Apple&#8217;s Developer Tools area and discover that <a href="http://itunes.apple.com/us/app/xcode/id422352214?mt=12" target="_blank">Xcode 4 is available today</a>.</li>
</ul>
<p>Xcode 4 is downloading now and I&#8217;m off to write some CFML. At five o&#8217;clock.</p>
<p><strong>*</strong><em>A friend sent me a bundle for TextMate that added support for CFML. Thank you Louis.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2011/03/the-software-install-cascade/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New Server</title>
		<link>http://dixson.org/2011/02/new-server/</link>
		<comments>http://dixson.org/2011/02/new-server/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 21:00:12 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Blog Tech]]></category>
		<category><![CDATA[Web Tech]]></category>

		<guid isPermaLink="false">http://dixson.org/?p=402</guid>
		<description><![CDATA[After almost 48 hours of downtime, dixson.org is functioning again. On a new server at Joyent. Server software: Apache Server name: dixson.org PHP 5.2.12 WordPress 3.1 Feed: dixson.org/feed/atom/ Theme Name: Genesis Theme Version: 1.5 Plugins: Genesis Simple Edits, Google Analyticator, Google XML Sitemaps, WordPress Importer, and WP FancyZoom &#160;]]></description>
			<content:encoded><![CDATA[<p>After almost 48 hours of downtime, dixson.org is functioning again. On a new server at <a href="http://www.joyent.com/">Joyent</a>.</p>
<p>Server software: Apache<br />
Server name: dixson.org<br />
PHP 5.2.12<br />
WordPress 3.1<br />
Feed: <a href="http://dixson.org/feed/atom/">dixson.org/feed/atom/</a><br />
Theme Name: <a href="http://www.studiopress.com/themes/genesis">Genesis</a><br />
Theme Version: 1.5<br />
Plugins: Genesis Simple Edits, Google Analyticator, Google XML Sitemaps, WordPress Importer, and WP FancyZoom</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2011/02/new-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plugging plugins</title>
		<link>http://dixson.org/2009/01/plugging-plugins/</link>
		<comments>http://dixson.org/2009/01/plugging-plugins/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 11:13:12 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Blog Tech]]></category>
		<category><![CDATA[Web Tech]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=197</guid>
		<description><![CDATA[I&#8217;ve installed and recommend the following WP plugins: 1. WP FancyZoom by Stephen Granade http://granades.com/wp-fancyzoom-wordpress-plugin/ &#8230;FancyZoom is a nice, modern way of making popup images. This is a &#8220;pluginized&#8221; version of Cabel Sasser&#8217;s FancyZoom which I had used on my old site. It rocks. [Cabel is one of the founders of Panic, Inc., makers of beautifully designed and highly [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve installed and recommend the following WP plugins:</p>
<p><strong>1</strong>. <a href="http://granades.com/wp-fancyzoom-wordpress-plugin/">WP FancyZoom</a> by Stephen Granade<br />
<a href="http://granades.com/wp-fancyzoom-wordpress-plugin/">http://granades.com/wp-fancyzoom-wordpress-plugin/</a></p>
<blockquote><p>&#8230;FancyZoom is a nice, modern way of making popup images.</p></blockquote>
<p>This is a &#8220;pluginized&#8221; version of Cabel Sasser&#8217;s <a href="http://www.cabel.name/2008/02/fancyzoom-10.html">FancyZoom</a> which I had used on my old site. It rocks. [Cabel is one of the founders of <a href="http://www.panic.com/">Panic, Inc.</a>, makers of beautifully designed and highly useful Mac software. I use <a href="http://www.panic.com/transmit/">Transmit</a> daily.] Thanks for the WP version Stephen.</p>
<p> </p>
<p><strong>2</strong>. <a href="http://wordpress.org/extend/plugins/scissors/">Scissors</a> by Stephan Reiter<br />
<a href="http://wordpress.org/extend/plugins/scissors/">http://wordpress.org/extend/plugins/scissors/</a></p>
<blockquote><p>[Scissors] &#8230;adds cropping and resizing functionality to WordPress&#8217; image upload and management dialogs.</p></blockquote>
<p>Very handy and easy to use.</p>
<p> </p>
<p><strong>3</strong>. <a rel="bookmark" href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">Google (XML) Sitemaps Generator</a> by Arne Brachhold<br />
<a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/</a></p>
<blockquote><p>This plugin generates a XML-Sitemap compliant sitemap of your WordPress blog. This format is supported by Ask.com, Google, YAHOO and MSN Search.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2009/01/plugging-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moved to WordPress</title>
		<link>http://dixson.org/2009/01/moved-to-wordpress/</link>
		<comments>http://dixson.org/2009/01/moved-to-wordpress/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 19:19:15 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Blog Tech]]></category>
		<category><![CDATA[Web Tech]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=110</guid>
		<description><![CDATA[I&#8217;ve moved on from Movable Type 4 to WordPress 2.7. MT, which I have used for years, is a very powerful weblog publishing system and I recommend it in many situations were its features and flexibility warrant. But, as a developer, the template system was burdensome in my opinion and I had a tough time adapting [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve moved on from Movable Type 4 to WordPress 2.7. MT, which I have used for years, is a very powerful weblog publishing system and I recommend it in many situations were its features and flexibility warrant. But, as a developer, the template system was burdensome in my opinion and I had a tough time adapting to the new MT 4 architecture. Additionally, I have a few client projects that I&#8217;ll be doing in WP so the time was right to make the switch.</p>
<p>The WP install was simple and I encountered zero issues on my shared server at <a href="http://www.joyent.com/">Joyent</a>. I imported my MT posts into WP with just a few clicks. I also changed the theme to <del> iNove</del>. Next, I need to learn more about developing my own themes.</p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2009/01/moved-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Follow me on Twitter</title>
		<link>http://dixson.org/2008/10/follow-me-on-twitter/</link>
		<comments>http://dixson.org/2008/10/follow-me-on-twitter/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 13:00:19 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Ether]]></category>
		<category><![CDATA[Web Tech]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=81</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/k1prd"><span class="Apple-style-span" style="font-weight: bold;">twitter.com/k1prd</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2008/10/follow-me-on-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Underestimating consumer response</title>
		<link>http://dixson.org/2007/07/underestimating-consumer-response/</link>
		<comments>http://dixson.org/2007/07/underestimating-consumer-response/#comments</comments>
		<pubDate>Wed, 18 Jul 2007 17:45:19 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Personal Branding]]></category>
		<category><![CDATA[Web Tech]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=57</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>Kirsten and William had an article published in <strong>Advertising Age</strong>, &#8220;How to Build the &#8216;Brand Called You&#8217; in an Online Era.&#8221; The article refers to the <a href="http://www.careerdistinction.com/onlineid/">Online Identity Calculator</a> we built to determine your GQ (Google Quotient). When I built this calculator, I was assuming it would be revealed to a small audience while in beta mode &#8211; not mentioned in Ad Age! <img src='http://dixson.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   But in a matter of hours it went from Ad Age to several popular bloggers and then news of it snowballed. Much to my chagrin, I had set the response function of the calculator to simply send email with the collected data to a mailbox specifically created for this purpose. I started to notice email trickling in with data&#8230;then the trickle became a flood. I went from 20 messages in a ten minute period to about 1800 by the end of the day. I scrambled to stop the email and activated the database code I had waiting in the wings, commented out the email notification lines and then sat back and issued the command:
<pre>select count(*) from idstats</pre>
<p> In 15 minutes it went from zero to nearly 300 database entries (rows) and within a few days, it surpassed 21K rows. Talk about underestimating response. <img src='http://dixson.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2007/07/underestimating-consumer-response/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hosting and Blog Changes</title>
		<link>http://dixson.org/2006/09/hosting-and-blog-changes/</link>
		<comments>http://dixson.org/2006/09/hosting-and-blog-changes/#comments</comments>
		<pubDate>Mon, 25 Sep 2006 01:45:47 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Blog Tech]]></category>
		<category><![CDATA[Web Tech]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=38</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>I finally made the switch and signed up for hosting with <a href="http://www.textdrive.com">TextDrive</a> several weeks ago and love it. TextDrive is not for the technically challenged. You <em>will</em> get your hands dirty with mod_rewrite, htaccess tweaking and adjusting the server settings to your heart&#8217;s content. It&#8217;s a rush to have this kind of power over a hosting account (Did I just say that? It&#8217;s a rush?  I <em>really</em> need to spend less time in front of this damn computer. <img src='http://dixson.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ) Basically, I can install and configure just about anything I want or need on the server (within reason of course.)  So far I&#8217;ve taken advantage of PHP5, WebDAV and sharing iCal files. Soon I&#8217;ll be working with ROR, Lighttpd, and Subversion (to manage the mess I make of my source.) I&#8217;ll be doing my Rails development and testing on the Macs and PCs here at home &#8211; in a shared hosting environment you do not want to piss off your &#8216;neighbors&#8217; by hosing the server with shaky development code.</p>
<p>After being down for about a month, I got this blog back up (as you can see). Upgraded to MT 3.3 and imported my previous posts from MT on my old server. Still need to work on the templates. <em>Excuse the clutter, design inconsistencies, and other glitches &#8211; I&#8217;m aware of them and making corrections.</em></p>
<p>I gave up on the MT security plugin I wanted to use. After several careful re-installs and configuration changes, it just kept spitting out errors. Maybe I&#8217;m just too tired today to determine the root of the problem (in my defense, the documentation for the plugin <strike>sucks</strike> is lacking in many areas. ) But the errors appear to be rooted in dynamic file publishing &#8211; or the lack thereof. For now, I&#8217;ll let it sit a few days and revisit the plugin with a clear mind.</p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2006/09/hosting-and-blog-changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ROR</title>
		<link>http://dixson.org/2006/06/ror/</link>
		<comments>http://dixson.org/2006/06/ror/#comments</comments>
		<pubDate>Thu, 22 Jun 2006 17:10:26 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Web Tech]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=31</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img src="/img/rails.png" width="60" height="74" alt="" align="left"> Been experimenting with Ruby on Rails (ROR) the past few weeks. Picked up a copy of &#8220;<a href="http://www.carsonworkshops.com/shop/RAILS_Grosenbach.html">Get Started with Rails</a>&#8221; from Carson Workshops. All I can say is that ROR has exceeded my expectations and what took me a few days to complete in PHP, took me a few hours in ROR. Yes, other MVC frameworks exist, but ROR just seemed a better fit for my needs and skills. Check out, <a href="http://www.rubyonrails.org">www.rubyonrails.org</a> and, for you Mac OS X users, <a href="http://developer.apple.com/tools/rubyonrails.html">Using Ruby on Rails for Web Development on Mac OS X</a> and <a href="http://hivelogic.com/articles/2005/12/01/ruby_rails_lighttpd_mysql_tiger">Building Ruby, Rails, LightTPD, and MySQL on Tiger</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2006/06/ror/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design Group Meeting</title>
		<link>http://dixson.org/2005/05/web-design-group-meeting/</link>
		<comments>http://dixson.org/2005/05/web-design-group-meeting/#comments</comments>
		<pubDate>Tue, 10 May 2005 01:31:04 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Web Tech]]></category>

		<guid isPermaLink="false">http://www.dixson.org/?p=9</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>Last night I attended a meeting held by <a href="http://webdesign.meetup.com/50/">The Manchester Web Design Group</a>.  Good conversation, intelligent people and a chance to get out of my home office and talk shop with other developers. It&#8217;s always refreshing (or not) to know we all face the same issues regarding Web standards. I came away from our meeting with more devotion to <a href="http://www.opensource.org/docs/definition.php">open source software</a> and more annoyance with Redmond. As fate would have it, when I got home, I ended up dealing with the <a href="http://photos2.flickr.com/3538813_252a423f32_m.jpg">Blue Screen of Death</a> on my wife&#8217;s PC. I went back to my Mac, cranked up <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playlistId=25422959&#038;selectedItemId=25423119">KoRn</a> and spent the next 30 minutes perusing troubleshooting pages at MS.</p>
]]></content:encoded>
			<wfw:commentRss>http://dixson.org/2005/05/web-design-group-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

