<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Brick By Brick from The Brick Factory</title>
	
	<link>http://blog.thebrickfactory.com</link>
	<description>The Brick Factory Blog</description>
	<lastBuildDate>Thu, 09 Feb 2012 19:05:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TheBivingsReport" /><feedburner:info uri="thebivingsreport" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>38.913961</geo:lat><geo:long>-77.071798</geo:long><image><link>http://www.bivingsreport.com</link><url>http://static.technorati.com/progimages/photo.jpg?uid=204320</url><title>The Bivings Group</title></image><feedburner:emailServiceId>TheBivingsReport</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Five Nifty Drupal Modules</title>
		<link>http://feedproxy.google.com/~r/TheBivingsReport/~3/nCyEQi4iw-o/</link>
		<comments>http://blog.thebrickfactory.com/2012/02/five-nifty-drupal-modules/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 19:05:56 +0000</pubDate>
		<dc:creator>Steve Petersen</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://blog.thebrickfactory.com/2012/02/five-nifty-drupal-modules/</guid>
		<description><![CDATA[We have used Drupal as our primary platform to build web sites since 2007.&#160; It is a robust content management system that allows us to develop powerful websites.&#160; While it has a lot of capability out of the box, one of the most attractive things about Drupal is the wide variety of modules available that [...]]]></description>
			<content:encoded><![CDATA[<p>We have used Drupal as our primary platform to build web sites since 2007.&#160; It is a robust content management system that allows us to develop powerful websites.&#160; While it has a lot of capability out of the box, one of the most attractive things about Drupal is the wide variety of modules available that add functionality to the system.&#160; Below are five nifty modules that we have used.</p>
<p><strong>1. <a href="http://drupal.org/project/draggableviews" target="_blank">Draggable Views</a></strong></p>
<p>We commonly use the Views component of Drupal to display a collection of a certain type of content in an organized fashion.&#160; There are various ways to sort content: alphabetically, publication date, popularity (as dictated by the comments, page views, etc.), and other criteria.&#160; However, we had a client for who such sorting was not helpful.&#160; Further, there are several pages on their site in which they had to manually dictate the order of content in the view.&#160; With a little research we came across the Draggable Views module that allows site admins to use their mouse to drag and drop content where it should be.&#160; It is very handy.</p>
<p><strong>2. <a href="http://drupal.org/project/ip_login" target="_blank">IP Login</a></strong></p>
<p>For another client, we had to place downloadable files into a secure folder – meaning that only users with member roles could access the files.&#160; That in itself is not too complicated, but in addition to the client’s members, we also had to provide access to these files for people at certain organizations.&#160; The client provided ip address ranges for the organizations.&#160; To meet this need, we created a role that only granted access to the applicable files.&#160; Then we created user accounts for each ip address range.&#160; The IP Login module allowed us to automatically log users in coming from those ip ranges for seamless access.</p>
<p><strong>3. <a href="http://drupal.org/project/hide_submit" target="_blank">Hide Submit Button</a></strong></p>
<p>We set up a groups site for a client.&#160; However, we ran into an issue; a small subset of the users are impatient when they hit submit buttons.&#160; Thus, they would hit the submit button.&#160; Before the process finished, they would hit the button again.&#160; This would result in duplicate submissions of comments, in this case.&#160; We used the Hide Submit Button module to display an image indicating to the user that their submission is still being processed.&#160; It further disabled them from hitting submit again until the process completed.&#160; One of the cool things about this module is that the site administrators can designate which pages this behavior occurs.&#160; This module was a quick fix to a problem.</p>
<p><strong>4. <a href="http://drupal.org/project/views_bulk_operations" target="_blank">Views Bulk Operations (VBO)</a></strong></p>
<p>VBO may not be a “sexy” module, but it is handy.&#160; It is mainly geared toward development work when it is not uncommon to make the same change to a vast number of pieces of content on a site.&#160; This can be used in many ways.&#160; When a site was deluged by tens of thousands of spam comments, we used VBO create pages with many more items listed on each page.&#160; Instead of deleting 50 comments at one time, we were able to delete tens of thousands all at once.&#160; The process took over an hour to complete, but that beat deleting 50, waiting, and then deleting 50 more.&#160; This is just one use for this time saving and frustration preventing module.&#160; However, be careful, because you can also screw up a lot of content; so be sure that what you’re doing is correct.&#160; (Needless to say, we love CAPTCHA when it comes to web forms.)</p>
<p><strong>5. <a href="http://drupal.org/project/scanner" target="_blank">Search and Replace Scanner</a></strong></p>
<p>Like VBO, this is not a very sexy module.&#160; However, it has come very useful for us.&#160; We were tasked with porting over thousands of static pages from a site into Drupal.&#160; We had our programmers develop a spider proram to pull out the content into a csv file so that we could import it into Drupal.&#160; However, there was still A LOT of clean up to do, and we soon realized that we came across a lot of common fixes.&#160; This is where the scanner came in.&#160; It was very helpful.&#160; Having said that, like VBO, you have to be careful since you can definitely goof up a site badly if you’re not careful.&#160; I remember pestering our systems team to back up the database a lot while using this module.</p>
<p>Note that the availability of these modules for various versions of Drupal (5, 6, 7…) will vary.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=nCyEQi4iw-o:e0FcfeKbPMM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=nCyEQi4iw-o:e0FcfeKbPMM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=nCyEQi4iw-o:e0FcfeKbPMM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=nCyEQi4iw-o:e0FcfeKbPMM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=nCyEQi4iw-o:e0FcfeKbPMM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=nCyEQi4iw-o:e0FcfeKbPMM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=nCyEQi4iw-o:e0FcfeKbPMM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=nCyEQi4iw-o:e0FcfeKbPMM:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheBivingsReport/~4/nCyEQi4iw-o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.thebrickfactory.com/2012/02/five-nifty-drupal-modules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.thebrickfactory.com/2012/02/five-nifty-drupal-modules/</feedburner:origLink></item>
		<item>
		<title>Viral Video Wars</title>
		<link>http://feedproxy.google.com/~r/TheBivingsReport/~3/3uZ27fj_5H0/</link>
		<comments>http://blog.thebrickfactory.com/2012/02/viral-video-wars/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 14:47:12 +0000</pubDate>
		<dc:creator>Todd Zeigler</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://blog.thebrickfactory.com/2012/02/viral-video-wars/</guid>
		<description><![CDATA[At last year’s Super Bowl, one of the most buzzed about commercials was VW’s “The Force”, which featured a young boy trying to control various objects, including a Volkswagen, with his mind a la Darth Vader.&#160; Here is last year’s ad, which was viewed over 50,000,000 times on YouTube. &#160; The spot proved so popular [...]]]></description>
			<content:encoded><![CDATA[<p>At last year’s Super Bowl, one of the most buzzed about commercials was VW’s “The Force”, which featured a young boy trying to control various objects, including a Volkswagen, with his mind a la Darth Vader.&#160; Here is last year’s ad, which was viewed over 50,000,000 times on YouTube.</p>
<p><iframe height="315" src="http://www.youtube.com/embed/R55e-uHQna0" frameborder="0" width="560" allowfullscreen="allowfullscreen"></iframe></p>
<p>&#160;</p>
<p><span id="more-285"></span>
<p>The spot proved so popular that VW continued to run the spot after the Super Bowl and followed up with a sequel this year that featured a Star Wars spoof at the end. </p>
<p><iframe height="315" src="http://www.youtube.com/embed/0-9EYFJ4Clo" frameborder="0" width="560" allowfullscreen="allowfullscreen"></iframe></p>
<p>Seeking to gain some attention by riding on the campaign’s coattails, Greenpeace UK launched a <a href="http://vwdarkside.com/">Star Wars-themed microsite and viral video</a> that sough to pressure VW to change its stance on environmental regulations in Europe.&#160; It calls on the company to turn away from the “dark side&#8217;” and to embrace more progressive environmental policies.&#160; Below is the viral video that was the centerpiece of the campaign.&#160; </p>
<p> <iframe height="315" src="http://www.youtube.com/embed/nXndQuvOacU" frameborder="0" width="560" allowfullscreen="allowfullscreen"></iframe>
<p>The campaign has worked.&#160; The <a href="http://vwdarkside.com/">petition</a> that is the center of the campaign has been signed by over 500,000 people, an accompanying <a href="http://www.facebook.com/vwrebellion">Facebook page</a> has over 75,000 fans, the video has been viewed over <a href="http://www.youtube.com/watch?v=nXndQuvOacU&amp;feature=player_embedded">1,100,000 times on YouTube</a>, and the campaign has generated a ton of earned media over the last six months.</p>
<p>Nicely done, Greenpeace.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=3uZ27fj_5H0:nh7xZN9cPlQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=3uZ27fj_5H0:nh7xZN9cPlQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=3uZ27fj_5H0:nh7xZN9cPlQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=3uZ27fj_5H0:nh7xZN9cPlQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=3uZ27fj_5H0:nh7xZN9cPlQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=3uZ27fj_5H0:nh7xZN9cPlQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=3uZ27fj_5H0:nh7xZN9cPlQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=3uZ27fj_5H0:nh7xZN9cPlQ:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheBivingsReport/~4/3uZ27fj_5H0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.thebrickfactory.com/2012/02/viral-video-wars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.thebrickfactory.com/2012/02/viral-video-wars/</feedburner:origLink></item>
		<item>
		<title>Grading the GOP Presidential Candidates on Mobile</title>
		<link>http://feedproxy.google.com/~r/TheBivingsReport/~3/XBxckGxucTc/</link>
		<comments>http://blog.thebrickfactory.com/2012/02/grading-the-gop-presidential-candidates-on-mobile/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 22:15:20 +0000</pubDate>
		<dc:creator>Todd Zeigler</dc:creator>
				<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://blog.thebrickfactory.com/2012/02/grading-the-gop-presidential-candidates-on-mobile/</guid>
		<description><![CDATA[Back in the heady days of June 2011, I posted an analysis of Presidential candidates use of mobile in their campaigns.  My research showed that at that time only President Obama was making much of an effort in the mobile space.   With the end of the Republican primary in sight, and having recently done a [...]]]></description>
			<content:encoded><![CDATA[<p>Back in the heady days of June 2011, I posted an analysis of <a href="http://www.bivingsreport.com/2011/are-2012-presidential-candidates-embracing-mobile-not-so-much/">Presidential candidates use of mobile</a> in their campaigns.  My research showed that at that time only <a href="http://www.bivingsreport.com/2011/are-2012-presidential-candidates-embracing-mobile-not-so-much/">President Obama was making much of an effort in the mobile space</a>.   With the end of the Republican primary in sight, and having recently done a deep dive on <a href="http://blog.thebrickfactory.com/2012/01/barack-obama-and-responsive-design/">President Obama’s mobile optimization efforts</a>, I figured it would be a good time to take a another look at how the remaining Republican candidates are using mobile.   This time out, I took a look at four primary criteria:</p>
<ul>
<li>Does the campaign have a version of their main website optimized for mobile?</li>
<li>Does the candidate offer supporters a way to sign up for SMS updates?</li>
<li>Does the campaign have an official iPhone or Android application?</li>
</ul>
<p>The results sort of speak for themselves.  Romney’s mobile optimized website is the only current mobile initiative by a Republican candidate.</p>
<table width="499" border="1" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td valign="top" width="107"><strong>Candidate</strong></td>
<td valign="top" width="100"><strong>Mobile Site</strong></td>
<td valign="top" width="103"><strong>Text Updates</strong></td>
<td valign="top" width="100"><strong>iPhone App</strong></td>
<td valign="top" width="87"><strong>Android App</strong></td>
</tr>
<tr>
<td valign="top" width="107">Newt Gingrich</td>
<td valign="top" width="100">No</td>
<td valign="top" width="103">No</td>
<td valign="top" width="100">No</td>
<td valign="top" width="88">No</td>
</tr>
<tr>
<td valign="top" width="107">Ron Paul</td>
<td valign="top" width="99">No</td>
<td valign="top" width="103">No</td>
<td valign="top" width="99">No</td>
<td valign="top" width="89">No</td>
</tr>
<tr>
<td valign="top" width="107">Mitt Romney</td>
<td valign="top" width="99">Yes</td>
<td valign="top" width="103">No</td>
<td valign="top" width="99">No</td>
<td valign="top" width="90">No</td>
</tr>
<tr>
<td valign="top" width="107">Rick Santorum</td>
<td valign="top" width="99">No</td>
<td valign="top" width="103">No</td>
<td valign="top" width="99">No</td>
<td valign="top" width="91">No</td>
</tr>
</tbody>
</table>
<p><strong><span style="font-size: medium;">Mobile Sites</span></strong></p>
<p>While extremely simple, the Romney campaign actually has a pretty <a href="http://m.mittromney.com/">good mobile site</a>.   The homepage design is clean and presents the user with obvious choices.  Visitors can click to get to the desktop site if they so choose.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="home" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/02/home1.jpg" alt="home" width="415" height="690" border="0" /></p>
<p><span id="more-280"></span>The blog and video sections are easy to use on my iPhone, as are the Donate and Volunteer forms (screenshot below).</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="blog_screens" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/02/blog_screens.jpg" alt="blog_screens" width="600" height="386" border="0" /></p>
<p>The Romney approach to mobile is an interesting contrast to the strategy taken by the <a href="http://blog.thebrickfactory.com/2012/01/barack-obama-and-responsive-design/">Obama campaign</a>.  Instead of trying to make his entire site work on mobile like Obama 2012, Romney takes a “greatest hits” approach and only displays content that is mission critical.  I personally prefer the Romney approach.  By recognizing the constraints of mobile design, Romney has created a better experience for users than the Obama campaign.   Judge for yourself.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="mittvobama" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/02/mittvobama.jpg" alt="mittvobama" width="600" height="444" border="0" /></p>
<p>In the end though, neither campaign’s mobile sites are extraordinary.  Both feel like an opportunity missed to me.</p>
<p><span style="font-size: medium;"><strong>Thoughts on Apps and Text Messaging</strong></span></p>
<p>The failure of the campaigns to build iPhone and Android applications didn’t surprise me.  Building an app is expensive and time consuming.  And given that most apps never gain traction, the ROI is questionable.  Building an app is an advanced tactic that you probably aren’t going to pursue until you have a bunch of other boxes checked off.</p>
<p>Given the hype around President Obama’s 2008 SMS strategy, which included announcing his <a href="http://articles.businessinsider.com/2008-08-23/tech/29987606_1_obama-campaign-obama-vp-text-message">VP pick via text message</a>, I expected the Republicans to be actively recruiting text message subscribers.  If I had to guess, I would venture that the choice to not aggressively use text messaging comes down to money.  Obama’s text message about the Biden pick may have reached 3,000,000 people, but it is estimated to have cost the campaign <a href="http://articles.businessinsider.com/2008-08-23/tech/29987606_1_obama-campaign-obama-vp-text-message">over $1,000,000 to send</a>.  Republicans involved in an expensive primary may have reached the conclusion that there are more financially prudent ways to keep in touch with supporters than text messaging.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=XBxckGxucTc:h2JlsEKN7IQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=XBxckGxucTc:h2JlsEKN7IQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=XBxckGxucTc:h2JlsEKN7IQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=XBxckGxucTc:h2JlsEKN7IQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=XBxckGxucTc:h2JlsEKN7IQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=XBxckGxucTc:h2JlsEKN7IQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=XBxckGxucTc:h2JlsEKN7IQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=XBxckGxucTc:h2JlsEKN7IQ:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheBivingsReport/~4/XBxckGxucTc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.thebrickfactory.com/2012/02/grading-the-gop-presidential-candidates-on-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.thebrickfactory.com/2012/02/grading-the-gop-presidential-candidates-on-mobile/</feedburner:origLink></item>
		<item>
		<title>5 Digital Super Bowl Campaigns to Watch</title>
		<link>http://feedproxy.google.com/~r/TheBivingsReport/~3/eoC2F9_60nY/</link>
		<comments>http://blog.thebrickfactory.com/2012/01/5-digital-super-bowl-campaigns-to-watch/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 15:35:41 +0000</pubDate>
		<dc:creator>Todd Zeigler</dc:creator>
				<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://blog.thebrickfactory.com/2012/01/5-digital-super-bowl-campaigns-to-watch/</guid>
		<description><![CDATA[Last year, 111 million people watched the Super Bowl in the United States alone.  Research estimates that  “about 60% of people watching the game plan to have a second screen running — whether it’s a laptop, tablet or a smartphone.”  Undoubtedly, a lot of people will be using those second screens to chat about the [...]]]></description>
			<content:encoded><![CDATA[<p>Last year, <a href="http://www.huffingtonpost.com/2011/02/07/super-bowl-2011-ratings-s_n_819559.html">111 million people watched</a> the Super Bowl in the United States alone.  Research <a href="http://mashable.com/2012/01/26/exclusive-coca-cola-polar-bears-will-watch-react-to-super-bowl-in-real-time/">estimates that</a>  “about 60% of people watching the game plan to have a second screen running — whether it’s a laptop, tablet or a smartphone.”  Undoubtedly, a lot of people will be using those second screens to chat about the game on various social media platforms, such as Twitter and Facebook.</p>
<p>Given this reality, marketers are desperately trying to launch digital campaigns that build buzz on social media channels prior to the game, and that maximize the impact of those $3.5 million Super Bowl ads during and after the event.  Following are five examples of innovative digital campaigns that will run around this year’s game.</p>
<p><span style="font-size: medium;"><strong>(1) VW Star Wars Ads</strong></span></p>
<p>Last year, automaker Volkswagen capitalized on our collective obsession with Star Wars by running a great ad in which a <a href="http://www.youtube.com/watch?v=R55e-uHQna0">young boy dressed as Darth Vader tried to control various objects</a> with his mind, Jedi style.  This year, VW has released a viral video of dogs barking the theme to Star Wars as a way of building buzz about its Super Bowl ad prior to its airing.  It has worked &#8211; he video (embedded below) has already been viewed over 9,000,000 times on YouTube.</p>
<p><iframe src="http://www.youtube.com/embed/6ntDYjS0Y3w" frameborder="0" width="560" height="315"></iframe></p>
<p>In addition, VW has built a tool on their website that allows you to send a Star Wars themed “<a href="http://web.vw.com/star-wars-invite/">Intergalactic Invite</a>” to your game day party to friends and family.</p>
<p>I love the barking dog video, but the “Intergalactic Invite” thing didn’t hold my interest.  Overall though, I’m looking forward to seeing the new commercial.  So mission accomplished.</p>
<p><span id="more-271"></span></p>
<p><strong><span style="font-size: medium;">(2) Coca Cola Polar Bears</span></strong></p>
<p>Coca Cola has launched a campaign in which its polar bear mascots will host a virtual game watching party, <a href="http://mashable.com/2012/01/26/exclusive-coca-cola-polar-bears-will-watch-react-to-super-bowl-in-real-time/">reacting to the game and commercials in real time</a>.  To participate visit <a href="https://apps.facebook.com/cokepolarbowl/">CokePolarBowl.com</a>, which redirects to a <a href="https://apps.facebook.com/cokepolarbowl/">Facebook application</a> that asks people to RSVP for the game watching party.  Coca Cola is donating $1 to the World Wildlife Fund’s efforts to protect polar bears in the arctic for every RSVP.</p>
<p><iframe src="http://www.youtube.com/embed/3h_fjYBtVhk" frameborder="0" width="560" height="315"></iframe></p>
<p>This particular campaign seems like a bit of a high wire act.  It will either be hilarious or make you cringe.  Not a log of middle ground.</p>
<p><span style="font-size: medium;"><strong>(3) Pepsi  Shazam Integration</strong></span></p>
<p>Not to be outdone by Coke, <a href="http://www.newsday.com/business/technology/super-bowl-advertisers-seek-social-media-buzz-1.3489500">Pepsi will run a commercial</a> during the game that features &#8220;X Factor USA&#8221; winner <a href="http://www.newsday.com/topics/Melanie_Amaro">Melanie Amaro</a> performing the <a href="http://www.newsday.com/topics/Otis_Redding">Otis Redding</a> song &#8220;Respect.&#8221;   To facilitate the selling of the single, viewers can use the Shazam app on their phones to capture audio of the song and then download a free video of the performance.</p>
<p>While interesting, I’m not sure the Shazam integration will be a big hit, as the vast majority of people won’t have the app.  And even those that do have it are unlikely to turn on the app and record the song in time.  Plus, I’m sure video of the performance will be available on YouTube for free anyway, so why bother?</p>
<p><span style="font-size: medium;"><strong>(4) NFL Social Media Command Center</strong></span></p>
<p>In an effort to better service fans, Super Bowl host city Indianapolis has built a social media command center, where 20 <a href="http://mashable.com/2012/01/21/super-bowl-xlvi-social-media/">social media experts will</a> “tweet directions to fans in search of parking, direct visitors to Indianapolis’s best attractions, and stand by to provide information in case of a disaster.”   Below is a screenshot of the <a href="http://digitallife.today.msnbc.msn.com/_news/2012/01/23/10216687-super-bowl-first-social-media-command-center">2,800 square foot office</a> in downtown Indianapolis that was constructed for the event.</p>
<p><a title="The Social Media Service Line by raidiouscontent, on Flickr" href="http://www.flickr.com/photos/raidious/5537293499/"><img style="background-image: none; padding-left: 0px; padding-right: 0px; padding-top: 0px; border-width: 0px;" src="http://farm6.staticflickr.com/5013/5537293499_c745f071d8.jpg" alt="The Social Media Service Line" width="500" height="332" border="0" /></a></p>
<p>Given the mobile nature of the people attending the game, this strikes me as a really good idea.  Although I’m not sure they needed the fancy office.</p>
<p><span style="font-size: medium;"><strong>(5) Doritos Crash the Super Bowl Contest</strong></span></p>
<p>For the last six years, chip maker Doritos has run user-generated ads during the game.  This year the brand <a href="http://www.crashthesuperbowl.com/#/?finalist=16959">is holding an online vote</a> in which site visitors can select from among five finalists, who have already win $25,000 each.  Two of the user generated ads will run during the Super Bowl, along with an ad created by the comedy group the Lonely Island Boys.  The maker of the advertisement that performs best will win $1,000,000.  If the Lonely Island Boys win the money will go to charity.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="doritos" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/01/doritos.jpg" alt="doritos" width="600" height="400" border="0" /></p>
<p>Perhaps I’m a bit jaded, but to me the concept of user-generated ads feels a bit overdone at this point.  Doritos might have been better off coming up with a  fresh gimmick.</p>
<p><em>To follow the buzz about the Super Bowl on Twitter, check <a href="http://www.slurp140.com/superbowl">out our tool Slurp 140</a>.</em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=eoC2F9_60nY:QnkxaizvbCs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=eoC2F9_60nY:QnkxaizvbCs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=eoC2F9_60nY:QnkxaizvbCs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=eoC2F9_60nY:QnkxaizvbCs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=eoC2F9_60nY:QnkxaizvbCs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=eoC2F9_60nY:QnkxaizvbCs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=eoC2F9_60nY:QnkxaizvbCs:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=eoC2F9_60nY:QnkxaizvbCs:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheBivingsReport/~4/eoC2F9_60nY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.thebrickfactory.com/2012/01/5-digital-super-bowl-campaigns-to-watch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.thebrickfactory.com/2012/01/5-digital-super-bowl-campaigns-to-watch/</feedburner:origLink></item>
		<item>
		<title>Barack Obama and Responsive Design</title>
		<link>http://feedproxy.google.com/~r/TheBivingsReport/~3/qibvS1NHTcw/</link>
		<comments>http://blog.thebrickfactory.com/2012/01/barack-obama-and-responsive-design/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 17:35:20 +0000</pubDate>
		<dc:creator>Todd Zeigler</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://blog.thebrickfactory.com/2012/01/barack-obama-and-responsive-design/</guid>
		<description><![CDATA[There is little doubt that the 2008 Obama campaign was the most sophisticated digital operation in the history of politics.&#160; It is not really close. Given how high the bar has been set, there was a lot of hype surrounding the November release of the 2012 version&#160; www.barackobama.com, which features a responsive design.&#160;&#160;&#160; Responsive designs [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="President Obama Responsive Design" border="0" alt="President Obama campaign website on desktop, iPad and iPhone." src="http://blog.thebrickfactory.com/wp-content/uploads/2012/01/comparison1.jpg" width="600" height="254" />
<p>There is little doubt that the 2008 Obama campaign was the most sophisticated digital operation in the history of politics.&#160; It is not really close.</p>
<p>Given how high the bar has been set, there was a lot of hype surrounding the <a href="http://www.barackobama.com/news/entry/our-new-look/">November release</a> of the 2012 version&#160; <a href="http://www.barackobama.com">www.barackobama.com</a>, which features a <a href="http://designmodo.com/responsive-design-examples/">responsive design</a>.&#160;&#160;&#160; Responsive designs are all the rage these days, as they allow a site to automatically resize based on the resolution of the device the visitor accesses from.&#160; This approach prevents web developers from having to create specific versions of your site for desktops, smartphones and devices like the iPad. </p>
<p>When well executed, a responsive design can be a thing of beauty.&#160; Here are <a href="http://designmodo.com/responsive-design-examples/">some great examples</a>, with the <a href="http://www.anderssonwise.com/">Andersson-Wise</a> and <a href="http://www.bostonglobe.com/">Boston Globe</a> sites being particularly impressive, albeit in vastly different ways.&#160; </p>
<p>When done right, a responsive design creates compelling user experience on all devices.&#160; Unfortunately, I don’t think the Obama site achieves that goal.&#160; </p>
<p><span id="more-261"></span>
<p>&#160;</p>
<p><font size="4"><strong>Desktop</strong></font></p>
<p>In a <a href="http://www.barackobama.com/news/entry/behind-the-scenes-our-new-website">podcast about the new site launch</a>, members of the Obama site team emphasized that they designed for mobile first.&#160; I think this is a nice sound bite, but in practice it just isn’t true.&#160; While mobile is growing rapidly, I would guess that 80% of the traffic on the Obama site still comes from traditional desktop user.&#160; Frankly, it wouldn’t be smart to design for mobile first.&#160; And the Obama campaign didn&#8217;t.&#160; </p>
<p>As you can see, the <a href="http://www.barackobama.com">site looks</a> great on a desktop (screenshot below).&#160; It loads well in all browsers and looks great at all resolutions.&#160; I particularly like the use of a fixed navigation bar and the presentation of top stories as boxes of varying sizes. </p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="desktop" border="0" alt="desktop" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/01/desktop.jpg" width="600" height="508" />     </p>
<p><font size="4"><strong>iPad</strong></font></p>
<p>The user experience falls apart a bit if you view the site on an iPad in portrait view.&#160; The top story boxes that line up so nicely on a desktop stack in a random fashion.&#160; The text of the “State of the Union” cuts off a bit.&#160; It just looks kind of sloppy (screenshot below).</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="ipad_obama" border="0" alt="ipad_obama" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/01/ipad_obama.jpg" width="600" height="653" /></p>
<p>However, if you view the site in landscape view on an iPad it looks just as fantastic as it does on a desktop.&#160; And if you click through the site on an iPad in both portrait and landscape views, things display nicely and work well.</p>
<p><strong><font size="4">iPhone</font></strong></p>
<p>It is on the iPhone where the trouble actually starts.&#160; When I first visit the site on an iPhone I’m taken to a mobile splash page asking for my email address.&#160; The splash page design looks to not have been updated from the campaign’s <a href="http://www.bivingsreport.com/2011/are-2012-presidential-candidates-embracing-mobile-not-so-much/">previous mobile site</a>, with the shades of blue and iconography not matching the redesigned site.&#160;&#160; </p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="obama_mobile_splash" border="0" alt="obama_mobile_splash" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/01/obama_mobile_splash.jpg" width="427" height="669" /></p>
<p>Perhaps more importantly, when you click on the “Full Site” link to skip past the sign up page I’m taken to a Page Not Found error.&#160; That is a pretty big mistake to make on an initial splash page.</p>
<p>Once I get past the splash page and get to the homepage on the iPhone, this is what I see.</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="obama_mobile_home" border="0" alt="obama_mobile_home" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/01/obama_mobile_home1.png" width="427" height="480" /></p>
<p>Everything renders brilliantly, but you see very little content initially and you have to scroll forever to access all the content.&#160;&#160; Instead of being optimized for mobile, it feels like a versions of the main site shoehorned to fit in a mobile browser.</p>
<p>Further, if you explore the site a bit a bit on mobile you will find a variety of small little errors beyond the one on the splash page.&#160; As an example, if you click on the Create Account link that is featured prominently you will be taken to this page.</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="obama_error" border="0" alt="obama_error" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/01/obama_error1.png" width="427" height="640" /></p>
<p>The page encourages users to login, and then includes a box asking you to register if you don’t have an account.&#160; The register link is cut off, and you can’t actually scroll to the right to access it.&#160; So users are essentially boxed out from registering on a mobile device.</p>
<p>If you search for “barack obama” in a mobile browser, you get this ad from the campaign that encourages people to register for mobile updates.&#160; This strikes me as really smart.&#160; </p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="obama_ad" border="0" alt="obama_ad" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/01/obama_ad1.png" width="427" height="640" /></p>
<p>But when you click on the link to register for mobile news, you are taken to the main mobile site homepage which doesn’t include an obvious email or text message sign up.&#160;&#160; So the great idea of using the ads to encourage mobile sign ups is ruined by poor execution.</p>
<p><font size="4"><strong>Conclusion</strong></font></p>
<p>The Obama campaign deservers a ton of credit for building a site with a&#160; responsive site.&#160; I applaud the ambition, and think the site works great on desktops and generally performs well on the iPad.&#160; </p>
<p>However, I don’t think the responsive design developed by the campaign creates a compelling user experience for mobile users.&#160; In addition to being buggy, I’m not sure that the approach is right.</p>
<p>The previous iteration of the Obama site featured an optimized <a href="http://www.bivingsreport.com/2011/are-2012-presidential-candidates-embracing-mobile-not-so-much/">mobile site</a> that looked like an iPhone application.&#160; The screenshot below shows the old and new mobile sites side by side.</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="obama_mobile_versions" border="0" alt="obama_mobile_versions" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/01/obama_mobile_versions1.jpg" width="600" height="401" /></p>
<p>While simplistic, the previous mobile site presented users with clear choices.&#160; You could quickly find what you were looking for.&#160; The new site assumes mobile users will take the time to scroll to find the content they are looking for.&#160; This is a pretty big leap of faith.</p>
<p>Given the resources that are available, I would have rather seen the Obama campaign build a fantastic site optimized specifically for mobile instead of limiting itself to a responsive design.&#160; </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=qibvS1NHTcw:ES6j4zM3C20:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=qibvS1NHTcw:ES6j4zM3C20:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=qibvS1NHTcw:ES6j4zM3C20:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=qibvS1NHTcw:ES6j4zM3C20:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=qibvS1NHTcw:ES6j4zM3C20:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=qibvS1NHTcw:ES6j4zM3C20:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=qibvS1NHTcw:ES6j4zM3C20:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=qibvS1NHTcw:ES6j4zM3C20:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheBivingsReport/~4/qibvS1NHTcw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.thebrickfactory.com/2012/01/barack-obama-and-responsive-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.thebrickfactory.com/2012/01/barack-obama-and-responsive-design/</feedburner:origLink></item>
		<item>
		<title>Just Say No to Splash Pages on WhiteHouse.gov</title>
		<link>http://feedproxy.google.com/~r/TheBivingsReport/~3/QMvVTtz6ZPY/</link>
		<comments>http://blog.thebrickfactory.com/2012/01/just-say-no-to-splash-pages-on-whitehouse-gov/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 19:00:56 +0000</pubDate>
		<dc:creator>Todd Zeigler</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://blog.thebrickfactory.com/2012/01/just-say-no-to-splash-pages-on-whitehouse-gov/</guid>
		<description><![CDATA[As most of you know, splash pages are those annoying introductory pages that ask you for your email address before letting you access the actual website you are trying to visit.&#160; Having worked in digital for ten years, I can make two definitive statements about splash pages: They work.&#160; A well executed email splash page [...]]]></description>
			<content:encoded><![CDATA[<p><img style="display: inline" title="white_house_splash" alt="White House Splash Page" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/01/white_house_splash.jpg" width="600" height="397" /></p>
<p>As most of you know, splash pages are those annoying introductory pages that ask you for your email address before letting you access the actual website you are trying to visit.&#160; Having worked in digital for ten years, I can make two definitive statements about splash pages:</p>
<ol>
<li>They work.&#160; A well executed email splash page harvests email addresses from between 10-30% of visitors, depending on audience, message, etc.</li>
<li>Visitors hate them.&#160; Splash pages put a barrier between the user and the content they are looking for.&#160; Even when well executed, you will probably see between 20-50% users bail without visiting another page.&#160; Ever usability study I’ve seen says not to use splash pages.</li>
</ol>
<p>When I consult with clients, we talk through whether the increased conversion rates brought about by splash pages are worth the problems they cause for users.&#160; Sometimes the answer is yes.&#160; Sometimes it is no.&#160; It really depends on the overriding mission of the website. </p>
<p>Yesterday I visited the <a href="http://www.whitehouse.gov/">White House website</a> for the first time in awhile and was surprised to see an email splash page <a href="http://yfrog.com/nvctfg">featuring President Obama</a>.&#160;&#160; When I cleared my cookies and visited again today, I saw the version at the top of this post, indicating the White House is experimenting with different versions.&#160; </p>
<p>If this were the website for <a href="http://www.barackobama.com/splash/sign-michelles-birthday-card?">President Obama’s reelection campaign</a> I wouldn’t think twice about it.&#160; Emails = donations, and donations are the fuel for all campaigns.&#160; Harvest away.&#160; </p>
<p>Perhaps I’m a hopeless optimist, but it seems to me that the White House website, which is paid for by taxpayers, should have a purpose higher than conversions.&#160; The number one priority of the White House site should be to inform.&#160; Putting up a splash page that will automatically drive away a large percentage of visitors seems counter to the spirit of the enterprise. </p>
<p>Mr. President, tear down this wall.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=QMvVTtz6ZPY:vuA110wtEPE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=QMvVTtz6ZPY:vuA110wtEPE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=QMvVTtz6ZPY:vuA110wtEPE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=QMvVTtz6ZPY:vuA110wtEPE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=QMvVTtz6ZPY:vuA110wtEPE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=QMvVTtz6ZPY:vuA110wtEPE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=QMvVTtz6ZPY:vuA110wtEPE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=QMvVTtz6ZPY:vuA110wtEPE:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheBivingsReport/~4/QMvVTtz6ZPY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.thebrickfactory.com/2012/01/just-say-no-to-splash-pages-on-whitehouse-gov/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.thebrickfactory.com/2012/01/just-say-no-to-splash-pages-on-whitehouse-gov/</feedburner:origLink></item>
		<item>
		<title>Happy Birthday, Drupal</title>
		<link>http://feedproxy.google.com/~r/TheBivingsReport/~3/pahsMjggx5w/</link>
		<comments>http://blog.thebrickfactory.com/2012/01/happy-birthday-drupal/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 17:07:33 +0000</pubDate>
		<dc:creator>Todd Zeigler</dc:creator>
				<category><![CDATA[brickfactory]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://blog.thebrickfactory.com/2012/01/happy-birthday-drupal/</guid>
		<description><![CDATA[On January 15, 2001, University of Antwerp student Dries Buytaert released the first version of Drupal to the open source community.&#160; Dries had originally developed Drupal as a news site and message board that University of Antwerp students could use for discussion and content sharing.&#160; Drupal has grown into the most popular open source Content [...]]]></description>
			<content:encoded><![CDATA[<p><img style="display: inline" title="drupal_balloon" alt="drupal_balloon" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/01/drupal_balloon.jpg" width="600" height="423" /></p>
<p>On January 15, 2001, University of Antwerp student <a href="http://buytaert.net/">Dries Buytaert</a> released the first version of <a href="http://drupal.org/">Drupal</a> to the open source community.&#160; <a href="http://drupal.org/about/history">Dries had originally developed Drupal</a> as a news site and message board that University of Antwerp students could use for discussion and content sharing.&#160; Drupal has grown into the most popular open source Content Management System on the market, with sites ranging from the <a href="http://www.whitehouse.gov/">White House</a> to <a href="http://www.fastcompany.com/">Fast Company</a> to <a href="http://www.warnerbrosrecords.com/">Warner Brothers Records</a> built on the platform.&#160; </p>
<p>I started hearing about Drupal fairly early on, and began experimenting with it in around 2005.&#160; In 2006 we fully committed to Drupal, and it is now the&#160; primary platform for all of our web development projects.&#160; Embracing Drupal is one of the best decisions we ever made.&#160; It is a great platform with a phenomenal support community.&#160; It is simply the best open source Content Management System out there.&#160; </p>
<p>So as Drupal turns eleven this Monday, we wanted to thank <a href="http://buytaert.net/">Dries Buytaert</a> for his stewardship of the platform and commemorate the occasion by showcasing some of our Drupal sites.</p>
<p><object width="600" height="600"><param name="flashvars" value="offsite=true&lang;=en-us&amp;page_show_url=%2Fphotos%2F74259517%40N03%2Fsets%2F72157628853310783%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2F74259517%40N03%2Fsets%2F72157628853310783%2F&amp;set_id=72157628853310783&amp;jump_to="></param><param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=109615"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=109615" allowFullScreen="true" flashvars="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2F74259517%40N03%2Fsets%2F72157628853310783%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2F74259517%40N03%2Fsets%2F72157628853310783%2F&#038;set_id=72157628853310783&#038;jump_to=" width="600" height="600"></embed></object></p>
<p><strong>Live Projects</strong></p>
<ul>
<li><a href="http://markonepartners.co.uk/">Mark One Partners</a></li>
<li><a href="http://www.podesta.com">Podesta Group</a></li>
<li><a href="http://www.nolabels.org">Panthera</a></li>
<li><a href="http://www.understandingwar.org">Institute for the Study of War</a></li>
<li><a href="http://www.foreignpolicyi.org/">Foreign Policy Initiative</a> (homepage only)</li>
<li><a href="http://www.nolabels.org/work">No Labels Make Congress Work</a></li>
<li><a href="http://www.nolabels.org">No Labels Main</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=pahsMjggx5w:t8rDEnCOdsU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=pahsMjggx5w:t8rDEnCOdsU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=pahsMjggx5w:t8rDEnCOdsU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=pahsMjggx5w:t8rDEnCOdsU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=pahsMjggx5w:t8rDEnCOdsU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=pahsMjggx5w:t8rDEnCOdsU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=pahsMjggx5w:t8rDEnCOdsU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=pahsMjggx5w:t8rDEnCOdsU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheBivingsReport/~4/pahsMjggx5w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.thebrickfactory.com/2012/01/happy-birthday-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.thebrickfactory.com/2012/01/happy-birthday-drupal/</feedburner:origLink></item>
		<item>
		<title>Our New Year’s Resolutions</title>
		<link>http://feedproxy.google.com/~r/TheBivingsReport/~3/rBH4cGyRFoE/</link>
		<comments>http://blog.thebrickfactory.com/2012/01/our-new-years-resolutions/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 21:54:58 +0000</pubDate>
		<dc:creator>Todd Zeigler</dc:creator>
				<category><![CDATA[brickfactory]]></category>
		<category><![CDATA[doodle]]></category>

		<guid isPermaLink="false">http://blog.thebrickfactory.com/2012/01/our-new-years-resolutions/</guid>
		<description><![CDATA[Many people use the start of the new year as an opportunity to reflect  and recalibrate.  We are going through this process ourselves at the Brick Factory. As a way of holding ourselves accountable and providing a peek as to where we think digital is going, we decided to share publicly some of our goals [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-231 aligncenter" title="Happy New Year" src="http://blog.thebrickfactory.com/wp-content/uploads/2012/01/tbf_new_year.jpg" alt="" width="600" height="349" /></p>
<p>Many people use the start of the new year as an opportunity to reflect  and recalibrate.  We are going through this process ourselves at the Brick Factory.</p>
<p>As a way of holding ourselves accountable and providing a peek as to where we think digital is going, we decided to share publicly some of our goals for the new year.</p>
<p><strong>(1) Master mobile.</strong></p>
<p>With the rise of the smartphone and the iPad, it is sort of a given that the way people surf for information online is undergoing a sea change.  It is estimated that by 2014 more people will access the Internet via <a href="http://www.mobilecommercedaily.com/2011/03/21/why-the-mobile-web-is-key-to-a-marketer%E2%80%99s-future">mobile phones</a> than via desktop computers. For most people, this is just interesting trivia.  For us, this trend will fundamentally change the work we produce and make us obsolete if we&#8217;re not careful.</p>
<p>In 2011, we built a number of mobile sites, improved our application development capabilities and experimented with <a href="http://coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/">responsive design</a>.  But we didn’t do enough.  In 2012, we need to further develop our mobile capabilities and integrate mobile into everything we do.</p>
<p><strong>(2) Embrace HTML5.</strong></p>
<p>At this time last year, <a href="http://en.wikipedia.org/wiki/HTML5">HTML5</a> was something that was still on the horizon.  A lot has changed in the last year.  Browser support for HTML5 has increased dramatically.  The lack of support for Flash on the iPad/iPhone has sped up the transition to HTML5.  Flash killed mobile support, effectively <a href="http://mashable.com/2011/11/09/its-official-flash-mobile-player-is-dead/">conceding defeat to HTML5</a>.</p>
<p>A<a href="http://www.binvisions.com/articles/how-many-percentage-web-sites-using-html5/"> recent study</a> found that 34 of the 100 most popular websites in the world use HTML5.  Interestingly, the seven most popular sites on the web (Google, Facebook, YouTube, Yahoo, Baidu, Wikipedia and Blogspot) all use HTML5.  When goliaths like these embrace a technology, it is time to jump on the bandwagon.  The time for HTML5 is now.</p>
<p>We have strong HTML5 capabilities  already, as evidenced by <a href="http://www.thebrickfactory.com/holiday">our HTML5 Christmas card</a>.  But we need to get better.  We need to start taking advantage of all of HTML5’s <a href="http://www.bivingsreport.com/2010/whats-this-html-5-thing/">features</a> to deliver higher quality work for our clients.</p>
<p><strong>(3) Always think strategically.</strong></p>
<p>It is no secret that a lot of digital agencies sell tactics masquerading as strategy.  It isn’t hard to do.</p>
<p>We have always prided ourselves on focusing on substance, and developing digital strategies that have an actual impact on our client’s bottom line.</p>
<p>Despite our best intentions, too often last year  we got so caught up in the process of creating that we lost site of the why.  We let ourselves become a hamster on a wheel, and in some cases the work suffered as a result.</p>
<p>In 2012 we will strive to bring our best thinking to every situation.  We need to make sure to always ask why.</p>
<p><strong>(4) Sweat the details.</strong></p>
<p>The difference between a good website and a great one is in the details.  How a form works.  How a site renders on an iPad.  The typography.  The rollover styles.    Steve Jobs summed it up pretty well:</p>
<blockquote><p>&#8220;When you’re a carpenter making a beautiful chest of drawers, you’re not going to use a piece of plywood on the back, even though it faces the wall and nobody will ever see it. You’ll know it’s there, so you’re going to use a beautiful piece of wood on the back. For you to sleep well at night, the aesthetic, the quality, has to be carried all the way through.&#8221;</p></blockquote>
<p>We didn’t handle the details as well as we should have in 2011.  In 2012, we will strive to always use a beautiful piece of wood on the back.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=rBH4cGyRFoE:UM73XWtxRjg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=rBH4cGyRFoE:UM73XWtxRjg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=rBH4cGyRFoE:UM73XWtxRjg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=rBH4cGyRFoE:UM73XWtxRjg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=rBH4cGyRFoE:UM73XWtxRjg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=rBH4cGyRFoE:UM73XWtxRjg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=rBH4cGyRFoE:UM73XWtxRjg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=rBH4cGyRFoE:UM73XWtxRjg:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheBivingsReport/~4/rBH4cGyRFoE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.thebrickfactory.com/2012/01/our-new-years-resolutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.thebrickfactory.com/2012/01/our-new-years-resolutions/</feedburner:origLink></item>
		<item>
		<title>Let it snow, let it snow, let it snow</title>
		<link>http://feedproxy.google.com/~r/TheBivingsReport/~3/swc6WeMiz-0/</link>
		<comments>http://blog.thebrickfactory.com/2011/12/let-it-snow-let-is-snow-let-it-snow/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 17:42:26 +0000</pubDate>
		<dc:creator>Todd Zeigler</dc:creator>
				<category><![CDATA[brickfactory]]></category>

		<guid isPermaLink="false">http://blog.thebrickfactory.com/2011/12/let-it-snow-let-is-snow-let-it-snow/</guid>
		<description><![CDATA[When I worked at The Bivings Group, we always sent out traditional holiday cards.&#160; The cards&#160; were amazing due to the talent we had on staff, but it always seemed strange to me to produce a printed card.&#160; As a digital agency, it seemed to me that we should do something digital.&#160; So when we [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.thebrickfactory.com/holiday"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="santa_600" border="0" alt="santa_600" src="http://blog.thebrickfactory.com/wp-content/uploads/2011/12/santa_6001.jpg" width="600" height="355" /></a></p>
<p>When I worked at The Bivings Group, we always sent out traditional holiday cards.&#160; The cards&#160; were amazing due to the talent we had on staff, but it always seemed strange to me to produce a printed card.&#160; As a digital agency, it seemed to me that we should do something digital.&#160; So when we launched the <a href="http://www.thebrickfactory.com">Brick Factory</a>, I knew I wanted to do something that was more in line with the work we do for our clients.&#160; I wanted to take the opportunity to showcase the amazing talent of our staff.&#160; </p>
<p>So this year we decided to give our <a href="http://www.thebrickfactory.com/">website</a> a holiday makeover and to produce a digital <a href="http://www.thebrickfactory.com/holiday">holiday card</a> that shows off our <a href="http://en.wikipedia.org/wiki/HTML5">HTML5</a> chops.&#160; <a href="http://www.thebrickfactory.com/holiday">Check it out</a>.</p>
<p><a href="http://www.thebrickfactory.com/holiday">Happy holidays.</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=swc6WeMiz-0:Kn0_84LKLdk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=swc6WeMiz-0:Kn0_84LKLdk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=swc6WeMiz-0:Kn0_84LKLdk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=swc6WeMiz-0:Kn0_84LKLdk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=swc6WeMiz-0:Kn0_84LKLdk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=swc6WeMiz-0:Kn0_84LKLdk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=swc6WeMiz-0:Kn0_84LKLdk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=swc6WeMiz-0:Kn0_84LKLdk:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheBivingsReport/~4/swc6WeMiz-0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.thebrickfactory.com/2011/12/let-it-snow-let-is-snow-let-it-snow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.thebrickfactory.com/2011/12/let-it-snow-let-is-snow-let-it-snow/</feedburner:origLink></item>
		<item>
		<title>In Search of a Great Tool for Holiday Fundraising?</title>
		<link>http://feedproxy.google.com/~r/TheBivingsReport/~3/QhAh0oeLVpo/</link>
		<comments>http://blog.thebrickfactory.com/2011/12/in-search-of-a-great-tool-for-holiday-fundraising/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 15:14:03 +0000</pubDate>
		<dc:creator>ashley</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.thebrickfactory.com/?p=209</guid>
		<description><![CDATA[Here at the Brick Factory, we understand that competition for donor dollars is fierce in this economy. Having worked with many nonprofit and political organizations we know you have to be creative for your fundraising to have an impact. Giving eCards is a new product that provides organizations with a creative and cost-effective way to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.thebrickfactory.com/wp-content/uploads/2011/12/image.png"><img style="display: inline; border: 0px;" title="image" src="http://blog.thebrickfactory.com/wp-content/uploads/2011/12/image_thumb.png" alt="image" width="604" height="82" border="0" /></a></p>
<p>Here at the Brick Factory, we understand that competition for donor dollars is fierce in this economy. Having worked with many nonprofit and political organizations we know you have to be creative for your fundraising to have an impact.</p>
<p><strong>Giving eCards</strong> is a new product that provides organizations with a creative and cost-effective way to raise money online. An eCard is a personalized image and message that an organization’s supporters can send to their friends and family. <strong>Giving eCards</strong> allows supporters to send a custom eCard through the site while making a donation to your organization in someone’s name.</p>
<p>How it works from an organizational perspective:</p>
<ol>
<li>Organizations sign up for a free account on <a href="http://www.givingecards.com">www.givingecards.com</a>. When signing up, the organization reserves a custom URL for their <strong>Giving eCards</strong> page.</li>
<li>Once the account is created, organizations upload their custom designed eCards to their account. eCards can be categorized dynamically, allowing for sets of cards to be created for common occasions such as birthdays, New Year’s, graduation, etc.</li>
<li>Once the eCards are uploaded, the organization promotes their eCard page to their supporter base via email, social media, website links, etc.</li>
<li>As supporters donate and send cards on behalf of friends and family, the money is automatically deposited into the Paypal account of the organization. <strong>Giving eCards</strong> takes 5% of the amount raised on top of Paypal’s fees.</li>
<li>Organizations can access and export all donor information from their <strong>Giving eCards</strong> control panel at any time.</li>
</ol>
<p>This Christmas, give your supporters a great gift idea and grow your organization at the same time with <strong>Giving eCards</strong>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=QhAh0oeLVpo:YRq47FbRFiE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=QhAh0oeLVpo:YRq47FbRFiE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=QhAh0oeLVpo:YRq47FbRFiE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=QhAh0oeLVpo:YRq47FbRFiE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=QhAh0oeLVpo:YRq47FbRFiE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=QhAh0oeLVpo:YRq47FbRFiE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?i=QhAh0oeLVpo:YRq47FbRFiE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheBivingsReport?a=QhAh0oeLVpo:YRq47FbRFiE:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/TheBivingsReport?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/TheBivingsReport/~4/QhAh0oeLVpo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.thebrickfactory.com/2011/12/in-search-of-a-great-tool-for-holiday-fundraising/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.thebrickfactory.com/2011/12/in-search-of-a-great-tool-for-holiday-fundraising/</feedburner:origLink></item>
	</channel>
</rss>

