<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Bizzark</title>
    <link>http://www.bizzark.com</link>
    <description>Latest news and blog articles from Bizzark LLC, an Arizona web development company</description>
    <language>en-us</language>
    <copyright>2010 Bizzark</copyright>
    <managingEditor>brent@bizzark.com</managingEditor>
    <webMaster>brent@bizzark.com</webMaster>
    <pubDate></pubDate>
    <lastBuildDate></lastBuildDate>
    <category>Web Development</category>
    <generator>Bizzark</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <item>
      <title>Rails refactoring fun - looking at old code</title>
      <link>rails-refactoring-fun---looking-at-old-code</link>
      <description>&lt;p&gt;
	Every so often I get to do some updates on code I wrote years ago. It&amp;#39;s often a hideous experience (especially when you&amp;#39;re in a rush and did not write the code), but it can be entertaining and enjoyable. Taking a big sloppy mess of redundancies and complications and making it readable, clean, and orderly&amp;mdash;it&amp;#39;s a satisfying experience refactoring old unrefined code&amp;mdash;a nice guage of your growth as a human being in the small but large area of your life as a programmer.&lt;/p&gt;
&lt;p&gt;
	I&amp;#39;ll share just a few quick examples. The first two are from a Rails project I had originally built when I was getting my hands dirty with Ruby (and was still a bit handicapped by having programmed so long in PHP).&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&lt;strong&gt;Example 1: ActiveRecord scopes&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
		speakers = Page.find_all_by_page_type_id(PageType.find_by_name(&amp;quot;speaker&amp;quot;).id, :conditions=&amp;gt;{:status =&amp;gt; &amp;#39;online&amp;#39;}, :order=&amp;gt;&amp;quot;position&amp;quot;)&lt;/p&gt;
	&lt;p&gt;
		&lt;strong&gt;To...&lt;/strong&gt;&lt;/p&gt;
	&lt;p&gt;
		&amp;nbsp;speakers = Page.speakers&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&lt;strong&gt;Example 2: Unnecessary for loops&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
		&amp;lt;%&amp;nbsp;if page.categories.count &amp;gt; 0&lt;br /&gt;
		&amp;nbsp; &amp;nbsp; c_count = 0&lt;br /&gt;
		&amp;nbsp; &amp;nbsp; page.categories.each do |c|&lt;br /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; c_count+=1&lt;br /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if c_count &amp;gt;1&amp;nbsp;&lt;br /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %&amp;gt;/ &amp;nbsp;&amp;lt;%&lt;br /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; end %&amp;gt;&lt;br /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;%=c.name %&amp;gt;&lt;br /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;%&amp;nbsp;end&amp;nbsp;%&amp;gt;&lt;br /&gt;
		&amp;lt;%&amp;nbsp;end&amp;nbsp;%&amp;gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;strong&gt;To...&lt;/strong&gt;&lt;/p&gt;
	&amp;nbsp;&amp;lt;%= page.categories.map(&amp;amp;:name).join(&amp;quot;/&amp;quot;) ?&amp;gt;&lt;/blockquote&gt;
&lt;p&gt;
	&lt;strong&gt;Example 3: Ambiguous variable names&lt;/strong&gt; -- This was code written by a previous developer. From what I could tell &amp;quot;in&amp;quot; and &amp;quot;out&amp;quot; had nothing to do with what the numbers actually were, nor anything to do with the words &amp;quot;in&amp;quot; and &amp;quot;out&amp;quot;... it caused me a lot of confusion.&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
		EXACT_TARGET_LISTS = {&lt;br /&gt;
		&amp;nbsp; &amp;nbsp; :in &amp;nbsp; &amp;nbsp; &amp;nbsp; =&amp;gt; &amp;#39;867530933&amp;#39;,&lt;br /&gt;
		&amp;nbsp; &amp;nbsp; :out &amp;nbsp; &amp;nbsp; &amp;nbsp;=&amp;gt; &amp;#39;9021055&amp;#39;&lt;br /&gt;
		}&lt;/p&gt;
	&lt;p&gt;
		&lt;b&gt;To...&lt;/b&gt;&lt;/p&gt;
	EXACT_TARGET_LISTS = {&lt;br /&gt;
	&amp;nbsp; &amp;nbsp; :newsletter_welcome &amp;nbsp; =&amp;gt; &amp;#39;867530933&amp;#39;,&lt;br /&gt;
	&amp;nbsp; &amp;nbsp; :member_welcome &amp;nbsp; &amp;nbsp; &amp;nbsp;=&amp;gt; &amp;#39;90210555&amp;#39;&lt;br /&gt;
	}&lt;/blockquote&gt;
</description>
      <author>Brent</author>
      <category></category>
      <pubDate>February 17, 2012</pubDate>
    </item>
    <item>
      <title>Applescript, Omnifocus &amp; Transmit</title>
      <link>applescript-omnifocus-transmit</link>
      <description>&lt;p&gt;
	I&amp;#39;ve been using &lt;a href=&quot;http://www.omnigroup.com/products/omnifocus&quot; target=&quot;_blank&quot;&gt;Omnifocus&lt;/a&gt; now for about 3 months, after struggling to find a good system to keep track of what I&amp;#39;m doing. It&amp;#39;s pretty perfect. Except for one thing.&amp;nbsp;It&amp;#39;s not web based, and the only mobile app it has is for the iPhone. So I can&amp;#39;t access anything on my lists unless I have my computer with me. So, I was daydreaming one day and wondering how I could take a list, and put it online so I could (for instance) go to the grocery store and see exactly what I need to get, and mark off what I put in my cart. Sure I could print it off, but sometimes I can&amp;#39;t do that. And sure, I could use their HTML export, but they don&amp;#39;t have check boxes on them so I can&amp;#39;t check off what I&amp;#39;ve done.&lt;/p&gt;
&lt;p&gt;
	So long story short, I instead decided to spend a good 4 hours, learn a bit of&amp;nbsp;&lt;a href=&quot;http://developer.apple.com/AppleScript/&quot; target=&quot;_blank&quot;&gt;Applescript&lt;/a&gt;, and create a nifty Applescript&amp;nbsp;which exports an Omnifocus list to custom html with check boxes next to each item (&lt;a href=&quot;http://www.brentwejrowski.com/omni/omni.html&quot; target=&quot;_blank&quot;&gt;see an example here&lt;/a&gt;), and automatically uploads it via FTP in &lt;a href=&quot;http://www.panic.com/transmit/&quot; target=&quot;_blank&quot;&gt;Transmit&lt;/a&gt;... all in the click of a button.&lt;/p&gt;
&lt;p&gt;
	Anyways, for anyone who could actually make use of this, here&amp;#39;s what I&amp;#39;ve got:&lt;/p&gt;
&lt;div class=&quot;code&quot;&gt;
	on run&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tell application id &amp;quot;com.omnigroup.OmniFocus&amp;quot; to tell default document&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set PP to project &amp;quot;Grocery Print list&amp;quot; in folder &amp;quot;Personal&amp;quot;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set pptasks to every task of PP where completed is false&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end tell&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set f to ((path to desktop as text) &amp;amp; &amp;quot;omni.html&amp;quot;)&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set nref to open for access file f with write permission&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;write &amp;quot;&lt;br /&gt;
	&amp;lt;html&amp;gt;&lt;br /&gt;
	&amp;lt;head&amp;gt;&lt;br /&gt;
	&amp;lt;title&amp;gt;Omnifocus export - &amp;quot; &amp;amp; (current date) &amp;amp; &amp;quot; &amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;link href=&amp;#39;style.css&amp;#39; media=&amp;#39;screen&amp;#39; rel=&amp;#39;stylesheet&amp;#39; type=&amp;#39;text/css&amp;#39; /&amp;gt;&lt;br /&gt;
	&amp;lt;/head&amp;gt;&lt;br /&gt;
	&amp;lt;body&amp;gt;&lt;br /&gt;
	&amp;lt;div id=&amp;#39;container&amp;#39;&amp;gt;&lt;br /&gt;
	&amp;lt;div class=&amp;#39;title&amp;#39;&amp;gt;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;h1&amp;gt;Omnifocus Applescript Export&amp;lt;/h1&amp;gt;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot; &amp;amp; (current date) &amp;amp; &amp;quot;&lt;br /&gt;
	&amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;ul&amp;gt;&amp;quot; to file f&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;repeat with ot in pptasks&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set testVars to name of ot&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;write &amp;quot;&amp;lt;li&amp;gt;&amp;lt;label&amp;gt;&amp;lt;input type=&amp;#39;checkbox&amp;#39; /&amp;gt;&amp;quot; &amp;amp; testVars &amp;amp; &amp;quot;&amp;lt;/label&amp;gt;&amp;lt;/li&amp;gt;&amp;quot; to file f&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end repeat&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;write &amp;quot;&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;/body&amp;gt;&lt;br /&gt;
	&amp;lt;/html&amp;gt;&amp;quot; to file f&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;close access nref&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tell application &amp;quot;Transmit&amp;quot;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set myFave to item 1 of (favorites whose name is &amp;quot;Brentwejrowski.com&amp;quot;)&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set myRules to (skip rules whose name is &amp;quot;New Rule&amp;quot;)&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tell current tab of (make new document at end)&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;connect to myFave&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tell local browser&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;change location to path &amp;quot;~/Desktop&amp;quot;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end tell&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tell remote browser&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;upload item at path &amp;quot;~/Desktop/omni4.html&amp;quot; to &amp;quot;public_html/omni&amp;quot; with resume mode overwrite&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end tell&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;close remote browser&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end tell&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end tell&lt;br /&gt;
	end run&lt;/div&gt;
</description>
      <author>Brent</author>
      <category></category>
      <pubDate>February 06, 2011</pubDate>
    </item>
    <item>
      <title>A bit of silence, a bit of change</title>
      <link>a-bit-of-silence-a-bit-of-change</link>
      <description>&lt;p&gt;
	I haven&amp;#39;t been too active here. One new website posted in the last 6 months, and not too many blog posts. I also had a sweet e-newsletter going for a few months. Then the tides turned and everything stopped. I am alive, and still coding and designing, among other things. Just not as much under &lt;em&gt;&lt;strong&gt;Bizzark&lt;/strong&gt;&lt;/em&gt;. I&amp;#39;ve been doing majority of my work under a few other local companies, which is why everything here kind of came to a halt. I decided to step back off the stressful pursuit of marketing myself and let other people feed me the work. Much more fun. Unfortunately I don&amp;#39;t think I can post any of the fun stuff I have been working on (A ton of Wordpress websites, some RoR apps, a bit of Flash, and some other random stuff..).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	That being said, the work area will probably be continue being pretty lifeless for a while. &amp;nbsp;But I have some hopes to start some more miscellaneous blog posts. To be continued...&lt;/p&gt;
</description>
      <author>Brent</author>
      <category></category>
      <pubDate>December 31, 2010</pubDate>
    </item>
    <item>
      <title>Awesome error pages</title>
      <link>awesome-error-pages</link>
      <description>&lt;p&gt;
	Not much to say about these except for they are awesomely unique and amusing. I&amp;#39;m actually kind of happy when the twitter website goes down. And I recently found the Oregon Trail error message on Digg and though it was pretty clever.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&lt;img alt=&quot;Digg error message&quot; src=&quot;http://www.bizzark.com/images/attachments/page_48/diggdown.jpg&quot; style=&quot;width: 750px; height: 419px; &quot; /&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;/images/attachments/page_48/twitterdown2.jpg&quot; style=&quot;width: 750px; height: 559px; &quot; /&gt;&lt;/p&gt;
</description>
      <author>Brent</author>
      <category></category>
      <pubDate>September 03, 2010</pubDate>
    </item>
    <item>
      <title>Part 3 - website content and clarity</title>
      <link>part-3-website-content-and-clarity</link>
      <description>&lt;p&gt;
	The subconscious mind of a web surfer is an attention deficit mind. We don&amp;#39;t read through websites, we skim them. We bounce our eyes around from top to bottom looking at the biggest and catchiest items and they try to sort out what makes sense. And if something sticks out... we click, or read more. *see Don&amp;#39;t make me think for good info.&lt;/p&gt;
&lt;p&gt;
	If our website is boring, unclear, and has no visible hierarchy, it will probably turn people away pretty fast. Here&amp;#39;s a couple things that will allow our subconscious mind to surf gracefully:&lt;/p&gt;
&lt;h3&gt;
	Eye candy&lt;/h3&gt;
&lt;p&gt;
	Since most of us only read a small fraction of what&amp;#39;s on a page, we need some sort of clarity to guide us, and some levels of distinction. There should be some level of contrast between the items on a page&amp;mdash;between things like the navigation and the content, or between one piece of information and another. The web surfer enjoys whitespace, large letters, and bold bright colors.&lt;/p&gt;
&lt;h3&gt;
	Sum it up for me, I don&amp;#39;t want to read&lt;/h3&gt;
&lt;p&gt;
	Five straight paragraphs on a page can be a daunting read for us. It sounds stupid but it&amp;#39;s true. Most people just won&amp;#39;t read it. Web surfers need the Spark Notes of Spark Notes. If you split content up into smaller chunks, sum up paragraphs in larger headings, or bold some information so people can see what it&amp;#39;s all about... it may draw people in who would otherwise click away.&lt;/p&gt;
&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;/images/attachments/page_45/small-iStock000012187964XSmall.jpg&quot; style=&quot;float: right; width: 301px; height: 200px; margin-left:10px; margin-bottom:5px;&quot; /&gt;We do what&amp;#39;s in front of us, and go where we can assume a destination. I started playing the guitar 9 years ago because I stumbled upon an grossly old guitar in my closet. I bought this book at the book store because it had a clear and interesting title that intrigued me, it had an interesting summary on the back, and satisfied me when I read it back at home. I found the carrots at the grocery store because I looked around to the walls for the typical veggies area&amp;mdash;the wide open space with no tall shelves, but a few mid level containers with mounds of watermelon, lettuce and bags of potatoes. When things are clear, simple, and concise, we like it... especially on websites.&lt;/p&gt;
</description>
      <author>Brent</author>
      <category></category>
      <pubDate>June 18, 2010</pubDate>
    </item>
    <item>
      <title>Part 2 - on up to date info + transparency</title>
      <link>the-subconscious-mind-of-a-web-surfer-on-up-to-date-info-transparency</link>
      <description>&lt;h2&gt;
	Are you alive?&lt;/h2&gt;
&lt;p&gt;
	With the web world filled with dynamic sites like Facebook, Twiter, blogs, and live webcasts, people now are taken back by sites that just sit and don&amp;#39;t do much. Ten years ago that was normal. Now days there are multiple ways to get in contact with people instantly on the web. Most companies now have twitter accounts and are readily available to spout out their latest news and answer questions. It&amp;#39;s becoming a bigger and bigger part of our world so much so that people now (and especially in the coming years) wonder what&amp;#39;s up with someone who doesn&amp;#39;t have any new content on their website. &lt;i&gt;Do they exist anymore? Are they alive?&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;
	Tell me what you&amp;#39;re doing&lt;/h2&gt;
&lt;p&gt;
	A key question people have when they visit a website is, who are you, or what do you do? This often is found in the about pages, or services pages. And though these may help explain what you do, it may not be enough for the average web surfer now days. People want to get an idea of what type of people run the company, who they are, and how they work. Because we&amp;#39;re constantly being fed this information from so many other sources, it&amp;#39;s just normal. It&amp;#39;s something that web-surfers crave (like I often crave arnold palmers), and it&amp;#39;s also an invaluable tool to be able to give someone insight into who you are or what your company does.&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;
	Spice up your your website with...&lt;/h2&gt;
&lt;ul&gt;
	&lt;li&gt;
		&lt;b&gt;Blogs&lt;/b&gt; - This is a great way to share a whole lot of information on anything. It also is a good way to express your character and personality.&lt;/li&gt;
	&lt;li&gt;
		&lt;b&gt;News&lt;/b&gt; - Let people know what&amp;#39;s going on. What&amp;#39;s the latest thing that&amp;#39;s happened, latest project you&amp;#39;ve worked on or are planning on.&lt;/li&gt;
	&lt;li&gt;
		&lt;b&gt;Twitter&lt;/b&gt;&amp;nbsp;- Twitter is a great way to share information. And it&amp;#39;s quick and easy to use too. Not only using it, but placing your twitter feed on your home page can be a good way to connect.&lt;/li&gt;
	&lt;li&gt;
		&lt;b&gt;Facebook fan pages&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&amp;nbsp;- Another great way to connect with people. Checkout &lt;a href=&quot;http://facebook.com/bizzark&quot; target=&quot;_blank&quot;&gt;my facebook page&lt;/a&gt;.&lt;/span&gt;&lt;br /&gt;
		&lt;/b&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;b&gt;Reviews or testimonials&lt;/b&gt;&amp;nbsp;- I&amp;#39;ve been incorporating these more and more on websites I build. It seems to be fun and useful for everyone. People like reading them and hearing what people have to say, and if people are happy with you they are usually pretty happy to write a few sentences.&lt;/li&gt;
&lt;/ul&gt;
</description>
      <author>Brent</author>
      <category></category>
      <pubDate>May 31, 2010</pubDate>
    </item>
    <item>
      <title>Part 1 - on website design</title>
      <link>the-subconscious-mind-of-a-web-surfer-on-design</link>
      <description>&lt;h2&gt;
	&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 12px; font-weight: normal; &quot;&gt;&amp;nbsp;&lt;/span&gt;A good website design changes the brain&lt;/h2&gt;
&lt;p&gt;
	Our perceptions of everything are deeply connected with how we view them, from the looks and persona of the acquaintance we first meet, to the packaging on the loaf of bread we buy at the grocery store. Hopefully we don&amp;#39;t have a bad habit of solely judging based on appearance. But, to a large extent, it is literally the case that &lt;strong&gt;appearance directly resembles what&amp;#39;s on the inside&lt;/strong&gt;. Here are a few examples of how this crazy connection plays out:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;
		&lt;h3&gt;
			Pretty Packaging&lt;/h3&gt;
		&lt;img alt=&quot;website design and the brain&quot; src=&quot;http://www.bizzark.com/images/attachments/page_41/brain.gif&quot; style=&quot;position: absolute; z-index: -1; width: 298px; height: 400px; margin-left:180px;margin-top:-25px; &quot; /&gt;200 people were brought in a room to taste test 2 different brands of brandy. All the testers were blindfolded. The ratings came out equal. A&amp;nbsp;second test was done: This time they showed the packaging. Brand B won hands down. Third test: &amp;nbsp;Another 200 people came in, and this time they swapped the brandy into opposite bottles. This time brand A won hands down. The&amp;nbsp;conclusion: the package design deeply affected people&amp;#39;s perception of the taste. &lt;span style=&quot;color:#808080;&quot;&gt;*&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;h3&gt;
			The color of a soda can changes taste buds&lt;/h3&gt;
		There was an experiment done where 7up added 15% more yellow to green on their packaging, and people report tasting more lime then lemon flavor and claiming they had changed the taste, when all they changed was the color. &lt;span style=&quot;color:#808080;&quot;&gt;*&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;
		&lt;h3&gt;
			The flimsy business card&lt;/h3&gt;
		Quite a bit can be said about a company based on their business cards, the design and even the way the paper feels. If you have many business cards and flip through them, you&amp;#39;ll find that business cards that look good, are printed well, and feel good are, for the most part, from larger and more well established companies. A flimsy business&amp;nbsp;card often equals a flimsy business. A tacky design and crooked cut card probably resembles a disorganized and poorly established company. People who design or print notice these things when they first pick up and study someone&amp;#39;s card. But most people pick up on these things wtihout even realizing it.&amp;nbsp;&lt;br /&gt;
		&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
	&lt;img align=&quot;right&quot; alt=&quot;Tillamook Cheese!&quot; src=&quot;http://www.bizzark.com/images/attachments/page_41/cheese.jpg&quot; style=&quot;margin-left: 10px; margin-bottom: 10px; width: 225px; height: 225px; margin-top:-20px; &quot; /&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;strong&gt;We usually don&amp;#39;t even think about these things&lt;/strong&gt;. We go to the grocery store and buy the bright yellow cheese with pretty packaging because we assume it&amp;#39;s going to be fresh and tasty cheddar cheese. What we didn&amp;#39;t know was that we probably would not have bought the cheese if they didn&amp;#39;t put the yellow food coloring in it and do a ton of research designing their awesome cheese wrapper.&lt;/p&gt;
&lt;p&gt;
	I buy &lt;a href=&quot;http://www.loaflovetour.com&quot; target=&quot;_blank&quot;&gt;Tillamook Cheese&lt;/a&gt; because (1) it looks like cheese, (2) their wrapper makes them look like a company who knows what they&amp;#39;re doing (making good cheese), and (3) after I eat it I tell myself how good it tastes and go buy Tillamook cheese next time I go to the store.&lt;/p&gt;
&lt;p&gt;
	&lt;strong&gt;The point in all this is&lt;/strong&gt; to say that people subconsciously judge things based on appearance and make choices on a daily basis based on how they perceive things. &lt;strong&gt;We find a website and may stay solely based on the design&lt;/strong&gt;. It may not be the case every time or with everyone, but is a huge contributing factor. It&amp;#39;s usually the first thing we notice when we visit a website, something which often immediately attracts us or turns us aways.&lt;br /&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;div style=&quot;width:230px;font-size:80%;&quot;&gt;
	&lt;hr /&gt;
	* Both of these examples are from &lt;a href=&quot;http://www.amazon.com/Blink-Power-Thinking-Without/dp/0316172324&quot; target=&quot;_blank&quot;&gt;Blink&lt;/a&gt;.&lt;/div&gt;
</description>
      <author>Brent</author>
      <category></category>
      <pubDate>May 17, 2010</pubDate>
    </item>
    <item>
      <title>The subconscious mind of a web surfer - a three part series</title>
      <link>the-subconscious-mind-of-a-web-surfer-a-three-part-series</link>
      <description>&lt;p&gt;
	&lt;em&gt;These people look like they have it together...&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;em&gt;This website looks awful.. this company must not know what they&amp;#39;re doing...&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;em&gt;You&amp;#39;re not what I wanted!&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;em&gt;Is this company in business still? It doesn&amp;#39;t look like it...&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;em&gt;Ooh, I am intrigued. Give me more!..&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;
	&lt;em&gt;How in the world do I contact these people? They must not want to talk...&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&lt;img alt=&quot;Website analytics&quot; src=&quot;/images/attachments/page_33/Analyticsstats.gif&quot; style=&quot;margin-left: 15px; margin-right: 15px; float: right; width: 300px; height: 106px; &quot; title=&quot;If you have Google Analytics setup, a quick way to measure the effectiveness (or I'll call it your Intrigue Factor) of your website is to look at your &amp;quot;Avg.Time On Site&amp;quot;. Looking at certain stats can often give us a pretty clear indication of how well we are doing with this, and even answers as to what works and what doesn't. &quot; /&gt;&lt;/p&gt;
&lt;p&gt;
	If you&amp;#39;ve ever watched yourself carefully while surfing websites (especially when you&amp;#39;re looking for something), you&amp;#39;ll notice how quickly you dismiss certain websites. While this may be a time saver for users, it may also be detrimental to website owners. Too often there are great companies and individuals with poorly designed websites. Even if you may be the greatest at what you do, people may easily dismiss you by your website. And to a certain extent rightfully so. We do this with people all the time. &lt;strong&gt;You can tell a lot about a person&lt;/strong&gt; by the way they dress, the words they use, and by what you see when you enter their bedroom. Psychologist Samuel Gosling did a study to measure how well friends vs strangers know an individual. &amp;nbsp;As it turns out, complete strangers were able to assess a person&amp;mdash;their trustworthiness, conscientiousness, emotional stability, and openness&amp;mdash;better than friends, just by studying their rooms for 15 minutes (via &lt;a href=&quot;http://www.amazon.com/Blink-Power-Thinking-Without/dp/0316172324&quot; target=&quot;_blank&quot;&gt;Blink&lt;/a&gt;, pg 36).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&lt;strong&gt;The same is true for websites&lt;/strong&gt;. People, within seconds, assess the value of a company or person and make decisions on whether or not they want to take further action, or go to another website. Over the coming weeks I will cover some&amp;nbsp;basic things that people subconsciously pick up on while visiting websites:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;
		Week 1 - &lt;strong&gt;Design&lt;/strong&gt;&lt;/li&gt;
	&lt;li&gt;
		Week 2 -&amp;nbsp;&lt;strong&gt;Up to date info &amp;amp; transparency&lt;/strong&gt;&lt;/li&gt;
	&lt;li&gt;
		Week 3 - &lt;strong&gt;Clarity &amp;amp; content&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	Do you ever notice anything specific about websites that either attract and intrigue you, or frustrate and turn you away?&lt;/p&gt;
</description>
      <author>Brent</author>
      <category></category>
      <pubDate>April 05, 2010</pubDate>
    </item>
    <item>
      <title>What in the world is RSS?</title>
      <link>what-in-the-world-is-rss</link>
      <description>&lt;div style=&quot;text-align:center; margin-top:-25px; margin-bottom:100px;&quot;&gt;
	&lt;img alt=&quot;&quot; src=&quot;/images/attachments/page_26/RSSheader.gif&quot; style=&quot;width: 522px; height: 323px; &quot; /&gt;&lt;/div&gt;
&lt;h1&gt;
	Ever see those strange RSS boxes&lt;br /&gt;
	in your browser bar?&lt;/h1&gt;
&lt;div style=&quot;float:left; margin-bottom:25px; margin-right:7px; text-align:center&quot;&gt;
	Firefox&lt;br /&gt;
	&lt;img alt=&quot;RSS Firefox&quot; src=&quot;/images/attachments/page_26/rssfirefox240.gif&quot; style=&quot;border:1px solid #404141&quot; /&gt;&lt;/div&gt;
&lt;div style=&quot;float:left; margin-bottom:25px; margin-right:7px;text-align:center&quot;&gt;
	Safari&lt;br /&gt;
	&lt;img alt=&quot;RSS Safari&quot; src=&quot;/images/attachments/page_26/rsssafari240.gif&quot; style=&quot;border:1px solid #404141&quot; /&gt;&lt;/div&gt;
&lt;div style=&quot;float:left; margin-bottom:25px; text-align:center&quot;&gt;
	Internet Explorer&lt;br /&gt;
	&lt;img alt=&quot;RSS IE8&quot; src=&quot;/images/attachments/page_26/rssie8240.gif&quot; style=&quot;border:1px solid #404141&quot; /&gt;&lt;/div&gt;
&lt;p&gt;
	Or those bright orange RSS icons? Most probably don&amp;#39;t notice them. If you&amp;#39;ve ever clicked them you&amp;#39;ll know that it takes you to a funky format of information. It looks pretty boring. This is an RSS feed.&amp;nbsp;What is it? It&amp;#39;s a standard format of information that makes it easy for computers to decode and understand. It stands for &amp;quot;Really Simple Syndication,&amp;quot; or &amp;quot;Rich Site Summary.&amp;quot; Typically you will find these on websites that have a lot of updates, especially blogs and news websites. What would you do with it?&lt;/p&gt;
&lt;p&gt;
	&lt;br /&gt;
	&lt;br /&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;h1&gt;
	Organized blog reading&lt;/h1&gt;
&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;/images/attachments/page_26/googlreader370.jpg&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 10px; float: right; width: 370px; height: 211px; &quot; /&gt;For those who read more than a few blogs, a feed reader is a great way to keep up to date with your favorite blogs. They allow you to have view things like blogs in one location without going to the actual website. If you browse a lot websites, it would be pretty tedious to visit each site, much less remember them.&amp;nbsp;I currently am subscribed to 117 blogs. I confess many of these I don&amp;#39;t keep tabs on all the time. But keeping these organized through a reader helps me remember them, and browse through them at my convenience. &amp;nbsp;There are a lot of online applications and software that allow you to organize and read blogs. I personally like, and would highly suggest&amp;nbsp;&lt;a href=&quot;http://www.google.com/reader/&quot; target=&quot;_blank&quot;&gt;Google Reader&lt;/a&gt; because it is all stored online, and it is very easy to organize and use. Google Reader is set as my home page, and when I have free time I&amp;#39;ll browse my subscriptions and find interesting articles to read (as well as do this in down time on my phone).&lt;/p&gt;
&lt;p&gt;
	&lt;br /&gt;
	&lt;br /&gt;
	&lt;img alt=&quot;&quot; src=&quot;/images/attachments/page_26/NewspaperFeed256x256.png&quot; style=&quot;margin-left: -75px; float: left; width: 256px; height: 256px; &quot; /&gt;&lt;/p&gt;
&lt;div style=&quot;float:left; width: 569px;&quot;&gt;
	&lt;div&gt;
		&lt;h1&gt;
			Read RSS and&lt;br /&gt;
			change your life&lt;/h1&gt;
		I say everyone really should read blogs. You could probably find a decent blog on virtually any topic. For myself I read mostly design, programming, and photography blogs, as well as blogs from friends and authors, and news. It helps me keep informed about what&amp;#39;s going on in specific industries, peoples&amp;#39; lives, get inspired, and it can even be a good way to communicate with others, via comments and responses. It&amp;#39;s an invaluable resource for staying informed, inspired, and educated.&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
	&lt;p&gt;
		&lt;br /&gt;
		&amp;nbsp;&lt;/p&gt;
	&lt;h2&gt;
		Have a favorite blog you subscribe to?&lt;/h2&gt;
	&lt;p&gt;
		List a few of your favorite below&lt;br /&gt;
		&amp;nbsp;&lt;/p&gt;
	&lt;p&gt;
		Sign up for &lt;a href=&quot;http://google.com/reader&quot; target=&quot;_blank&quot;&gt;Google Reader here&lt;/a&gt;.&lt;br /&gt;
		Here is my &lt;a href=&quot;/blog.xml&quot; target=&quot;_blank&quot;&gt;blog feed URL&lt;/a&gt;, and &lt;a href=&quot;/work.xml&quot; target=&quot;_blank&quot;&gt;work feed URL&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;clearfix&quot;&gt;
	.&lt;/div&gt;
</description>
      <author>Brent</author>
      <category></category>
      <pubDate>March 03, 2010</pubDate>
    </item>
    <item>
      <title>Welcome to the New Website</title>
      <link>welcome-to-the-new-website</link>
      <description>&lt;p&gt;
	Welcome to the new website. After many months of planning and many hours of work, I&amp;#39;ve finally completed the new website along with a new CMS. Why would I create another website? Well apart from it being due time, I thought I would simplify the layout of the website and make it a bit more usable, likable, and useful to the average person (unfortunately some were a bit taken back by the craziness of the 3d background on the old website). Also I thought I would better showcase what I&amp;#39;m capable of by not only building this website in a custom programmed &lt;a href=&quot;/content-management-systems&quot;&gt;content management system&lt;/a&gt;, but by adding practical features that I&amp;#39;ve used with other clients (Testimonials, Twitter &amp;amp; Facebook integration, nifty interactions etc.).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
	&lt;span _fck_bookmark=&quot;1&quot; style=&quot;display: none; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;
	Behind the scenes&lt;/h3&gt;
&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;/images/attachments/page_18/welcomecms.gif&quot; style=&quot;margin-left: 7px; margin-bottom: 7px; float: right; width: 325px; height: 270px; &quot; /&gt;Behind this nifty website is a content management system (or CMS) that I have built. It&amp;#39;s a system that&amp;#39;s evolved over the last couple years; one that I have built to be a foundation for future projects and website, allowing for more complex features while still keeping a simple interface for people like you to manage your website super easily. The system was hand coded myself from scratch using Ruby on Rails (&lt;a href=&quot;http://en.wikipedia.org/wiki/Ruby_on_Rails&quot; target=&quot;_blank&quot;&gt;read more about Rails&lt;/a&gt;,&amp;nbsp;&lt;a href=&quot;http://rubyonrails.org/applications&quot; target=&quot;_blank&quot;&gt;view well known Ruby on Rails websites&lt;/a&gt;). In the future I plan on releasing a public version of the CMS which will allow you to log in and see how it works yourself. Stay tuned for that.&lt;/p&gt;
&lt;p&gt;
	In the meantime, subscribe to my RSS feed to stay tuned for future blogs and work (&lt;a href=&quot;/what-in-the-world-is-rss&quot;&gt;click here for more info on blogs and RSS feeds&lt;/a&gt;). I plan on writing posts regularly. Hopefully it will all be useful and intriguing information pertaining to websites and this crazy world of the internet.&lt;/p&gt;
&lt;p&gt;
	Thanks for stopping by!&lt;/p&gt;
</description>
      <author>Brent</author>
      <category></category>
      <pubDate>February 16, 2010</pubDate>
    </item>
  </channel>
</rss>

