<?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>Best I know ... &#187; Technology</title>
	<atom:link href="http://brandonmoeller.com/blog/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://brandonmoeller.com</link>
	<description>A BrandonMoeller.com blog</description>
	<lastBuildDate>Mon, 21 May 2012 21:04:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>RSS Responsive Caption</title>
		<link>http://brandonmoeller.com/blog/2011/12/18/rss-responsive-caption/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss-responsive-caption</link>
		<comments>http://brandonmoeller.com/blog/2011/12/18/rss-responsive-caption/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 22:16:42 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://brandonmoeller.com/?p=3123</guid>
		<description><![CDATA[New plugin fixes all that.  <a href="http://brandonmoeller.com/blog/2011/12/18/rss-responsive-caption/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>The problem:</strong></p>
<p>Readers who use Google Reader to read WordPress powered website RSS feeds on their small-screen mobile devices don&#8217;t get the full picture if the WordPress site in question uses the caption short code functionality, because the resulting inline CSS code that displays does not instruct the feed reader to scale the image down to fit the screen.</p>
<p><em>See, i.e.:</em></p>
<div id="attachment_3135" class="wp-caption alignleft" style="max-width: 100% !important; height: auto; width: 810px"><img class=" wp-image-3135 " title="115_1039-800" src="http://brandonmoeller.com/wp-content/uploads/2011/12/115_1039-800.jpg" alt="" width="800" height="1067" /><p class="wp-caption-text">In this image, a giant photo in a post is poorly displayed in Google Reader as a result of the default settings of WordPress 3.3 (and previous versions that include the Caption feature). As displayed on my Android-powered Nexus S from Google, running the latest version of Google Reader, Version 1.1.1.</p></div>
<p><strong>The solution:</strong></p>
<p>I created a new WordPress plugin called <a href="http://wordpress.org/extend/plugins/rss-responsive-caption">RSS Responsive Caption</a> to adjust the inline CSS styles that get attached to images with captions to make them more &#8220;responsive.&#8221;</p>
<p>Really, all that was needed was the following CSS code to specify that the maximum width of an image should be 100% (of the screen size). That&#8217;s responsive web design, in a nutshell.</p>
<blockquote><p>max-width: 100% !important;<br />
height: auto;</p></blockquote>
<p>Creating a plugin to accomplish this was not necessary. In fact, anyone can do this without downloading the plugin, simply (heh) by altering lines 745-746 in the wp-includes/media.php file, from:</p>
<blockquote><p>return &#8216;&lt;div &#8216; . $id . &#8216;class=&#8221;wp-caption &#8216; . esc_attr($align) . &#8216;&#8221; style=&#8221;width: &#8216; . (10 + (int) $width) . &#8216;px&#8221;&gt;&#8217;<br />
. do_shortcode( $content ) . &#8216;&lt;p&gt;&#8217; . $caption . &#8216;&lt;/p&gt;&lt;/div&gt;&#8217;;</p></blockquote>
<p>to:</p>
<blockquote><p>return &#8216;&lt;div &#8216; . $id . &#8216;class=&#8221;wp-caption &#8216; . esc_attr($align) . &#8216;&#8221; style=&#8221;max-width: 100% !important; height: auto; width: &#8216; . (10 + (int) $width) . &#8216;px&#8221;&gt;&#8217;<br />
. do_shortcode( $content ) . &#8216;&lt;p&gt;&#8217; . $caption . &#8216;&lt;/p&gt;&lt;/div&gt;&#8217;;</p></blockquote>
<p>But! If I did it that way, then every time WordPress would release a new version of its frickin-awesome open source software package, I would have to manually go into the media.php file and change that line of code to keep my RSS feeds displaying properly in Google Reader.</p>
<p>Instead, I prefer the instant update method of installing the latest version of WordPress. I click the button, it does its thing and in a few moments of anticipatory suspense, I have the latest version of WordPress in all its glory, and I can troubleshoot it because my own specific modifications are separate.</p>
<p>That&#8217;s also why I typically choose to create child themes on top of existing themes &#8211; if the theme is ever updated by the theme author, I won&#8217;t have to manually sort out what was changed vs. how I reconfigured it, unless the theme author specifically chose to alter something I wanted to alter.</p>
<p>The plugin makes the viewing experience in Google Reader much better.</p>
<p><em>See, i.e.:</em></p>
<div id="attachment_3136" class="wp-caption alignleft" style="max-width: 100% !important; height: auto; width: 810px"><img class="size-full wp-image-3136" title="115_1040-800" src="http://brandonmoeller.com/wp-content/uploads/2011/12/115_1040-800.jpg" alt="" width="800" height="1067" /><p class="wp-caption-text">The photo as displayed in the RSS feed when the plugin is activated.</p></div>
<p><strong>Download my first-ever WordPress plugin here:</strong></p>
<p><a href="http://wordpress.org/extend/plugins/rss-responsive-caption">RSS Responsive Caption</a><a href="http://wordpress.org/extend/plugins/rss-responsive-caption"></p>
<p>http://wordpress.org/extend/plugins/rss-responsive-caption</a></p>
<p><strong>Credit:</strong></p>
<p><strong></strong>This plugin would not have been possible if the WordPress core team didn&#8217;t create a way to &#8220;allow a plugin to replace the content that would otherwise be returned&#8221; via the caption shortcode function (see: wp-includes/media.php, line 711), or, if they didn&#8217;t further explain the <a href="http://codex.wordpress.org/Function_Reference/add_filter">add_filter function in the codex</a>, even going so far as suggesting the following plugin:</p>
<blockquote>
<pre>add_filter('img_caption_shortcode', 'my_img_caption_shortcode_filter',10,3);

/**
 * Filter to replace the  shortcode text with HTML5 compliant code
 *
 * @return text HTML content describing embedded figure
 **/
function my_img_caption_shortcode_filter($val, $attr, $content = null)
{
	extract(shortcode_atts(array(
		'id'	=&gt; '',
		'align'	=&gt; '',
		'width'	=&gt; '',
		'caption' =&gt; ''
	), $attr));

	if ( 1 &gt; (int) $width || empty($caption) )
		return $val;

	$capid = '';
	if ( $id ) {
		$id = esc_attr($id);
		$capid = 'id="figcaption_'. $id . '" ';
		$id = 'id="' . $id . '" aria-labelledby="figcaption_' . $id . '" ';
	}

	return '&lt;figure ' . $id . 'class="wp-caption ' . esc_attr($align) . '" style="width: '
	. (10 + (int) $width) . 'px"&gt;' . do_shortcode( $content ) . '&lt;figcaption ' . $capid
	. 'class="wp-caption-text"&gt;' . $caption . '&lt;/figcaption&gt;&lt;/figure&gt;';
}</pre>
</blockquote>
<p>Basically, I took the plugin above and altered it to fit my needs, after an exhaustive search to determine that someone else hadn&#8217;t already done what I wanted to do.</p>
<p>I got the idea for this plugin by looking at the HTML source code of the posts WordPress generates for images with captions and images without, then Googling until I discovered what made what worked.</p>
<p>Articles and forum posts that I came across in the exploratory process include, but are likely not limited to:</p>
<ul>
<li><a href="http://wordpress.org/support/topic/auto-resizing-images-to-fit-max-width">Auto resizing images to fit max width?</a> original forum post by <a href="http://wordpress.org/support/profile/caffeinedreamer">caffeinedreamer</a></li>
<li><a href="http://wordpress.org/support/topic/should-i-edit-mediaphp">Should I edit media.php?</a> original forum post by <a href="http://wordpress.org/support/profile/avalera">avalera</a></li>
</ul>
<p>Want to further alter the way captions are handled in WordPress? This plugin looks very interesting:</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/links-in-captions/">Links in Captions</a>, by <a href="http://profiles.wordpress.org/users/katzwebdesign/">katzwebdesign</a></li>
</ul>
<p><strong>About RSS Responsive Caption<br />
</strong><em>from the documentation section of the plugin:</em><strong><br />
</strong></p>
<p><em>This plugin allows publishers to better control the width of photos that use the WordPress caption shortcode feature, when that content is displayed in RSS feed readers like Google Reader, as displayed on small-screen mobile devices. </em></p>
<p><em>This plugin accomplishes the same thing that adjusting the &#8220;function img_caption_shortcode&#8221; code in includes/media.php would, but allows the user to automatically update WordPress without worrying about losing these changes. </em></p>
<p><em>It is the author&#8217;s hope that in future releases of WordPress (post 3.3), this plugin will prove unnecessary if (hard-working, responsive-minded) WordPress core developers decide to include the fix in newer versions of the awesome great open source software we have all come to love.</em></p>
<p>(Hint, hint)</p>
<p><strong>Download my first-ever WordPress plugin here:</strong></p>
<p><a href="http://wordpress.org/extend/plugins/rss-responsive-caption">RSS Responsive Caption</a><a href="http://wordpress.org/extend/plugins/rss-responsive-caption"></p>
<p>http://wordpress.org/extend/plugins/rss-responsive-caption</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2011/12/18/rss-responsive-caption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which problem is worth solving first?</title>
		<link>http://brandonmoeller.com/blog/2011/06/02/which-is-first/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=which-is-first</link>
		<comments>http://brandonmoeller.com/blog/2011/06/02/which-is-first/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 23:34:45 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://brandonmoeller.com/?p=2283</guid>
		<description><![CDATA[Joshua Porter wrote a great article about how one gauges which problems should be fixed first, on his co-written blog 52 Weeks of UX. As a software UX designer &#8212; that&#8217;s &#8220;user experience designer&#8221; for those of us who don&#8217;t &#8230; <a href="http://brandonmoeller.com/blog/2011/06/02/which-is-first/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://brandonmoeller.com/wp-content/uploads/2011/06/which-one-first2-300x300.jpg" alt="Which problem first?" title="which-one-first2" width="300" height="300" class="alignright size-medium wp-image-2285" />Joshua Porter wrote a great <a href="http://52weeksofux.com/post/6069568681/how-to-identify-the-best-design-problems">article</a> about how one gauges which problems should be fixed first, on his co-written blog <em>52 Weeks of UX</em>. </p>
<p>As a software UX designer &mdash; that&#8217;s &#8220;user experience designer&#8221; for those of us who don&#8217;t speak geek &mdash; Porter makes some great points in his article that could apply to working as a web designer/developer in a large organization. </p>
<p>These sort of web design jobs are challenging and I&#8217;ve found the most important rule to remember is that <I>We can&#8217;t do everything.</i> </p>
<p>But we can do a lot. And we can make websites better &mdash; and in the process increase the website&#8217;s usability and, more importantly, the effectiveness of our audience at accomplishing tasks that they set out to achieve when they visit the website. </p>
<p>But how do we do <i>that</i>?</p>
<p>While keeping in mind what Porter notes: </p>
<blockquote><p>&#8220;Unfortunately, there are far more problems than there are designers to solve them. So how do you know you&#8217;re solving a problem that&#8217;s worth solving?&#8221;</p></blockquote>
<p>Porter offers three questions that can guide a UX designer in their prioritization of problems: </p>
<ul>
<li>Are people frustrated (with the problem)?</li>
<li>Are people actively trying to solve it?</li>
<li>Are people already spending money (to solve the problem)?</li>
</ul>
<p>To answer these questions, Porter suggests interviewing users (with a very familiar <a href="http://52weeksofux.com/post/890288783/the-five-ws-of-ux">Five Ws</a> technique and observing how they currently work to solve the problem at hand using the existing system. </p>
<p>In web development, it&#8217;s not this simple. We can analyze web traffic to determine a website&#8217;s most popular pages &mdash; and we can even trace the traffic patterns that users took to arrive at these pages. And we can certainly interview website stakeholders within the organization to determine how their needs are being met. </p>
<p>On the web it&#8217;s even harder to gauge what the problems are with an existing website because the audience typically consists of different populations with different needs. One section of the audience may not care one bit about completing any task other than the one they came to the website for. These different audiences can include, but are not limited to, the following, in absolutely no particular order:</p>
<ol>
<li>Current _____ (customers, residents, students, etc)</li>
<li>Prospective _____ (customers, residents, students, etc)</li>
<li>Stakeholders (employees, staff, faculty, elected officials, etc)</li>
<li>The Media (sure, they&#8217;re likely at least one of the above, too, but they have special needs)</li>
<li>Volunteers and Donors (if any, not quite stakeholders and as such, have special needs, too)</li>
</ol>
<p>There may be more audiences depending on the website and its organizational purpose. </p>
<p>We know that, for most audiences, the longer it takes to complete a task on the website, the greater the frustration. When this frustration is multiplied by the frustration of the task at hand (doing something they have to do and not what they want to do; like paying money or filing paperwork), the poorly organized website experience sticks with them. </p>
<p>And we know some audiences actually don&#8217;t have tasks they want to complete. They are looking for general information &mdash; they are casually &#8220;surfing&#8221; &mdash; they are scouring for something intangible and unquantifiable: A feeling. So, OK, maybe they are looking to complete a task &mdash; but that task doesn&#8217;t have a result that can be quantified. </p>
<p>Sometimes, in an attempt to meet all of the needs of all of the audiences, the result is a disorganized mess that fails at satisfying the needs of anyone. We&#8217;ve all seen these kind of websites. </p>
<p>Making sense of this disorder &mdash; and preventing it from creeping back in &mdash; is really, what the job of a modern designer/developer is all about, and it&#8217;s as important as ensuring that the pixels are pretty. </p>
<p>And as Porter suggests, to succeed in solving problems for an audience, one needs to understand each distinct audience and create a rubric of questions to determine if those problems are worth solving. </p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2011/06/02/which-is-first/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Ideas for iPad</title>
		<link>http://brandonmoeller.com/blog/2011/01/04/adobe-ideas-for-ipad/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adobe-ideas-for-ipad</link>
		<comments>http://brandonmoeller.com/blog/2011/01/04/adobe-ideas-for-ipad/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 02:37:59 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Adobe Ideas]]></category>

		<guid isPermaLink="false">http://brandonmoeller.com/blog/2011/01/04/adobe-ideas-for-ipad/</guid>
		<description><![CDATA[Adobe Ideas allows for quick and simple iPad sketching. This is one of my first sketches: This is a sketch of a record, inspired by the latest issue of the Oxford American. This post was published via the WordPress app &#8230; <a href="http://brandonmoeller.com/blog/2011/01/04/adobe-ideas-for-ipad/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Adobe Ideas allows for quick and simple iPad sketching.</p>
<p>This is one of my first sketches:</p>
<p><img class="alignnone size-full wp-image-1852" title="record" src="http://brandonmoeller.com/wp-content/uploads/2011/01/record.jpg" alt="Record" width="450" height="338" /></p>
<p>This is a sketch of a record, inspired by the latest issue of the <em>Oxford American</em>. This post was published via the WordPress app for iPad. (Update: Yeah, well, that doesn&#8217;t work too well, so I reposted it normally on a machine designed for work).</p>
<p>Here is another one:</p>
<p><img class="alignnone size-full wp-image-1854" title="stars" src="http://brandonmoeller.com/wp-content/uploads/2011/01/stars.jpg" alt="stars" width="450" height="338" /></p>
<p>Here&#8217;s a wild cat:</p>
<p><img class="alignnone size-full wp-image-1855" title="wildcat" src="http://brandonmoeller.com/wp-content/uploads/2011/01/wildcat.jpg" alt="wildcat" width="450" height="338" /></p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2011/01/04/adobe-ideas-for-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The July redesign</title>
		<link>http://brandonmoeller.com/blog/2010/07/22/the-july-redesign-of-brandonmoeller-com/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-july-redesign-of-brandonmoeller-com</link>
		<comments>http://brandonmoeller.com/blog/2010/07/22/the-july-redesign-of-brandonmoeller-com/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 03:01:25 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[BrandonMoeller.com]]></category>
		<category><![CDATA[Sites]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=1265</guid>
		<description><![CDATA[It has been two weeks since my last redesign. My redesign project for BrandonMoeller.com began on July 5 and ended a week later on July 11, and I&#8217;m very happy with the results. The previous design had served me well &#8230; <a href="http://brandonmoeller.com/blog/2010/07/22/the-july-redesign-of-brandonmoeller-com/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_1721" class="wp-caption alignleft" style="max-width: 100% !important; height: auto; width: 328px"><a href="http://brandonmoeller.com/wp-content/uploads/2010/07/square-text-web1.jpg"><img class="size-full wp-image-1721" title="BrandonMoeller.com" src="http://brandonmoeller.com/wp-content/uploads/2010/07/square-text-web1.jpg" alt="BrandonMoeller.com" width="318" height="318" /></a><p class="wp-caption-text">BrandonMoeller.com</p></div>
<p>It has been two weeks since my last redesign.</p>
<p>My redesign project for BrandonMoeller.com began on July 5 and ended a week later on July 11, and I&#8217;m very happy with the results.</p>
<p>The <a href="http://www.brandonmoeller.com/old_design100710/index.html)" target="_blank">previous design</a> had served me well for a number of years, from Feb. 6, 2008 to July 5, 2010.</p>
<p>It was time for a change.</p>
<p><strong>COLORS</strong></p>
<div id="attachment_1269" class="wp-caption alignleft" style="max-width: 100% !important; height: auto; width: 460px"><img class="size-full wp-image-1269" src="http://brandonmoeller.com/wp-content/uploads/2010/07/GoodFriends-palette-web-crop.jpg" alt="The Good Friends color palette, used on the new BrandonMoeller.com" width="450" height="102" /><p class="wp-caption-text">The Good Friends color palette, used on the new BrandonMoeller.com</p></div>
<p>I started by deciding on a color palette. I chose &#8220;<a href="http://www.colourlovers.com/palette/77121/Good_Friends" target="_blank">Good Friends</a>&#8221; desgined by Colour Lovers user <a href="http://www.colourlovers.com/lover/Yasmino" target="_blank">Yasmino</a>.</p>
<p><strong>FONTS</strong></p>
<p>Next, I chose Franklin Gothic FS by <a href="http://www.fontsite.com/download-fonts-f-g/franklin-gothic/" target="_blank">FontSite Inc.</a> to be my official font, so I bought the whole family from <a href="http://www.fontspring.com/fonts/fontsite/franklin-gothic-fs" target="_blank">FontSpring.com</a>, and unlimited licenses to put it on as many websites as I please. The two fonts currently used on the site are Franklin Gothic FS Medum Condensed and Franklin Gothic FS Book. I even incorporate these fonts in my blog.</p>
<p>A picked a (free) secondary font  from FontSpring called <a href="http://www.fontspring.com/fonts/philatype/merge" target="_blank">Merge Regular</a> from <a href="http://www.philatype.com/" target="_blank">Philatype</a>. I really like this font, but I just don&#8217;t have many places to put it at the moment. Currently, it makes the text in my sidebar on my &#8220;<a href="http://www.brandonmoeller.com/hire/index.php" target="_blank">Hire Me</a>&#8221; page stand apart.</p>
<p><strong>A SIMPLER DESIGN</strong></p>
<p>I wanted a simplistic design that would allow the content to shine. So, I spent a lot of time revising my content, consolidating pages and reducing clutter. I got it down to five pages, and developed intuitive titles for the pages: &#8220;home,&#8221; &#8220;about,&#8221; &#8220;hire me,&#8221; &#8220;photos,&#8221; and &#8220;blog.&#8221; I wanted my homepage to be free of the boring introductory text that — for whatever reason — everyone else is convinced they must have. However, I think visitors to my website are aware that they&#8217;re at my website, and I&#8217;d rather have graphics and the content to do the talking.</p>
<div id="attachment_1724" class="wp-caption alignright" style="max-width: 100% !important; height: auto; width: 222px"><a href="http://brandonmoeller.com/wp-content/uploads/2010/07/icon-crop-web1.jpg"><img class="size-full wp-image-1724" title="A sample vector-based icon as it appears on the homepage." src="http://brandonmoeller.com/wp-content/uploads/2010/07/icon-crop-web1.jpg" alt="A sample vector-based icon as it appears on the homepage." width="212" height="212" /></a><p class="wp-caption-text">A sample vector-based icon as it appears on the homepage.</p></div>
<p>Being a fan of the social media, I wanted to maintain my previous website&#8217;s homepage feature that listed all of my other pages out there on the Internet. But, instead of a list, I decided to make vector-based graphics for my 10 favorite external sites. Hovering over these images reveals a splash of color and movement. Soon, I&#8217;ll probably use the jQuery javascript library to add more icons in a slider format for the other websites I didn&#8217;t have room to mention.</p>
<p><strong>FACEBOOK + PICASA</strong></p>
<p>Also, I wanted to tap into the Facebook API on the homepage. At launch, I added the famous &#8220;like&#8221; button to the homepage, and future plans including a Facebook comment box on every page. That&#8217;s coming soon. I want more people to hit that &#8220;like&#8221; button, first, though — before I go to the trouble. Ahem. I&#8217;m talking to you.</p>
<p>I also created a new section for my photos using a javascript that embeds my Picasa Web Albums right onto my website, making it appear as though the photos are housed on BrandonMoeller.com. The JavaScript I used was written by Jesse Berman and works just like he promised it would on the open source website <a href="http://sourceforge.net/projects/pwa/" target="_blank">SourceForge</a>.</p>
<p><strong>THE NEW BLOG</strong></p>
<p>Last but not least &#8211; certainly not least because it probably took up most of the time I spent during the redesign — I updated my WordPress blog from version 2.6 something to the brand new WordPress 3.0 &#8220;Thelonious.&#8221; I then took the new standard WordPress theme of Twenty Ten and built on top of it, customizing it to look like the design I created for the new BrandonMoeller.com, allowing for a seamless experience for my blog visitors. When I get around to it, I&#8217;ll likely make the new BrandonMoeller.com into a template file that can be publicly downloaded for anybody who wants to mimic my design, as well as make my WordPress theme build-on available.</p>
<p>I&#8217;m also now tracking the traffic of my website with Google Analytics — I&#8217;m very impressed with what the tool allows me to discover about my visitors.</p>
<p>If you like the new website, please let me know what you like — and why — in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2010/07/22/the-july-redesign-of-brandonmoeller-com/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>‘Oh my God do we love patterns’</title>
		<link>http://brandonmoeller.com/blog/2010/04/16/oh-my-god-do-we-love-patterns/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=oh-my-god-do-we-love-patterns</link>
		<comments>http://brandonmoeller.com/blog/2010/04/16/oh-my-god-do-we-love-patterns/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 01:11:56 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=655</guid>
		<description><![CDATA[Kim&#8217;s sitting right next to me, and she said I should add a comma to the title of this post, but you know what? The article it comes from didn&#8217;t add the punctuation, and I just don&#8217;t feel like ruining &#8230; <a href="http://brandonmoeller.com/blog/2010/04/16/oh-my-god-do-we-love-patterns/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Kim&#8217;s sitting right next to me, and she said I should add a comma to the title of this post, but you know what? The article it comes from didn&#8217;t add the punctuation, and I just don&#8217;t feel like ruining the flow of it. You see?</p>
<p>Also, on a related copy editing tangent, I&#8217;m really glad that the Associated Press changed the style of the word, &#8220;website&#8221; &#8211; previously, it was mandated that it be written as two words with the first one capitalized, as in &#8216;Web site&#8217; &#8211; I found this out today thanks to a colleague who lamented the change. But I love it. It&#8217;s about time. Website, website, website, website, website!</p>
<p>Anyway, back to the title of this post, there was this great blog posting I read this week just because the title was &#8220;<a href="http://www.unmatchedstyle.com/news/the-care-and-feeding-of-a-developer-jason-johnson.php" target="_blank">The Care and Feeding of a Developer</a>&#8221; which, after reading the article, I take to be the title of a presentation given by someone named Jason Johnson who spoke at some conference or something. Whatever! I was just in it for the part where it suggests bosses buy their (web?) developers bigger monitors and other tech gadgets that &#8220;passively&#8221; increase their work performance. There was a bunch of videos in the post &#8211; none of which I watched &#8211; because unless it&#8217;s 30 seconds long and involves a cat on a Roomba, I just won&#8217;t watch it, people.</p>
<p>Anyway, here&#8217;s a quote from the article:</p>
<blockquote><p>&#8220;OK, three of them have some sort of interest in music, and you all listen to music while you hack? Right? Yes, there&#8217;s a connection here &#8211; patterns. Developers love, love, love patterns. Oh my God do we love patterns. We like relational databases, we like constructs and languages that do really neat things and they happen over and over again. So we&#8217;re constantly looking for these patterns to satisfy this need for immediate gratification. We love it.&#8221;</p></blockquote>
<p>Speaking of patterns, I found this great website called <a href="http://www.studioludens.com/repper/lite/" target="_blank">Repper Lite</a> that allows you to make a pattern from a photo you upload. I know how to do this in Photoshop, but what&#8217;s cool about this website, is it has some built in filters that distort the photo similar to a kaleidoscope, and you can alter the photo quicker than Photoshop.</p>
<p>So I uploaded the following photo of my new <a href="http://www.brandonmoeller.com/blog/2010/04/07/neon-cowboy-rose/" target="_blank">Neon Cowboy rose</a>:</p>
<p><em><strong>(UPDATE! Now, click on the photos for a sample page with the pattern)</strong></em></p>
<div id="attachment_659" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 460px"><a href="http://picasaweb.google.com/lh/photo/7Fzi416FYbxYJTvLLcRKOg?feat=directlink" target="_blank"><img class="size-full wp-image-659" src="http://www.brandonmoeller.com/wp-content/uploads/2010/04/101_0720_450.jpg" alt="Neon Cowboy rose" width="450" height="338" /></a><p class="wp-caption-text">Neon Cowboy rose</p></div>
<div id="attachment_660" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 460px"><a href="http://www.brandonmoeller.com/repper/one.html" target="_blank"><img class="size-full wp-image-660" src="http://www.brandonmoeller.com/wp-content/uploads/2010/04/one.jpg" alt="The first pattern I created with Repper Lite." width="450" height="450" /></a><p class="wp-caption-text">The first pattern I created with Repper Lite.</p></div>
<div id="attachment_661" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 460px"><a href="http://www.brandonmoeller.com/repper/two.html" target="_blank"><img class="size-full wp-image-661" src="http://www.brandonmoeller.com/wp-content/uploads/2010/04/two.jpg" alt="Numero dos." width="450" height="450" /></a><p class="wp-caption-text">Numero dos.</p></div>
<div id="attachment_662" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 460px"><a href="http://www.brandonmoeller.com/repper/three.html" target="_blank"><img class="size-full wp-image-662" src="http://www.brandonmoeller.com/wp-content/uploads/2010/04/three.jpg" alt="The last pattern. Which one is your favorite?" width="450" height="450" /></a><p class="wp-caption-text">The last pattern. Which one is your favorite?</p></div>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2010/04/16/oh-my-god-do-we-love-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Squidoo and FlockDraw</title>
		<link>http://brandonmoeller.com/blog/2009/12/02/squidoo-and-flockdraw/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=squidoo-and-flockdraw</link>
		<comments>http://brandonmoeller.com/blog/2009/12/02/squidoo-and-flockdraw/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 02:08:43 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wedding]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=452</guid>
		<description><![CDATA[So, while working on this whole wedding website thingyÂ  &#8211; and avoiding doing what I should be doing &#8211; I have stumbled upon two new (to me) online tools that I am considering implementing. FlockDraw The first one is FlockDraw. &#8230; <a href="http://brandonmoeller.com/blog/2009/12/02/squidoo-and-flockdraw/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So, while working on this whole wedding website thingyÂ  &#8211; and avoiding doing what I should be doing &#8211; I have stumbled upon two new (to me) online tools that I am considering implementing.</p>
<p><strong>FlockDraw</strong></p>
<p>The first one is FlockDraw. And it&#8217;s beyond cool. Somehow, thanks to the amazing power of the Internets, it allows for collaborative drawing. Like, I could be drawing on it, and you could be drawing on it AT THE SAME TIME &#8230; and we can see each other do this &#8230; in real time.</p>
<p>It&#8217;s FLASH based, I believe and it&#8217;s really cool &#8230; when it works. I say this because I drew something at work, and then later today from home, I went to look at it and it was gone. I did post it to Facebook, and though no one commented, maybe someone erased it? Shrugs. See it here:</p>
<p>[It was embedded here. But, I've since removed it - it was not working as I had hoped and was busting my WordPress container.]</p>
<p>Of course, at this moment, it&#8217;s blank again. Sigh. Well, we&#8217;ll see &#8230; maybe it will right itself.</p>
<p>Just in case, I&#8217;ve embedded it here in this non-blog page: <a href="http://www.brandonandkimberly.com/flockdraw.html" target="_blank">http://www.brandonandkimberly.com/flockdraw.html</a> &#8230; It&#8217;s not working as of this writing. The &#8220;embed&#8221; code they give out is wonky, and it doesn&#8217;t even display on my Mac at work. Go figure.</p>
<p>In the meanwhile, the URL for the one I&#8217;ve been playing with is: <a href="http://flockdraw.com/cc0u4z" target="_blank">http://flockdraw.com/cc0u4z</a></p>
<p>UPDATE: Oh wait, now I get it: &#8220;It&#8217;s important to note that these FlockDraw rooms are meant to be disposable â€” once the last person leaves the room, the image disappears.&#8221; from: <a href="http://www.readwriteweb.com/archives/flockdraw_collaborative_drawing_made_easy.php" target="_blank">ReadWriteWeb</a>. But, still, I can&#8217;t seem to get the embedding to work. Sigh.</p>
<p><strong>Squidoo</strong></p>
<p>I&#8217;ve been looking for a guestbook for <a href="http://www.brandonandkimberly.com" target="_blank">www.brandonandkimberly.com</a> because someone has strongly advised me to, and one of the first things I found in a Google search was Squidoo.</p>
<p>Squidoo is a lot like GeoCities, in that it allows anybody to set up a free website. And, that it looks pretty crappy. I hate all the banner ads, as represented in this screenshot:</p>
<p><a href="http://www.brandonmoeller.com/wp-content/uploads/2009/12/squidoo_screenshot450.jpg"><img class="alignnone size-full wp-image-455" src="http://www.brandonmoeller.com/wp-content/uploads/2009/12/squidoo_screenshot450.jpg" alt="" width="450" height="347" /></a></p>
<p>If you&#8217;re interested in seeing the Squidoo page I set up today but likely won&#8217;t continue messing with, see it here: <a href="http://www.squidoo.com/brandonandkim" target="_blank">http://www.squidoo.com/brandonandkim</a> &#8230; Really, I just think I&#8217;m too old for that many ads. However, if anyone clicks on them, I might make money. Ka-ching &#8230; yeah, right.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2009/12/02/squidoo-and-flockdraw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typekit makes the heart grow fonder</title>
		<link>http://brandonmoeller.com/blog/2009/11/21/typekit-makes-the-heart-grow-fonder/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=typekit-makes-the-heart-grow-fonder</link>
		<comments>http://brandonmoeller.com/blog/2009/11/21/typekit-makes-the-heart-grow-fonder/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 17:43:02 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[BrandonMoeller.com]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wedding]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=440</guid>
		<description><![CDATA[TypeKit is here and as more browsers start to adopt the @font-face rule, I decided to take it for the old free trial spin for BrandonandKimberly.com. It was easy. I went to their website, signed up, chose two fonts from &#8230; <a href="http://brandonmoeller.com/blog/2009/11/21/typekit-makes-the-heart-grow-fonder/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>TypeKit is here and as more browsers start to adopt the @font-face rule, I decided to take it for the old free trial spin for BrandonandKimberly.com.</p>
<p>It was easy. I went to their website, signed up, chose two fonts from the free trial selection and specified what domain I will be using them on. The free trial only allows for the use of two fonts on one domain. I then copied the two-line Java call and pasted it into the head of all the site&#8217;s pages, then configured the easy-to-use TypeKit editor to specify which font corresponded to which selector in my HTML/CSS of the site, and after a few minutes, I was done.</p>
<p class="details">I chose<em> <a class="font-name">FF Enzo Web </a></em> <span class="font-byline"><em>by FontFont</em> for my headlines.</span></p>
<p class="details">I chose <em><a class="font-name">Scrivano</a> </em><span class="font-byline"><em>by Outras Fontes</em> for my regular body text. I know, I know â€“ it&#8217;s a little wild. And kind of a little fancy pants, but it really highlights the fact that I&#8217;m using a unique font on my Web site and if you&#8217;re cool enough to have an updated browser, then you&#8217;re cool enough to see it and, perhaps, be inspired by it and the brilliant web developer behind the Web site. All that, and Kim let me, so there. </span></p>
<p>But it doesn&#8217;t work in all the browsers I use. Here&#8217;s the results of my survey:</p>
<h2>Go</h2>
<p><strong>MAC</strong><br />
Firefox 3.5.5<br />
Safari*</p>
<p><strong>PC</strong><br />
Firefox 3.5.5<br />
Internet Explorer 8</p>
<h2>No Go</h2>
<p><strong>Mac</strong><br />
Camino<br />
Google Chrome<br />
Opera</p>
<p><strong>PC</strong><br />
Chrome 3<br />
Internet Explorer 6+7</p>
<p>* Though BrandonandKimberly.com keeps crashing Safari. Doh! Man, I hate that browser.</p>
<p>Also, I&#8217;m kind of disappointed in the way that various browsers display the fonts I chose.</p>
<p>Check out these screen shots. Discuss.</p>
<div id="attachment_442" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 310px"><a href="http://www.brandonmoeller.com/wp-content/uploads/2009/11/ffpc.jpg"><img class="size-full wp-image-442" src="http://www.brandonmoeller.com/wp-content/uploads/2009/11/ffpc.jpg" alt="Firefox 3.5.5 (PC): This is how Typekit displays our wedding Web site on the browser of my choice. " width="300" height="317" /></a><p class="wp-caption-text">Firefox 3.5.5 (PC): This is how Typekit displays our wedding Web site on the browser of my choice. </p></div>
<div id="attachment_444" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 310px"><a href="http://www.brandonmoeller.com/wp-content/uploads/2009/11/ie8.jpg"><img class="size-full wp-image-444" src="http://www.brandonmoeller.com/wp-content/uploads/2009/11/ie8.jpg" alt="Internet Explorer 8 (PC): It doesn't display as nicely, but, maybe that's just my opinon. Notice how the weights of the headlines between this one and FF are inconsistent." width="300" height="317" /></a><p class="wp-caption-text">Internet Explorer 8 (PC): It doesn&#039;t display as nicely, but, maybe that&#039;s just my opinion. Notice how the weights of the headlines between this one and FF are inconsistent.</p></div>
<div id="attachment_445" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 310px"><a href="http://www.brandonmoeller.com/wp-content/uploads/2009/11/ffmac.jpg"><img class="size-full wp-image-445" src="http://www.brandonmoeller.com/wp-content/uploads/2009/11/ffmac.jpg" alt="Firefox 3.5.5 (Mac): It looks pretty good on Firefox for Mac. " width="300" height="317" /></a><p class="wp-caption-text">Firefox 3.5.5 (Mac): It looks pretty good on Firefox for Mac. </p></div>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2009/11/21/typekit-makes-the-heart-grow-fonder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo has really sucked this week</title>
		<link>http://brandonmoeller.com/blog/2009/07/29/yahoo-has-really-sucked-this-week/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=yahoo-has-really-sucked-this-week</link>
		<comments>http://brandonmoeller.com/blog/2009/07/29/yahoo-has-really-sucked-this-week/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 01:40:10 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=336</guid>
		<description><![CDATA[So I use yahoo as my personal e-mail provider. I used to use Hotmail, a long low time ago, for quite a while, until Microsoft gobbled it up and in protest I started using Yahoo! I was brandonmoeller@hotmail.com &#8211; and &#8230; <a href="http://brandonmoeller.com/blog/2009/07/29/yahoo-has-really-sucked-this-week/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So I use yahoo as my personal e-mail provider. I used to use Hotmail, a long low time ago, for quite a while, until Microsoft gobbled it up and in protest I started using Yahoo! I was brandonmoeller@hotmail.com &#8211; and now I&#8217;m brandonmoeller@yahoo.com.</p>
<p>Stick with the little guy, I thought. Of course, if I really cared about the little guy, I would have stuck with Juno. Does anybody remember Juno? I think it pre-dated GeoCities &#8211; and, yes, that was my first web space provider.</p>
<p>Juno was a dial-up ad-based system. You dialed up. It spat out your e-mail, then, disconnected. If you were lucky, and if the seven Houston numbers you had pre-programmed in weren&#8217;t busy. Man, those were the days.</p>
<p>But anyway, I remember having Yahoo mail back when you had, like, only a little bit of space. I was constantly deleting messages to keep from going over my limit. Then, one day, they opened up the floodgates &#8230; and now, size is no longer an issue. But I shouldn&#8217;t say that. You can only send like 20MB in one e-mail. Want twice that? You need to buy their premium product for like $20-30 a year, I believe. The premium product also allows you to export the e-mail into something like Mozilla&#8217;s Thunderbird and/or Microsoft Outlook. I&#8217;m pretty sure this used to be a free feature. Man, I should have configured it before they made it a revenue stream.</p>
<div class="mceTemp">
<div id="attachment_351" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 485px"><a href="http://www.brandonmoeller.com/wp-content/uploads/2009/08/yahoo_screen475.jpg"><img class="size-full wp-image-351" src="http://www.brandonmoeller.com/wp-content/uploads/2009/08/yahoo_screen475.jpg" alt="A screenshot of a Yahoo Mail fail. " width="475" height="297" /></a><p class="wp-caption-text">A screenshot of a Yahoo Mail fail. </p></div>
</div>
<p>Today&#8217;s news that Yahoo will be incorporating Bing into its search system is likely what has my Yahoo mail on the fritz. It&#8217;s also probably why the search function on the Yahoo Groups has sucked for about a year or more &#8230; or, maybe like so many other Yahoo products, maybe they&#8217;ve just abandoned the Yahoo Groups Search function. It makes trying to moderate a group like VINELIST pointless &#8230; so I don&#8217;t, really, anymore.</p>
<div id="attachment_338" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 485px"><a href="http://www.brandonmoeller.com/wp-content/uploads/2009/07/101_4022web.jpg"><img class="size-full wp-image-338" src="http://www.brandonmoeller.com/wp-content/uploads/2009/07/101_4022web.jpg" alt="Random thought of the moment: I miss San Antone." width="475" height="356" /></a><p class="wp-caption-text">Random thought of the moment: I miss San Antone.</p></div>
<p>Yahoo&#8217;s e-mail service is dead in the water so often lately &#8211; and so is it&#8217;s stock price, after today&#8217;s news. And I&#8217;m thinking about jumping. I guess it&#8217;s time for me to get a gmail account. Sigh. Maybe I&#8217;ll pay the premium fee for a Yahoo account, export all my e-mail to a client like ThunderBird, then I&#8217;ll get a free e-mail service that will also allow me to export to said client. With Google Wave coming up, and my current addiction to Google Reader, why the hell not jump onto the Google wagon. It&#8217;s not like they&#8217;re a large evil corporation or anything. Crap. brandonmoeller@gmail.com is already taken. What. The. Hell. Sigh.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2009/07/29/yahoo-has-really-sucked-this-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I to dumb fer Opera UNite</title>
		<link>http://brandonmoeller.com/blog/2009/06/18/i-to-dumb-fer-opera-unite/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=i-to-dumb-fer-opera-unite</link>
		<comments>http://brandonmoeller.com/blog/2009/06/18/i-to-dumb-fer-opera-unite/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 13:59:06 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=171</guid>
		<description><![CDATA[OK. So, for the past couple of days, after seeing all the hype about Opera Unite, I&#8217;ve been trying to share photos between the two computers I use on a daily basis. But for two days in a row, I&#8217;ve &#8230; <a href="http://brandonmoeller.com/blog/2009/06/18/i-to-dumb-fer-opera-unite/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>OK. So, for the past couple of days, after seeing all the hype about Opera Unite, I&#8217;ve been trying to share photos between the two computers I use on a daily basis.</p>
<p>But for two days in a row, I&#8217;ve been failing, and today it looks like part of it is my fault and part of it is Opera&#8217;s fault. As of this writing, I can no longer see the homepage of my Opera Unite account at my primary daytime computer, but when I click on the &#8220;Photo Sharing&#8221; service, those photos pop up. So, I don&#8217;t know if some parts of Opera Unite is down or something &#8211; I was able to see my homepage of my Opera Unite yesterday &#8230;</p>
<p><a href="http://www.brandonmoeller.com/wp-content/uploads/2009/06/deviceunavailable.jpg"><img class="alignnone size-medium wp-image-172" src="http://www.brandonmoeller.com/wp-content/uploads/2009/06/deviceunavailable-300x41.jpg" alt="" width="300" height="41" /></a></p>
<p>Also, when I try to access the files I allowed it to share from home, those files are now unavailable because the &#8220;device (is) unavailable.&#8221; Now this one is my fault.</p>
<p>Lesson learned: the hosting machine must have Opera Unite up and running for the files to be shared (having the computer on and ready is not enough) and the receiving end can then insert the share link in any browser to access those files.</p>
<p>But that&#8217;s a problem for me. I&#8217;ve never used Opera before two days ago, when I heard about Unite, and I downloaded it on a whim.</p>
<p>I&#8217;ll keep trying, however, because I really like the ability to easily share content with someone by giving them a URL link. And at least the photo sharing service looks cool &#8211; so far, the media player service seems lackluster because though I can stream my home MP3 collection anywhere, I can&#8217;t shuffle it all. I can only shuffle each folder (album) at a time. Sigh. I bet that&#8217;s improved, soon, though for now &#8211; though I plan on not giving up on Opera Unite, I think I&#8217;m also going to check out DropBox (mac) and <a href="http://redmondmag.com/articles/2009/03/01/windows-live-mesh.aspx" target="_blank">Windows Mesh</a> thingy. I&#8217;ll fall in love with one solution, soon enough, and then, I will be one synced puppy &#8230; or something.</p>
<p>P.S. I&#8217;m also too stupid to know how to rename folders in Google Reader. Thankfully, <a href="http://en.onsoftware.com/how-to-rename-folders-in-google-reader/" target="_blank">Elena Santos</a> ain&#8217;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2009/06/18/i-to-dumb-fer-opera-unite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySpace: Good riddance or good luck?</title>
		<link>http://brandonmoeller.com/blog/2009/06/17/myspace-good-riddance-or-good-luck/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=myspace-good-riddance-or-good-luck</link>
		<comments>http://brandonmoeller.com/blog/2009/06/17/myspace-good-riddance-or-good-luck/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 20:10:09 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Comments]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=167</guid>
		<description><![CDATA[MySpace is dying. Which is sad, because Kim found me on MySpace but now we spend all of our time on Facebook and &#8230; well, Kim only found me on MySpace because I was smart enough to use my own &#8230; <a href="http://brandonmoeller.com/blog/2009/06/17/myspace-good-riddance-or-good-luck/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>MySpace is <a href="http://bits.blogs.nytimes.com/2009/06/16/myspace-slashes-staff-by-30-percent" target="_blank">dying</a>.</p>
<p>Which is sad, because <a href="http://www.myspace.com/kimkovar" target="_blank">Kim</a> found <a href="http://www.myspace.com/brandonmoeller" target="_blank">me</a> on MySpace but now we spend all of our time on <a href="http://www.facebook.com/brandonmoeller" target="_blank">Facebook</a> and &#8230; well, Kim only found me on MySpace because I was smart enough to use my own name and she could have also found me through <a href="http://www.brandonmoeller.com" target="_blank">www.brandonmoeller.com</a> but, I mean, well &#8230; man! I&#8217;m a geek.</p>
<p>Meanwhile, Facebook is gobbling up the audience of people who want to connect to their friends on a social network. It could easily be replaced by the next big thing that also can&#8217;t figure out how to make money, but that&#8217;s not Twitter because <a href="http://twitter.com/brandonmoeller" target="_blank">Twitter</a> is useless.</p>
<p>Jeff, over at Broken Record, <a href="http://blogs.chron.com/brokenrecord/2009/06/tom_loses_400_friends_to_myspa.html" target="_blank">argues</a> that MySpace should concentrate on what Facebook never figured out how to do: Music and performance art.</p>
<blockquote>
<blockquote><p>&#8220;I&#8217;ve thought for a while now that MySpace should consider focusing primarily on entertainment &#8211; movies, music, comedians, etc. There is a real opportunity to fill a void, particularly since they have the interface and the fan base already in place. It&#8217;s doubtful they&#8217;ll follow that advice, but a site with the size and resources of MySpace could dominate online music.&#8221;</p></blockquote>
</blockquote>
<p>I agree with Jeff (and I commented on his blog) &#8230; but one of the reasons I dread touching MySpace is because it allows its users to do some very uncouth (rhymes with <a href="http://www.youtube.com/watch?v=pKlbBgQHPqo" target="_blank">Sonic Youth</a>) things, like installing way too many bandwidth-clogging graphics and cringe-worthy design.</p>
<div id="attachment_169" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 210px"><a href="http://www.brandonmoeller.com/wp-content/uploads/2009/06/myspace_logo.gif"><img class="size-medium wp-image-169" src="http://www.brandonmoeller.com/wp-content/uploads/2009/06/myspace_logo.gif" alt="MySpace: A place for music logo. " width="200" height="200" /></a><p class="wp-caption-text">MySpace: A place for music logo. </p></div>
<p>I guess we&#8217;ll just have to see if Murdoch&#8217;s MySpace can recover from its downhill trend in a Facebook world &#8230; and what it might mean for local indie artists like <a href="http://www.chasehamblin.com/home.html" target="_blank">Chase Hamblin</a>, who doesn&#8217;t really have his new album online and available anywhere but MySpace and a handful of brick and mortar shops in Houston. Sigh. And it&#8217;s too bad, I&#8217;d order his new one if I could, but don&#8217;t really wanna hear it thru MySpace at this moment. And, I won&#8217;t be able to make Friday&#8217;s CD release party at the Continental Club.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2009/06/17/myspace-good-riddance-or-good-luck/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FriendFeed</title>
		<link>http://brandonmoeller.com/blog/2008/10/19/friendfeed/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=friendfeed</link>
		<comments>http://brandonmoeller.com/blog/2008/10/19/friendfeed/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 23:57:54 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[BrandonMoeller.com]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=113</guid>
		<description><![CDATA[I have begun to play around with FriendFeed and have added it to my Facebook page and most recently to this blog. Does anybody else use FriendFeed? I like how it allows all of my content that I place elsewhere &#8230; <a href="http://brandonmoeller.com/blog/2008/10/19/friendfeed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have begun to play around with FriendFeed and have added it to my Facebook page and most recently to this blog. Does anybody else use FriendFeed? I like how it allows all of my content that I place elsewhere to be placed within it, but I&#8217;m still not sure if this is good or bad. For instance, some content is really only for some eyes. If you&#8217;re my friend, and you&#8217;re internet savvy, then you&#8217;re likely connected to me on one of these social media networks. But FriendFeed allows me to broadcast my activity on these sites here on other pages &#8230; and I&#8217;m not sure if that&#8217;s what I want. Hmmm&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2008/10/19/friendfeed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#039;s Chrome</title>
		<link>http://brandonmoeller.com/blog/2008/09/02/googles-chrome/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=googles-chrome</link>
		<comments>http://brandonmoeller.com/blog/2008/09/02/googles-chrome/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 01:46:07 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=85</guid>
		<description><![CDATA[Well, today I downloaded the new Google Chrome web browser, here. Amazing. And, that&#8217;s just the comic book they leaked to announce it. Now, I&#8217;m not saying Google is the best thing to ever happen to this industry. But, yet &#8230; <a href="http://brandonmoeller.com/blog/2008/09/02/googles-chrome/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Well, today I downloaded the new Google Chrome web browser, <a href="http://www.google.com/chrome">here</a>.</p>
<p>Amazing. And, that&#8217;s just the <a href="http://www.google.com/googlebooks/chrome/">comic book</a> they leaked to announce it.</p>
<p>Now, I&#8217;m not saying Google is the best thing to ever happen to this industry.</p>
<p>But, yet again, they just ratcheted it up a notch.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2008/09/02/googles-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vote for me, for president</title>
		<link>http://brandonmoeller.com/blog/2008/08/10/vote-for-me-for-president/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vote-for-me-for-president</link>
		<comments>http://brandonmoeller.com/blog/2008/08/10/vote-for-me-for-president/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 00:42:40 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=69</guid>
		<description><![CDATA[It&#8217;s true! The Internet has sparked an electorate revolution and the grassroots movement to elect me the president has begun!]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s true! The Internet has sparked an electorate revolution and the grassroots movement to elect me the president has begun!</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2008/08/10/vote-for-me-for-president/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kodak vs. Samsung</title>
		<link>http://brandonmoeller.com/blog/2008/06/23/kodak-vs-samsung/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kodak-vs-samsung</link>
		<comments>http://brandonmoeller.com/blog/2008/06/23/kodak-vs-samsung/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 02:47:30 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/2008/06/23/kodak-vs-samsung/</guid>
		<description><![CDATA[For Father&#8217;s Day, the love of my life gave me a Kodak EasyShare C813 &#8211; that was on sale, she was sure to note &#8211; and I am thrilled. Even though just a few minutes ago I finally took it &#8230; <a href="http://brandonmoeller.com/blog/2008/06/23/kodak-vs-samsung/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For Father&#8217;s Day, the love of my life gave me a Kodak EasyShare C813 &#8211; that was on sale, she was sure to note &#8211; and I am thrilled. Even though just a few minutes ago I finally took it out of its open-proof packaging and put it to work.</p>
<p>In the meanwhile, I bet she&#8217;s either been thinking to herself:</p>
<p>A.) He&#8217;s not really thrilled with the gift</p>
<p>B.)  He&#8217;s secretly planning to return it, get the cash and land himself two adult Frontosas.</p>
<p>C.)  He loves it. He just doesn&#8217;t wanna let on he expects such great gifts.</p>
<p>D.)  I shoulda boughta Coach purse for myself, instead.</p>
<p>Well, no matter what she was thinking, the answer is &#8220;C&#8221; and here is a test run of the new camera vs. the camera I already have &#8211; yet, as she so tenderly noted: &#8220;Everytime you use the damn thing, you say how much you hate it.&#8221;</p>
<p>Let&#8217;s take a look &#8230;</p>
<p><a href="http://www.brandonmoeller.com/wp-content/uploads/2008/06/s7302834mod.jpg" title="s7302834mod.jpg"><img src="http://www.brandonmoeller.com/wp-content/uploads/2008/06/s7302834mod.jpg" alt="s7302834mod.jpg" /></a></p>
<p><em>The first Samsung shot.</em></p>
<p><a href="http://www.brandonmoeller.com/wp-content/uploads/2008/06/100_0001mod.jpg" title="100_0001mod.jpg"><img src="http://www.brandonmoeller.com/wp-content/uploads/2008/06/100_0001mod.jpg" alt="100_0001mod.jpg" /></a></p>
<p><em>The first Kodak shot. </em></p>
<p>Yup. Hands down, the new one&#8217;s better. And, it doesn&#8217;t take several seconds to try to auto focus and decide if it wants to shoot or not. Hooray!</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2008/06/23/kodak-vs-samsung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TV taught me …</title>
		<link>http://brandonmoeller.com/blog/2008/05/05/today-the-tv-taught-me/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=today-the-tv-taught-me</link>
		<comments>http://brandonmoeller.com/blog/2008/05/05/today-the-tv-taught-me/#comments</comments>
		<pubDate>Tue, 06 May 2008 02:08:26 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/2008/05/05/today-the-tv-taught-me/</guid>
		<description><![CDATA[Elektra is a piss-poor action flick. Yawn. There are at least 25 memorable swimsuit moments. Kelsey Grammaer is the producer of Medium, a decent show that involves this woman who dreams the future and who got mad at her husband &#8230; <a href="http://brandonmoeller.com/blog/2008/05/05/today-the-tv-taught-me/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Elektra is a piss-poor action flick. <em>Yawn</em>.</p>
<p>There are at least 25 memorable swimsuit moments.</p>
<p>Kelsey Gramm<strike>a</strike>er is the producer of Medium, a decent show that involves this woman who dreams the future and who got mad at her husband for knowing something he didn&#8217;t want to tell her because he&#8217;s a nice guy.</p>
<p>Jay Leno still reads headlines.</p>
<p>Robert Downey Jr. is Iron Man.</p>
<p>Niles was instantly attracted to Daphne when they first met on the Lifetime 11 p.m. rerun.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2008/05/05/today-the-tv-taught-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ScribeFire : Testing</title>
		<link>http://brandonmoeller.com/blog/2008/02/12/scribefire-testing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=scribefire-testing</link>
		<comments>http://brandonmoeller.com/blog/2008/02/12/scribefire-testing/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 03:43:45 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/2008/02/12/scribefire-testing/</guid>
		<description><![CDATA[ScribeFire :: Firefox Add-ons &#8230; I&#8217;m blogging this entry from this page on the Mozilla.org site, thanks to my new Scribe Fire add-on for FireFox. My favorite browser. A browser that makes sense. A browser that is constantly being developed &#8230; <a href="http://brandonmoeller.com/blog/2008/02/12/scribefire-testing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>ScribeFire :: Firefox Add-ons<br />
 &#8230; I&#8217;m blogging this entry from this page on the Mozilla.org site, thanks to my new Scribe Fire add-on for FireFox. My favorite browser. A browser that makes sense. A browser that is constantly being developed by a happy community of geeks. A browser that makes me glad to be alive. OK, you get the picture. Woo-hoo!</p>
<p class="poweredbyperformancing">Powered by <a href="http://scribefire.com/">ScribeFire</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2008/02/12/scribefire-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arkanoid: The reunion</title>
		<link>http://brandonmoeller.com/blog/2008/01/19/arkanoid-the-reunion/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=arkanoid-the-reunion</link>
		<comments>http://brandonmoeller.com/blog/2008/01/19/arkanoid-the-reunion/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 07:00:12 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/2008/01/19/arkanoid-the-reunion/</guid>
		<description><![CDATA[An hour and a half. Level 17. My reward, this umbrella. Total bliss. A recent stroll at the mall with that certain someone resulted in a conversation about video games. I&#8217;m not talking about those bloody adrenaline-rushing 3-D spectacles of &#8230; <a href="http://brandonmoeller.com/blog/2008/01/19/arkanoid-the-reunion/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.brandonmoeller.com/blog/2008/01/19/arkanoid-the-reunion/arkanoid/" rel="attachment wp-att-22" title="Arkanoid"><img src="http://www.brandonmoeller.com/wp-content/uploads/2008/01/arkanoid_001.thumbnail.png" alt="Arkanoid" height="325" width="345" /></a><br />
<em>An hour and a half. Level 17. My reward, this umbrella. Total bliss.</em></p>
<p>A recent stroll at the mall with that certain someone resulted in a conversation about video games. I&#8217;m not talking about those bloody adrenaline-rushing 3-D spectacles of modern programming and cross-marketing that now passes for the genre. I&#8217;m talkin&#8217; dunh dunh dunh dunh dunh Dunh, DUNH. Doo-doo Doo-doo Doo-doo. Nintendo. The original. NES. What seemed like the sole reason for my existence during a good chunk of the more formative years.</p>
<p>Ah, yes. So I tried downloading the former NES Emulator I had on an old machine ages ago, but I&#8217;m glad it wouldn&#8217;t work on VISTA because who wants something called <a href="http://www.zophar.net/NESticle/">NESticle</a>.</p>
<p>After finding a virtual NES java Web site, I stumbled upon <a href="http://nestopia.sourceforge.net/">NEStopia</a> and this large collection of <a href="http://www.theoldcomputer.com/Libarary%27s/Emulation/NES/ROMs/NES_roms_summary%20M-Z.htm">games</a>. The version of Arkanoid is particularly rewarding because it has infinite lives coded right into to it to ensure hours of seamless fun.</p>
<p>I may never leave the house again.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2008/01/19/arkanoid-the-reunion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

