life of a nerdtag:www.bricecheddarn.com,2010:/blog/i have a fever...and the prescription is more coldfusion.Mango 1.4.3A ColdFusion Nerd's love for Lorem Ipsumurn:uuid:69925590-3048-30B1-2A02F3FDADE8B91F2010-05-05T10:05:52Z2010-05-05T10:05:00Z<p><a class="borderit" href="http://cflib.org/udf/cfLipsum"><img src="/blog/assets/content//cflipsum-udf-plugin.jpg" alt="" width="490" height="140" /></a></p>
<p>As a distraction from the insanity of client development, I thought it would be fun to mark off one of the ColdFusion to-do items on my list.</p>
<p>Like any good ColdFusion nerd, I have a list of things I want to accomplish with my favorite programming language. There are user defined functions on my list, Mango Blog plugins on my list, ColdFusion websites on the list, you name it. </p>
<p>The list also contains several CF-related blog post topics I would love to write about. I'm definitely no Ben Nadel or Raymond Camden, but I do have my fair share of blogability in me.</p>
<p>Well, not long ago I decided to try tackling two items about once: a Mango Blog plugin and a new UDF for <a href="http://CFlib.org">CFlib.org</a>. I had an idea for a simple UDF that I could easily convert into a Mango Blog plugin.</p>
<p>After a few hours of work, I am proud to say that effort paid off in the form of cfLipsum.</p>
<p> </p>Bret
<p><a class="borderit" href="http://cflib.org/udf/cfLipsum"><img src="/blog/assets/content//cflipsum-udf-plugin.jpg" alt="" width="490" height="140" /></a></p>
<p>As a distraction from the insanity of client development, I thought it would be fun to mark off one of the ColdFusion to-do items on my list.</p>
<p>Like any good ColdFusion nerd, I have a list of things I want to accomplish with my favorite programming language. There are user defined functions on my list, Mango Blog plugins on my list, ColdFusion websites on the list, you name it. </p>
<p>The list also contains several CF-related blog post topics I would love to write about. I'm definitely no Ben Nadel or Raymond Camden, but I do have my fair share of blogability in me.</p>
<p>Well, not long ago I decided to try tackling two items about once: a Mango Blog plugin and a new UDF for <a href="http://CFlib.org">CFlib.org</a>. I had an idea for a simple UDF that I could easily convert into a Mango Blog plugin.</p>
<p>After a few hours of work, I am proud to say that effort paid off in the form of cfLipsum.</p>
<p> </p>
<p><strong>The Background</strong></p>
<p>In several of the CF projects I have been a part of over the years, at some point in time there has been a need to go out and copy/paste some Lorem Ipsum filler content.</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry that the web design and development world adapted as part of their own. It is used as a place holder to demonstrate how actual content will look in a design or site.</p>
<p>It dawned on me a long time ago that I should be coding a solution for that, rather than going to <a href="http://Lipsum.com">Lipsum.com</a> and CTRL C'ing the filler content I needed. Then one day I noticed that Lipsum.com had a feed.</p>
<p>And an idea was born.</p>
<p> </p>
<p><strong>The User Defined Function</strong></p>
<p>I thought to myself, if I am going to spend time and develop a simple solution involing the Lipsum.com feed, why not also make sure it is capable of being accepted to CFlib.org.</p>
<p>"The purpose of the <em>Common Function Library Project</em> (CFLib.org) is to create a set of user-defined function (UDF) libraries for ColdFusion 5.0 and higher."</p>
<p>Having used CFlib.org a number of times to find string functions and other handy snippets of code, I have been meaning to contribute and give back. Coming up with a UDF to handle the Lipsum.com feed seemed like a good first submission attempt.</p>
<p>Enter cfLipsum. This function allows for outputting lorem ipsum text on the fly. It converts a feed of lorem ipsum text from Lipsum.com into a formatted or unformatted return string for output.</p>
<p>The beauty of the simple feed is that it outputs a different string of lorem ipsum text every time. This is a handy function to have when creating mockups on the fly. For those of us not on ColdFusion Builder yet, this provides a way to use a function call to output random filler content.</p>
<p>The code is fairly self-explanatory.</p>
<div style="padding-left: 30px; background-color:#eeeeee;">
<p style="padding-left: 30px;"><strong>
</strong></p>
<strong>
<p><cffunction name="cfLipsum" output="no" returntype="string" displayname="cfLipsum" hint="get a lorem ipsum string from lipsum.com"></p>
<p> <cfargument name="isFormatted" type="numeric" required="no" default="1" /></p>
<p> </p>
<p> <cfset var theXML = "" /></p>
<p> <cfset var theGrab = "" /></p>
<p> <cfset var theLipsum = "" /></p>
<p> <cfset var theLipsumFeed = "http://www.lipsum.com/feed/xml" /></p>
<p> </p>
<p> <!--- get the xml feed ---></p>
<p> <cfhttp url="#theLipsumFeed#" method="get" resolveUrl="false" /></p>
<p> </p>
<p> <!--- parse and search xml for lorem ipsum ---></p>
<p> <cfset theXML = XMLParse(cfhttp.filecontent) /></p>
<p> <cfset theGrab = XMLSearch(theXML, "/feed") /></p>
<p> </p>
<p> <!--- only one lorem ipsum element in the feed ---></p>
<p> <cfset theLipsum = theGrab[1].lipsum.xmltext /></p>
<p> </p>
<p> <!--- strips lorem ipsum text of punctuation and uppercase ---></p>
<p> <cfif arguments.isFormatted neq 1></p>
<p> <cfset theLipsum = lcase(rereplacenocase(theLipsum, "[^a-z0-9 ]", "", "all")) /></p>
<p> </cfif></p>
<p> </p>
<p> <cfreturn theLipsum /></p>
<p></cffunction></p>
</strong>
<p> </p>
</div>
<p> </p>
<p><strong><a href="http://cflib.org/udf/cfLipsum">Download the UDF on CFlib.org</a></strong></p>
<p> </p>
<p><strong>
</strong></p>
<p><strong>
</strong></p>
<p><strong></strong></p>
<p><strong>
</strong></p>
<p><strong>
</strong></p>
<p><strong>
</strong></p>
<p><strong>
</strong></p>
<p><strong>
</strong></p>
<p><strong>
<p>The Mango Blog Plugin</p>
<p><span style="font-weight: normal;"><strong>
</strong></span></p>
<strong>
<p style="display: inline !important;"><span style="font-weight: normal;">Since I work with Mango Blog on a regular basis, I thought it would be a good idea to convert cfLipsum into a Mango plugin.</span></p>
</strong>
<p><span style="font-weight: normal; "><strong><strong></strong></strong></span></p>
<strong><strong>
<p style="display: inline !important;"><span style="font-weight: normal;">I created a plugin that converts a tag ([lipsum:<i>numWords</i>]) in a post/page into a string of lorem ipsum text. The plug communicates with a feed from Lipsum.com and outputs up to 500 words of lorem ipsum filler text. </span></p>
</strong></strong>
<p><span style="font-weight: normal;"><strong><strong><strong>
</strong></strong></strong></span></p>
<strong><strong><strong>
<p style="display: inline !important;"><span style="font-weight: normal;">The idea for usage of this plugin is to make it easier to fill pages and posts during the construction phase of a blog. Often times it helps clients to see the actual design of a page in action. Filler text helps to communicate the design without any actual content.</span></p>
</strong></strong></strong>
<p> </p>
<p><span style="font-weight: normal;"><strong><strong><strong>
</strong></strong></strong></span></p>
<strong><strong><strong>
<p style="display: inline !important;"><span style="font-weight: normal;"><a href="http://mangoblog.org/news/lipsum-plugin">View the Laura's post on Mango Lipsum plugin here</a>.</span></p>
</strong></strong></strong>
<p> </p>
<p> </p>
<strong>
<div class="spacer"> </div>
<div class="menu-left">
<a title="click to download" href="/mango/mangoLipsum-0.9.zip"><img style="border:0px;" title="click to download" src="/images/download-icon.png" alt="click to download" /></a>
</div>
<div class="menu-right">
<h2><a title="click to download" href="/mango/mangoLipsum-0.9.zip">Download Mango Lipsum Plugin</a></h2>
<p>download and take it for a test drive!<br />
Theme version: 0.9<br />
Last Updated:2010-04-19</p>
</div>
</strong>
<p> </p>
</strong></p>
<p> </p>
<p> </p>
twtpoll Plugin for Mango Blogurn:uuid:865F6121-3048-30B1-2A6DBD4B1A44841E2010-01-31T02:01:49Z2010-01-31T02:01:00Z<p><a class="borderit" href="http://www.mangoblog.org/"><img src="/blog/assets/content//mango-blog-istock.jpg" alt="" width="490" height="140" /></a></p>
<p> </p>
<div style="margin-top: 0px; margin-bottom: 0px;">For awhile now, I have been wanting to create a Mango Plugin that people could use on their blogs. There are so many great plugins already for the Mango Blog framework, and the possibilities are endless for more.</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br /></div>
<div style="margin-top: 0px; margin-bottom: 0px;">I have several ideas for various plugins that I plan to develop out as time allows. Some are simple, some are not. </div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br /></div>
<div style="margin-top: 0px; margin-bottom: 0px;">As luck should have it, some time made itself available, and one of my ideas came to fruition. Allow me to explain.</div>Bret
<p><a class="borderit" href="http://www.mangoblog.org/"><img src="/blog/assets/content//mango-blog-istock.jpg" alt="" width="490" height="140" /></a></p>
<p> </p>
<div style="margin-top: 0px; margin-bottom: 0px;">For awhile now, I have been wanting to create a Mango Plugin that people could use on their blogs. There are so many great plugins already for the Mango Blog framework, and the possibilities are endless for more.</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br /></div>
<div style="margin-top: 0px; margin-bottom: 0px;">I have several ideas for various plugins that I plan to develop out as time allows. Some are simple, some are not. </div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br /></div>
<div style="margin-top: 0px; margin-bottom: 0px;">As luck should have it, some time made itself available, and one of my ideas came to fruition. Allow me to explain.</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br /></div>
<div style="margin-top: 0px; margin-bottom: 0px;">twtpoll (<a id="s:g6" title="http://twtpoll.com/" href="http://twtpoll.com/">http://twtpoll.com/</a>) is a feedback tool that helps conduct polls/surveys on Twitter, Facebook or any other social media sites. twtpoll allows users to create unlimited polls for free and choose from 17 different types of questions when creating their polls. It also allows them to see any comments people leave after voting, and any tweets sent about the polls.</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br /></div>
<div style="margin-top: 0px; margin-bottom: 0px;">As a heavy blogger and tweeter, I try to think of ideas to engage users and followers. twtpoll is a very simple, yet powerful tool to engage and gain feedback. </div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br /></div>
<div style="margin-top: 0px; margin-bottom: 0px;">Another handy feature they offer is the ability to embed the polls and graphs into a blog. This way, bloggers can create a poll to coincide with a topic in a post, and gain/display instant feedback to readers. Bloggers can also send a link for the poll around on Twitter or post a link on Facebook to engage an audience across multiple platforms.</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br /></div>
<div style="margin-top: 0px; margin-bottom: 0px;">The process is also fairly simple. Go to twtpoll.com, enter your Twitter username (ex: @bricecheddarn), and great your poll with a few easy clicks. Once the poll is created, the page will refresh and display your poll.</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br /></div>
<div style="margin-top: 0px; margin-bottom: 0px;">Take a look at the link after the page refreshes (ex: http://twtpoll.com/nhrpmi ). The link will contain the ID for the poll. That link is all you need to embed a twtpoll into a Mango Blog post with this twtpoll plugin I developed.</div>
<div style="margin-top: 0px; margin-bottom: 0px;">twtpoll-v0.9</div>
<div style="margin-top: 0px; margin-bottom: 0px;">twtpoll's embed code is fairly simple, and involves just a few snippets of javascript. I took that embed code, and wrapped a plugin around it. Similar to other plugins out there, once activated this plugin allows you to paste a snippet of code into a blog post to display the poll and the poll results (ex: <em>[twtpoll:<strong>nhrpmi</strong>:250]</em>). The number in the snippet allows you to change up the size (in pixels) of the results pie chart that is displayed. <strong>Check it out below!</strong></div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br /></div>
<div style="margin-top: 0px; margin-bottom: 0px;">
<div style="margin-top: 0px; margin-bottom: 0px;">To install the twtpoll plugin, put a copy of the twtpoll folder into the folder: %mango_root%/components/plugins/user</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br /></div>
<div style="margin-top: 0px; margin-bottom: 0px;">Then:</div>
<div style="margin-top: 0px; margin-bottom: 0px;">- log into the Mango administrator</div>
<div style="margin-top: 0px; margin-bottom: 0px;">- go into Plugins</div>
<div style="margin-top: 0px; margin-bottom: 0px;">- and activate twtpoll</div>
<div style="margin-top: 0px; margin-bottom: 0px;"><br /></div>
</div>
<div style="margin-top: 0px; margin-bottom: 0px;">I plan on continually improving this plugin. For now, it is still basic, but it does the job. Let me know your thoughts. I also licensed it under the <a id="fpgl" title="Creative Commons Attribution-Share Alike 3.0" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0</a> United States License, so hack away at it if you want.</div>
<p> </p>
<div class="spacer"> </div>
<div class="menu-left">
<a title="click to download" href="/mango/twtpoll-v0.9.zip"><img style="border:0px;" title="click to download" src="/images/download-icon.png" alt="click to download" /></a>
</div>
<div class="menu-right">
<h2><a title="click to download" href="/mango/twtpoll-v0.9.zip">Download twtpoll Plugin</a></h2>
<p>download and take it for a test drive!<br />
Theme version: 0.9<br />
Last Updated:2010-01-31</p>
</div>
<p> </p>
<p> </p>
<p>
<br />
<script src="http://twtpoll.com/js/badge.js" type="text/javascript"></script>
<script src="http://twtpoll.com/badge/?twt=nhrpmi&s=250&b=1&bt=1" type="text/javascript"></script>
<br />
</p>
Browser Wars: Chrome grabs market share from IEurn:uuid:16C35B90-3048-30B1-2A303B28D577A1692010-01-09T10:01:52Z2010-01-31T12:01:00Z<p><img class="borderit" src="/blog/assets/content//browser-wars.png" alt="browser wars" width="490" height="140" /></p>
<p>The latest update in the browser wars is out, and it appears someone is shaking things up a bit. The <a href="http://news.cnet.com/8301-17939_109-10423733-2.html">order of the top five browsers</a> on the market now looks a little different: </p>
<p><strong>1. Internet Explorer (62.7%), 2. Firefox (24.6%), 3. Chrome (4.6%), 4. Safari (4.5%), 5. Opera (2.4%)</strong><br /><br />In just one year, Google's Chrome web browser has tripled its market share and jumped into third place in the browser wars.</p>Bret
<p><img class="borderit" src="/blog/assets/content//browser-wars.png" alt="browser wars" width="490" height="140" /></p>
<p>The latest update in the browser wars is out, and it appears someone is shaking things up a bit. The <a href="http://news.cnet.com/8301-17939_109-10423733-2.html">order of the top five browsers</a> on the market now looks a little different: </p>
<p><strong>1. Internet Explorer (62.7%), 2. Firefox (24.6%), 3. Chrome (4.6%), 4. Safari (4.5%), 5. Opera (2.4%)</strong><br /><br />In just one year, Google's Chrome web browser has tripled its market share and jumped into third place in the browser wars. In December, Chrome surpassed Apple's Safari in worldwide usage by jumping from 3.9 percent to 4.6 percent, according to Net Applications. The rise in popularity of Chrome is having a direct affect on Microsoft's Internet Explorer.<br /><br />Internet Explorer continues its steady slide, dropping from 63.6 percent to 62.7 percent usage. Most of IE's share loss to date has been picked up by Firefox, but recently Chrome has gained some ground of its own.<br /><br />Some good news for Microsoft, though, as IE8 has almost eliminated the older versions in use. IE8 rose from 19.3 percent to 20.9 percent, while IE6 dropped.<br /><br />IE6, IE7 and IE8 usage combine to make Internet Explorer the most widely used browser on the market, but web traffickers are losing interest in the browser as more alternatives begin to emerge and offer more.<br /><br />It seems that Chrome is stealing more users from Internet Explorer and Safari, which some find surprising. It was thought Chrome would primarily steal Firefox users, but that doesn't appear to be the case.<br /><br />Announcement of Chrome Extensions, though still in beta, might be a reason for Chrome's recent rise. Google's recent release of the browser for Mac and Linux helped bolster those numbers, as well. <br /><br />Firefox remains our preferred browser here at Brice Cheddarn Development, but Chrome is a close second. Both are great for different reasons. <br /><br />Our opinion of IE is no secret...it's horrible. IE8 has made vast improvements, but still pales in comparison to FF and GC.</p>
<p>Go Firefox!</p>
Five WordPress Plugins that should be Mango Pluginsurn:uuid:9EF3A24F-3048-30B1-2AFB4CCA5EADB0C82009-10-28T11:10:56Z2009-10-29T12:10:00Z<p><a class="borderit" href="http://www.mangoblog.org/"><img src="/blog/assets/content//mango-blog-istock.jpg" alt="" width="490" height="140" /></a></p>
<p>As many people already know, Mango Blog is an easily customizable ColdFusion blog engine that provides a way to administer and publish content to websites. It also provides the necessary architecture to extend its basic functionality by adding plugins. While there have already been many great and flexible plugins developed for Mango, the list has a long way to go before it reaches the WordPress plugin directory.</p>
<p>The nerds at Brice Cheddarn are hard at work on several projects, which limits time for plugin development. But, that didn't stop us from compiling a list of plugins we wouldn't mind seeing developed (either in-house or by one of the many CF developers in the world). As such, here are <strong>Five WordPress Plugins that should be developed Mango Blog Plugins</strong>: </p>Bret
<p><a class="borderit" href="http://www.mangoblog.org/"><img src="/blog/assets/content//mango-blog-istock.jpg" alt="" width="490" height="140" /></a></p>
<p>As many people already know, Mango Blog is an easily customizable ColdFusion blog engine that provides a way to administer and publish content to websites. It also provides the necessary architecture to extend its basic functionality by adding plugins. While there have already been many great and flexible plugins developed for Mango, the list has a long way to go before it reaches the WordPress plugin directory.</p>
<p>The nerds at Brice Cheddarn are hard at work on several projects, which limits time for plugin development. But, that didn't stop us from compiling a list of plugins we wouldn't mind seeing developed (either in-house or by one of the many CF developers in the world). As such, here are <strong>Five WordPress Plugins that should be developed Mango Blog Plugins</strong>: </p>
<ol>
<li><a href="http://wordpress.org/extend/plugins/wordpress-video-plugin/"><strong>Wordpress Video Plugin</strong></a>: Sure, Mango Blog has a few video-related plugins already. There is a blip.tv plugin, a YouTube plugin and a Brightcove.tv, but there isn't one comprehensive, all-in-one video plugin for Mango Blog that allows people to post videos from all over like the Wordpress Video Plugin. Not only does this plugin allow you the option of posting videos from all over the internet, it also allows for some customizations to those video like sizing.</li>
<li><strong><a href="http://wordpress.org/extend/plugins/polldaddy/">PollDaddy Polls</a></strong>: The PollDaddy Polls plugin allows bloggers to create and manage polls from within the WordPress dashboard. It has 20 different styles for your polls and allows for viewing all poll results as they come in. All PollDaddy polls are fully customizable. WP Polls is also another good <a href="http://wordpress.org/extend/plugins/wp-polls/">WordPress poll plugin</a>. Having a poll plugin for Mango Blog would give bloggers a chance to make their websites and blogs more interactive, which helps increase repeat traffic.</li>
<li><span style="font-weight: normal;"><strong><a href="http://wordpress.org/extend/plugins/disqus-comment-system/">DISQUS Comment System</a></strong></span>: Disqus, pronounced "discuss", is a service and tool for web comments and discussions that can be plugged into any website, blog, or application. Disqus makes commenting easier and more interactive, while connecting websites and commenters across a thriving discussion community. It allows bloggers to have a more in-depth and across platform conversation with visitors. Mango Blog has several comment-related plugins, but nothing this verbose tool.</li>
<li><strong><a href="http://wordpress.org/extend/plugins/star-rating-for-reviews/">Star Rating for Reviews</a></strong>: Star Rating for Reviews is a simple WordPress plugin that inserts styled rating stars into posts using an inline tag [rating:4.5]. It can also calculate and output overall ratings based on all previously assigned scores already in the database. There are a number of different uses for this type of plugin. It could be used to rate just about anything, from movies and music to developers and projects.</li>
<li><strong><a href="http://wordpress.org/extend/plugins/twitter-avatar/">Twitter Avatar</a></strong>: WordPress has a million Twitter-related plugins (OK, only 310), and Mango Blog has a few already as well. But the Twitter Avatar plugin allows visitors to enter their Twitter username when posting a comment on your blog. The plugin will also replaces the avatar on the comment with their picture on Twitter, both on the front-end and the Admin of the Blog. Having something similar for Mango Blog would bloggers more convenient interaction with their readers.</li>
</ol>
<p>While it isn't a plugin, there is another bit of functionality needed. WordPress also has a native functionality to it that Mango needs to adopt: <a href="http://codex.wordpress.org/Styling_Page-Links">Page Links</a>. This provides the ability to split a single post up into different web pages by just typing <!--nextpage--> into the post. This is handy functionality for many obvious reasons.</p>
<p>So many plugin ideas, so little time to develop them.</p>
Top Six Mango Blog Pluginsurn:uuid:90B657A7-3048-30B1-2AF363720DCC721F2009-09-06T11:09:13Z2010-03-11T09:03:00Z<p><a class="borderit" href="http://www.mangoblog.org/"><img src="/blog/assets/content//mango-blog-istock.jpg" alt="" width="490" height="140" /></a></p>
<p>Part of the <a href="/blog/post.cfm/coldfusion-is-the-sparta-of-programming-languages">ColdFusiontology effort</a> being undertaken by the nerds of Brice Cheddarn Development includes spreading the word about our favorite blog engine, Mango Blog.<br /><br /><strong>Mango Blog</strong> is an easily customizable blog engine built with ColdFusion that provides a way to administer and publish entries. It also provies the necessary architecture to extend its basic functionality by adding plugins. It comes with a set of plugins out-of-the-box, but others have begun to write their own plugins to help expand upon this powerful ColdFusion blogging tool. And some of those plugins need recognition.<br /><br />As such, I wanted to put together a quick list of the <strong>Top Six Mango Blog</strong> plugins that are currently available. With the growing number of plugins for <a href="http://www.mangoblog.org/">Mango Blog</a>, this definitely wasn't an easy list to compile. This is a completely subjective list that is probably not as thought out as it should be, so please feel free to comment and offer your suggestions. </p>Bret
<p><a class="borderit" href="http://www.mangoblog.org/"><img src="/blog/assets/content//mango-blog-istock.jpg" alt="" width="490" height="140" /></a></p>
<p>Part of the <a href="/blog/post.cfm/coldfusion-is-the-sparta-of-programming-languages">ColdFusiontology effort</a> being undertaken by the nerds of Brice Cheddarn Development includes spreading the word about our favorite blog engine, Mango Blog.<br /><br /><strong>Mango Blog</strong> is an easily customizable blog engine built with ColdFusion that provides a way to administer and publish entries. It also provies the necessary architecture to extend its basic functionality by adding plugins. It comes with a set of plugins out-of-the-box, but others have begun to write their own plugins to help expand upon this powerful ColdFusion blogging tool. And some of those plugins need recognition.<br /><br />As such, I wanted to put together a quick list of the <strong>Top Six Mango Blog</strong> plugins that are currently available. With the growing number of plugins for <a href="http://www.mangoblog.org/">Mango Blog</a>, this definitely wasn't an easy list to compile. This is a completely subjective list that is probably not as thought out as it should be, so please feel free to comment and offer your suggestions. </p>
<p> </p>
<p><strong><a href="http://postbyemail.riaforge.org/" target="_blank">PostByEmail</a></strong> - This pluginby TJ Downes allows users to send blog posts to their site via email. Since blog posts can be sent to your blog from any email address, the plugin requires the username and a site-wide key to be included in the email (space delimited). This prevents spam and unauthorized posts to your blog. This is one of the greatest features of WordPress, and I am really glad to see it being added to Mango Blog. Find out more:<a href="http://postbyemail.riaforge.org/" target="_blank"> http://postbyemail.riaforge.org/</a></p>
<p> </p>
<p><strong><a href="http://beerme.riaforge.org/" target="_blank">Beer Me</a></strong> - "Like this post? Buy me a beer!". This plugin by Marcos Placona for Mango Blog allows sites to add a link to PayPal at the bottom of each post. The links are personalized, so users can keep track of which blog post generated more donations. Simple but clever, and once I first saw it utilized on a site, I saw the potential. If <a href="http://www.bennadel.com/" target="_blank">Ben Nadel</a> used Mango Blog, I would have bought many a beer for him. I probably owe Laura a beer or two, too, but she strikes me as more of a wine person. Find out more:<a href="http://beerme.riaforge.org/" target="_blank"> http://beerme.riaforge.org/</a></p>
<p> </p>
<p><strong><a href="http://www.mangoblog.org/docs/plugins">Comment Moderation</a></strong> - This plugin, written by the creator of Mango Blog, Laura Arguello, adds comment moderation options to the admin Settings page. This is an extremely convenient tool, and now makes Mango Blog more of an option in the corporate environment. Find out more:<a href="http://www.asfusion.com/"> http://www.asfusion.com/</a></p>
<p> </p>
<p><strong><a href="http://fusiongrokker.com/post/scribe-email-subscriptions-for-mango">Scribe</a></strong> - With this plugin by Adam Tuttle, a site can allow readers to subscribe to be notified by email when a new post is added. This helps to generate repeat visitors to a site, which is always a good thing. Find out more:<a href="http://fusiongrokker.com/post/scribe-email-subscriptions-for-mango" target="_blank"> http://fusiongrokker.com/post/scribe-email-subscriptions-for-mango</a></p>
<p> </p>
<p><strong><a href="http://sebduggan.com/posts/jquery-plugin-for-mango" target="_blank">jQuery</a></strong> - This plugin written by Seb Duggan (who also appears to be addicted to writing Mango Blog plugins) will include the jQuery JavaScript library onto the pages of the site. This plugin helps add to the extensiblity of Mango Blog. With this plugin, developers can specify that the jQuery plugin is required for their own plugin to work. Find out more: <a href="http://sebduggan.com/posts/jquery-plugin-for-mango">http://sebduggan.com/posts/jquery-plugin-for-mango</a></p>
<p> </p>
<p><strong><a href="http://fusiongrokker.com/page/projects/lightbox-mango-plugin" target="_blank">Lightbox</a></strong> - This is a great plugin by Mark Aplet, who appears to be slightly addicted to writing Mango Blog plugins (Easy Retweet, CSS Naked Day, Memento). I say this out of envy, of course. Lightbox is a simple script used to overlay images on the current page. It's easy to setup and works on all modern browsers. This plugin (now being developed by Adam Tuttle) will add the necessary JavaScript and CSS to every page Mango outputs (aside from admin), and enables advanced linking in TinyMCE. Find out more: <a href="http://fusiongrokker.com/page/projects/lightbox-mango-plugin">http://fusiongrokker.com/page/projects/lightbox-mango-plugin</a></p>
<p style="padding-left: 30px;"> </p>
<p>The nerds here have several plugin ideas whiteboarded out and theorized. And they kick ass! As soon as things die down a bit, we will develop them for all to use. Of course, if someone wanted to contract us out to solely develop Mango Blog plugins, there would be no complaints I can assure you.</p>
<p>
<!-- begin Google Reader MP3 Player -->
<br />
<embed type="application/x-shockwave-flash"
src="http://www.google.com/reader/ui/3247397568-audio-player.swf?audioUrl=http://www.iowahawkeyes.net/hawks/audio/Iowa-KirkFerentz-HouseSpeech.mp3"
width="500"
height="27"
allowscriptaccess="never"
quality="best"
bgcolor="#000000"
wmode="window"
flashvars="playerMode=embedded" />
<br />
<!-- end Google Reader MP3 Player -->
</p>
The Launching of Hawkeye Tweetsurn:uuid:905A8CC6-3048-30B1-2AE547173E8D6FEC2009-09-06T10:09:42Z2009-09-06T10:09:00Z<p><a class="borderit" href="http://hawkeyetweets.com/"><img src="/blog/assets/content//hawkeye-tweets.jpg" alt="" width="490" height="140" /></a></p>
<p>There is no mistaking the fact that I am a HUGE Iowa Hawkeye Nerd. If you hadn't noticed, two of the last three sites launched by Brice Cheddarn Development have been Hawkeye related. <a href="http://hawkapalooza.com/" target="_blank">Hawkapalooza</a> was a pro-bono website put together to help a student organization at the University of Iowa. <a href="http://nilekinnick.net/" target="_blank">NILE</a> was put together for a client to help him promote his novel. <br /><br /><a href="http://hawkeyetweets.com/">Hawkeye Tweets</a> is personal project to support my favorite team. It was inspired by the work of colleagues, who put together <a href="http://sunstweets.com/" target="_blank">Suns Tweets</a> and <a href="http://cardstweets.com/" target="_blank">Cards Tweets</a> as a way to use Twitter in support of their teams. I took the same concept and applied it to the Iowa Hawkeyes.<br /><br />With the help of <a href="http://justsignal.com" target="_blank">justSignal</a>, the same technology used on Suns Tweets and Cards Tweets, I was able to put this site together in one massive all night, <a href="http://www.monsterenergy.com/" target="_blank">Monster-fueled</a> hacking session. Hawkeye Tweets uses the justSignal Twitter Widget to pull in the streaming tweets and ColdFusion to power the backend and other ancillary components. ColdFusion will be used more heavily as the site expands.
</p>Bret
<p><a class="borderit" href="http://hawkeyetweets.com/"><img src="/blog/assets/content//hawkeye-tweets.jpg" alt="" width="490" height="140" /></a></p>
<p>There is no mistaking the fact that I am a HUGE Iowa Hawkeye Nerd. If you hadn't noticed, two of the last three sites launched by Brice Cheddarn Development have been Hawkeye related. <a href="http://hawkapalooza.com/" target="_blank">Hawkapalooza</a> was a pro-bono website put together to help a student organization at the University of Iowa. <a href="http://nilekinnick.net/" target="_blank">NILE</a> was put together for a client to help him promote his novel. <br /><br /><a href="http://hawkeyetweets.com/">Hawkeye Tweets</a> is personal project to support my favorite team. It was inspired by the work of colleagues, who put together <a href="http://sunstweets.com/" target="_blank">Suns Tweets</a> and <a href="http://cardstweets.com/" target="_blank">Cards Tweets</a> as a way to use Twitter in support of their teams. I took the same concept and applied it to the Iowa Hawkeyes.<br /><br />With the help of <a href="http://justsignal.com" target="_blank">justSignal</a>, the same technology used on Suns Tweets and Cards Tweets, I was able to put this site together in one massive all night, <a href="http://www.monsterenergy.com/" target="_blank">Monster-fueled</a> hacking session. Hawkeye Tweets uses the justSignal Twitter Widget to pull in the streaming tweets and ColdFusion to power the backend and other ancillary components. ColdFusion will be used more heavily as the site expands.<br /><br /><a href="http://justsignal.com"><strong>justSignal</strong></a> is a company that helps other companies and individuals find all of the Social Media content they are interested in, without all the noise. The technology collects a wide variety of information from social media outlets and helps people make sense of it all. It goes way beyond the Twitter widget I hacked into for Hawkeye Tweets and dives into the yet untapped wonderland of social media tracking and statistical analysis. <br /><br />Having met the founder of justSignal, Brian Troy, at <a href="/blog/post.cfm/startup-weekend-phoenix-from-a-nerd-s-perspective">Phoenix Startup Weekend</a>, he was more than willing to help me put this site idea together. I am thankful Brian took the time to help me plan out my site, and look forward to working with him on future projects.<br /><br />Let's hope Hawkeye Tweets can help my Iowa Hawkeyes win a Big Ten Championship this year. After yesterday's game, it is clear we need all the help we can get.</p>
The Launching of Nile Kinnickurn:uuid:6FB70088-3048-30B1-2A902FD1932AC6012009-08-31T01:08:12Z2009-08-31T02:08:00Z<p><a class="borderit" href="http://nilekinnick.net/"><img src="/blog/assets/content//nile-by-t-lidd.jpg" alt="" width="490" height="140" /></a></p>
<p>Nile Kinnick played football at the <a href="http://www.uiowa.edu/">University of Iowa</a>
in the late 1930s. He went on to break many Iowa Hawkeye football
records on his way to winning the 1939 Heisman Trophy. But there was
more to Nile Kinnick than just football. And Tom Lidd did an
excellent job of telling the full story in his book <strong><em>NILE</em></strong>.</p>
<p>Having discovered this novel one weekend while doing research, I was quick to purchase it. I also wrote a blog post about it on the <a href="http://www.iowahawkeyes.net/">Iowa Hawkeyes Blog</a>. In that post, I made an open offer to help the author promote and sell the book. As luck should have it, Tom was a reader of the blog and sent me an email stating an interest in my offer.</p>
<p>Over the next several months, Tom and I exchanged several emails and ideas back and forth on how to promote his book. Th overall goal is to have the book turned into a screenplay, so having a web presence could only help acheive that goal. And believe me, this novel will make a fantastic movie.</p>Bret
<p><a class="borderit" href="http://nilekinnick.net/"><img src="/blog/assets/content//nile-by-t-lidd.jpg" alt="" width="490" height="140" /></a></p>
<p>Nile Kinnick played football at the <a href="http://www.uiowa.edu/">University of Iowa</a> in the late 1930s. He went on to break many Iowa Hawkeye football records on his way to winning the 1939 Heisman Trophy. But there was more to Nile Kinnick than just football. And Tom Lidd did an excellent job of telling the full story in his book <strong><em>NILE</em></strong>.</p>
<p>Having discovered this novel one weekend while doing research, I was quick to purchase it. I also wrote a blog post about it on the <a href="http://www.iowahawkeyes.net/">Iowa Hawkeyes Blog</a>. In that post, I made an open offer to help the author promote and sell the book. As luck should have it, Tom was a reader of the blog and sent me an email stating an interest in my offer.</p>
<p>Over the next several months, Tom and I exchanged several emails and ideas back and forth on how to promote his book. Th overall goal is to have the book turned into a screenplay, so having a web presence could only help acheive that goal. And believe me, this novel will make a fantastic movie.</p>
<p>The first logical step in helping Tom was to build a website. As more luck should have it, the domain <a href="http://nilekinnick.net/">nilekinnick.net</a> was available. We originally tried to reach out to the owner of the nilekinnick.com domain, but we were unable to broker a reasonable deal.</p>
<p>The website was constructed using a very basic WordPress template with a jQuery slider, and houses basic information about Nile Kinnick, the novel NILE, the author Tom Lidd and the Ironmen team of 1939.</p>
<p>The site will evolve with time to meet changing needs and demands. For now, it will be used as a tool to help sell books, in addition to helping promote the advancement of a screenplay.</p>
<p>Check out the website for <a href="http://nilekinnick.net/">NILE, a novel by T. Lidd</a>. And if you are a Hawkeye Nerd like myself, make sure to <a href="http://www.authorhouse.com/BookStore/ItemDetail.aspx?bookid=51147">buy a copy of NILE</a>.</p>
Iowa Tech and Social Media Interactive Conferenceurn:uuid:6ABCA6F6-3048-30B1-2AEDEE05B6AD45C72009-08-30T02:08:00Z2009-08-30T12:08:00Z<p><a class="borderit" href="http://iowatasmic.com/"><img src="/blog/assets/content//Iowa-Tech-Social-Media-Interactive-Conference.jpg" alt="" width="490" height="140" /></a></p>
<p>In just a few short weeks, Iowa will be hosting the <strong>Iowa Tech and Social Media Interactive Conference</strong> (<a href="http://iowatasmic.com/">IOWAtasmic</a>), one of the very fist large social media conferences to be organized in the state. On September 18-20th, 2009 in Mount Pleasant, Iowa on the <span class="bio">Welsyan College</span> campus, IOWAtasmic will provide a chance for businesses and individuals around Iowa and the midwest to take part in and learn about the ever growing social media revolution.</p>
<p>While many people think social media is just a fad, IOWAtasmic sets out to demonstrate to Iowans that it's not. The goal of the event is to bring new technology and knowledge to Iowa, as well as to showcase the existing technology and services already offered in the area.</p>
<p>The conference also sets out to prove that Iowa is not ten years behind the rest of the World, technologically speaking, and will attempt to highlight incentives and <a href="http://techsentry.org/2009/07/iowa-tech-and-social-media-conference-set-for-september/">benefits of relocating or expanding into Iowa</a>. </p>
<p>Event organizer <a href="http://bradman.tv/blog/">Bradley Laborman</a>, known as Bradman in the online world, says attendees will benefit from the knowledge of top tech and social media figures from the U.S. and Canada. The conference will consist of keynote speakers, local musicians, youtube celebrities, social media gurus and entrepreneurs from across the country.</p>Bret
<p><a class="borderit" href="http://iowatasmic.com/"><img src="/blog/assets/content//Iowa-Tech-Social-Media-Interactive-Conference.jpg" alt="" width="490" height="140" /></a></p>
<p>In just a few short weeks, Iowa will be hosting the <strong>Iowa Tech and Social Media Interactive Conference</strong> (<a href="http://iowatasmic.com/">IOWAtasmic</a>), one of the very fist large social media conferences to be organized in the state. On September 18-20th, 2009 in Mount Pleasant, Iowa on the <span class="bio">Welsyan College</span> campus, IOWAtasmic will provide a chance for businesses and individuals around Iowa and the midwest to take part in and learn about the ever growing social media revolution.</p>
<p>While many people think social media is just a fad, IOWAtasmic sets out to demonstrate to Iowans that it's not. The goal of the event is to bring new technology and knowledge to Iowa, as well as to showcase the existing technology and services already offered in the area.</p>
<p>The conference also sets out to prove that Iowa is not ten years behind the rest of the World, technologically speaking, and will attempt to highlight incentives and <a href="http://techsentry.org/2009/07/iowa-tech-and-social-media-conference-set-for-september/">benefits of relocating or expanding into Iowa</a>. </p>
<p>Event organizer <a href="http://bradman.tv/blog/">Bradley Laborman</a>, known as Bradman in the online world, says attendees will benefit from the knowledge of top tech and social media figures from the U.S. and Canada. The conference will consist of keynote speakers, local musicians, youtube celebrities, social media gurus and entrepreneurs from across the country.</p>
<p>Among the list of speakers is <a href="http://www.google.com/search?q=chris">Chris Pirillo</a>, an Internet Entrepreneur and Consultant that graduated from the University of Northern Iowa. For those who don't know who Chris is, just Google "Chris"...he is the top result. Take it from someone who does a fair amont of search engine optimization for companies...that is impressive.</p>
<p>Also included in the speakers at the event are <a href="http://twitter.com/TheOneinPink">Sarah Townsend</a>, the Editorial Director for SocialVibe and Derek Johnson, CEO of internet startup <a href="http://www.tatango.com/">Tatango</a>.</p>
<p>The conference is scheduled into a large variety of different sessions, ranging in topic from How to Find and Engage the Social Community to Social Media Conversion and ROI to E-Stalkers and Protecting your identity Online. With several different sessions and panels available, IOWAtasmic provides a wealth of knowledge for people to learn from.</p>
<p>The nerds at Brice Cheddarn Development are proud sponsors of Iowa Tech and Social Media Interactive Conference, and we look forward to helping show Iowa that Social Media might be the <a href="http://www.youtube.com/watch?v=sIFYPQjYhv8">biggest mental shift since the Industrial Revolution</a>. With any luck, this can be a regular event in Iowa (and maybe Bradman will let us help him with the website next year).</p>
<p>For more information:</p>
<p><a href="http://iowatasmic.com/">IOWAtasmic website</a><br /><a href="http://www.facebook.com/event.php?eid=210814420374">IOWAtasmic on Facebook</a><br /><a href="http://twitter.com/iowatasmic">IOWAtasmic on Twitter</a></p>
<p><strong>Iowa Tech and Social Media Interactive Conference</strong><br />
September 18-20th, 2009<br />
Mount Pleasant, Iowa | <span class="bio">Welsyan College</span></p>
The Launching of Hawkapaloozaurn:uuid:F6563E6F-3048-30B1-2AC28A8B2B7F7E7F2009-08-07T12:08:16Z2009-08-07T02:08:00Z<p><a class="borderit" title="Hawkapalooza" href="http://hawkapalooza.com/"><img src="/blog/assets/content//hawkapalooza.jpg" alt="" width="490" height="140" /></a></p>
<p>Our involvement with <a href="http://hawkapalooza.com/"><strong>Hawkapalooza</strong></a> began by feeding an addiction for Hawkeye information. Like most mornings, I was reading Iowa Hawkeye news while waiting for the caffeine to kick in, as I have found this to be the best way to start off the day.<br /><br />One morning, the student newspaper for the University of Iowa (<a href="http://www.dailyiowan.com/">The Daily Iowan</a>) posted an article about a newly formed Student Committee on Athletics whose purpose was to encourage Hawkeye Pride. The committee had a brilliant idea called “Hawkapalooza,” a pep rally and concert with the goal of the event to drum up excitement before the football team’s home-opener with Northern Iowa on September 5.<br /><br />Being the web nerd I am, and having a fair amount of domain instinct, I checked the availability of the <a href="http://hawkapalooza.com/">hawkapalooza.com</a> domain after reading the article. Sure enough, it was still available. I quickly purchased the COM, NET and ORG versions of the domain and then sent an email over to the committee letting them know they were secured. <br /><br />My purpose in acquiring the domains was not to profit from them or use them as leverage. Rather, it was to assist the student committee and contribute to a good cause. I used my nerdness for good to help support my beloved Iowa Hawkeyes.</p>Bret
<p><a class="borderit" title="Hawkapalooza" href="http://hawkapalooza.com/"><img src="/blog/assets/content//hawkapalooza.jpg" alt="" width="490" height="140" /></a></p>
<p>Our involvement with <a href="http://hawkapalooza.com/"><strong>Hawkapalooza</strong></a> began by feeding an addiction for Hawkeye information. Like most mornings, I was reading Iowa Hawkeye news while waiting for the caffeine to kick in, as I have found this to be the best way to start off the day.<br /><br />One morning, the student newspaper for the University of Iowa (<a href="http://www.dailyiowan.com/">The Daily Iowan</a>) posted an article about a newly formed Student Committee on Athletics whose purpose was to encourage Hawkeye Pride. The committee had a brilliant idea called “Hawkapalooza,” a pep rally and concert with the goal of the event to drum up excitement before the football team’s home-opener with Northern Iowa on September 5.<br /><br />Being the web nerd I am, and having a fair amount of domain instinct, I checked the availability of the <a href="http://hawkapalooza.com/">hawkapalooza.com</a> domain after reading the article. Sure enough, it was still available. I quickly purchased the COM, NET and ORG versions of the domain and then sent an email over to the committee letting them know they were secured. <br /><br />My purpose in acquiring the domains was not to profit from them or use them as leverage. Rather, it was to assist the student committee and contribute to a good cause. I used my nerdness for good to help support my beloved Iowa Hawkeyes.<br /><br />After contacting the committee, I agreed to help even further than handing over the domains. They were very happy I secured the doman names, and since I displayed that I knew what I was talking about, they asked if I wouldn't mind helping them setup the site, too. So, I agreed and volunteered the services of Brice Cheddarn Development to help them setup a site and organize their social media efforts.<br /><br />Since the University only offers 10MB of space and no database access, we set hawkapalooza.com up on our of our servers using a free WordPress installation and template. From there, we tweaked and branded the template with a custom tigerhawk logo, added in a lot of helpful plugins exclusive to WordPress and setup usernames/passwords for the committee members. Now the committee can update the site when and as they see fit. They will post videos, photos and information to help spread the word. <br /><br />Hawkapalooza will likely become a yearly activity, so the committee now has the domains and webspace to continually promote the event. Going forward, they will use the site as a tool to organize Hawkeye Pride.<br /><br />The <strong>Hawkapalooza pep rally and concert will be help at 6:30 PM on September 3, 2009 in University of Iowa's Hubbard Park</strong>. If you can't attend, definitely show your support through their new website.</p>
<p><em>Note: We didn't go with Mango or CF on this one, due to the need for some of the plugins in WP. Due to time constraints, we didn't custom build anything for this other than a few design elements.</em></p>
ColdFusion is the Sparta of Programming Languagesurn:uuid:EAF0ACAA-3048-30B1-2A09EA049A1FBA4B2009-08-05T07:08:36Z2009-08-05T07:08:00Z<p><a class="borderit" href="http://labs.adobe.com/technologies/coldfusion9/"><img src="/blog/assets/content//300_movie_image.jpg" alt="" width="490" height="140" /></a></p>
<p>Now I know what the Spartan Warriors in the movie 300 felt like fighting a seemingly unwinnable battle. This feeling comes after responding to yet another forum question on LinkedIn this morning where 10 PHP and Ruby developers decided to pile on and declare ColdFusion dead. And they did so to such an innocent and harmless question that it begs to wonder: what the hell is wrong with people?</p>
<p>I wasn't going to write another post on this. When I <a href="/blog/post.cfm/techrepublic-blog-puts-coldfusion-on-life-support">last wrote a post on this topic</a>, a few ColdFusion people sent in or posted comments about not paying this type of nonsense any mind. But it is getting harder and harder to ignore the mindless banality. This one being particularly hard, as one of the commenters to this LinkedIn question was a person that was present at my <a href="/blog/post.cfm/lighting-a-fire-under-the-valley-with-ignite-phoenix">Developer Ignite</a> speech, in which I came to the defense of ColdFusion and declared my <strong>ColdFusiontology</strong> crusade. (Don't worry, I sent my colleague an email calling him my new arch nemsis for his answer)</p>
<p>This one was also hard due to <a href="http://bit.ly/dZ9Pq " target="_blank">the question being asked</a>. The question came from a dad asking if it is ok to encourage his son, as his son wants to start learning ColdFusion. </p>Bret
<p><a class="borderit" href="http://labs.adobe.com/technologies/coldfusion9/"><img src="/blog/assets/content//300_movie_image.jpg" alt="" width="490" height="140" /></a></p>
<p>Now I know what the Spartan Warriors in the movie 300 felt like fighting a seemingly unwinnable battle. This feeling comes after responding to yet another forum question on LinkedIn this morning where 10 PHP and Ruby developers decided to pile on and declare ColdFusion dead. And they did so to such an innocent and harmless question that it begs to wonder: what the hell is wrong with people?</p>
<p>I wasn't going to write another post on this. When I <a href="/blog/post.cfm/techrepublic-blog-puts-coldfusion-on-life-support">last wrote a post on this topic</a>, a few ColdFusion people sent in or posted comments about not paying this type of nonsense any mind. But it is getting harder and harder to ignore the mindless banality. This one being particularly hard, as one of the commenters to this LinkedIn question was a person that was present at my <a href="/blog/post.cfm/lighting-a-fire-under-the-valley-with-ignite-phoenix">Developer Ignite</a> speech, in which I came to the defense of ColdFusion and declared my <strong>ColdFusiontology</strong> crusade. (Don't worry, I sent my colleague an email calling him my new arch nemsis for his answer)</p>
<p>This one was also hard due to <a href="http://bit.ly/dZ9Pq " target="_blank">the question being asked</a>. The question came from a dad asking if it is ok to encourage his son, as his son wants to start learning ColdFusion. </p>
<p style="padding-left: 30px;"><em>"So my kid is trying to convince me that cold fusion is the development tool that he wants to study. And that it will be a great thing to learn in the future. CF has been around for a while... is it the future or passe? "</em></p>
<p>I was eager to answer this one when I read it first. What a great thing, a dad making sure his son is learning the right language. That is very commendable. And I fully expected the PHPers and the Rubyists to chime in and suggest learning their language instead. I actually applaud them for doing so. But did they really have to answer an inquisitive father with 'when I think of ColdFusion, I think of a dying platform'. Most of them offer suggestions without having any real info on ColdFusion to base their opinion off of. And ultimately, that is the most frustrating part.</p>
<p>When is the world going to realize that ColdFusion developers are not the autoworkers of the web industry. CF is not an obsolete language. We are an army of 800,000 strong, and we are not going anywhere. <strong>THIS. IS. COLDFUSION!</strong></p>
The Launching of Mooney, Wright & Moore, PLLCurn:uuid:E0130E4E-3048-30B1-2A9639FF1BE563DC2009-08-03T04:08:58Z2009-08-03T04:08:00Z<p><a class="borderit" href="http://www.azstatetaxlaw.com/"><img src="/blog/assets/content//mooney-wright-moore.jpg" alt="" width="490" height="140" /></a></p>
<p>The nerds have been working hard for our clients lately, and finally some results are starting to show. Over the weekend, we launched the new website for the law office of <a href="http://www.azstatetaxlaw.com/">Mooney, Wright & Moore, PLLC</a>. </p>
<p>Mooney, Wright & Moore, PLLC is a law firm in Phoenix, Arizona focused on state and local tax controversies. It is a small firm with some very big clients and a very impressive list of representative cases. The attorneys were previously partners in a large corporate law firm, but decided to start their own a few years ago. </p>
<p>Since branching out on their own, they have had just a very basic website in place compliments of GoDaddy's Website Tonight. Realizing that this was not doing the best job of representing their firm, they contacted us about constructing them a quality website. And we gladly accepted the task.</p>Bret
<p><a class="borderit" href="http://www.azstatetaxlaw.com/"><img src="/blog/assets/content//mooney-wright-moore.jpg" alt="" width="490" height="140" /></a></p>
<p>The nerds have been working hard for our clients lately, and finally some results are starting to show. Over the weekend, we launched the new website for the law office of <a href="http://www.azstatetaxlaw.com/">Mooney, Wright & Moore, PLLC</a>. </p>
<p>Mooney, Wright & Moore, PLLC is a law firm in Phoenix, Arizona focused on state and local tax controversies. It is a small firm with some very big clients and a very impressive list of representative cases. The attorneys were previously partners in a large corporate law firm, but decided to start their own a few years ago. </p>
<p>Since branching out on their own, they have had just a very basic website in place compliments of GoDaddy's Website Tonight. Realizing that this was not doing the best job of representing their firm, they contacted us about constructing them a quality website. And we gladly accepted the task.</p>
<p>The project called for a professional business site controlled with a content management system. It was a small budget project with the constraint of needing to stay with GoDaddy hosting. This meant taking the WordPress approach. WordPress is our default PHP CMS option of choice when we can't go with ColdFusion. We are huge WordPress fans, and it made perfect sense for Mooney, Wright & Moore.</p>
<p>We took an existing WordPress theme, branded it and added in several widgets and PHP extensions. From there, we added several pages of content. We also created a page for representative cases, made individual bio pages for the attorneys, uploaded professional photography from <a href="http://www.markowkent.com/">Markow Kent</a> and added in some basic search engine optimization.</p>
<p>Mooney, Wright & Moore, PLLC will be a long standing client, and will undoubtly need more work done to their site over the years but now they have a professional website with the control in their hands. The attorneys can blog as they see fit through the WordPress or by email and they can upload cases and images to the site with as needed. And now their law firm is represented well on the web.</p>
The most unappreciated tag in ColdFusion: cfelseurn:uuid:CA493B58-3048-30B1-2A4A2A4A2BA719482009-07-29T11:07:13Z2009-07-29T11:07:00Z<p><a class="borderit" href="http://cfelse.com/"><img src="/blog/assets/content//cfelse.jpg" alt="" width="490" height="140" /></a></p>
<p>The idea to create a single serving site came about a long time ago, long before Wired's recent article hit newsstands. Having several domain names in the repository, it seemed like a good idea to throw up a simple, yet original one page site from time to time. But, no ideas have ever really jumped out and screamed at me to create.</p>
<p>For those who are unfamiliar with the term, a single-serving site is a web site comprised of standalone page setup on a dedicated domain name that only has one purpose. They are usually strange or nerdy sites with a targeted audience, and they may be the next new way to communicate ideas and pass messages. They are becoming a very hot trend in the world of Twitter because they help keep it short, relevant and simple while adding a bit of flavor into the mix.</p>
<p>The idea has been around for a few years, and there are several examples out there. <a href="http://istwitterdown.com/">Is Twitter Down</a>, <a href="http://www.islostarepeat.com/">Is Lost a Repeat</a>, <a href="http://www.sometimesredsometimesblue.com/">Sometimes Red Sometimes Blue</a> and <a href="http://www.jellotime.com/">Jello Time</a>, just to name some of the more basic ones. </p>
<p>Wired Magazine published an article in its August edition, titled <a href="http://www.wired.com/techbiz/it/magazine/17-08/st_singleservingsite">How Do I Make a Single-Serving Site</a>? Being a Wired subscriber and reader, the article reminded me of my desire to create single-serving websites on a more regular basis. The article also came with a new form of inspiration, as I instantly knew which domain and idea to use for the Brice Cheddarn Development single-serving site experiment.</p>Bret
<p><a class="borderit" href="http://cfelse.com/"><img src="/blog/assets/content//cfelse.jpg" alt="" width="490" height="140" /></a></p>
<p>The idea to create a single serving site came about a long time ago, long before Wired's recent article hit newsstands. Having several domain names in the repository, it seemed like a good idea to throw up a simple, yet original one page site from time to time. But, no ideas have ever really jumped out and screamed at me to create.</p>
<p>For those who are unfamiliar with the term, a single-serving site is a web site comprised of standalone page setup on a dedicated domain name that only has one purpose. They are usually strange or nerdy sites with a targeted audience, and they may be the next new way to communicate ideas and pass messages. They are becoming a very hot trend in the world of Twitter because they help keep it short, relevant and simple while adding a bit of flavor into the mix.</p>
<p>The idea has been around for a few years, and there are several examples out there. <a href="http://istwitterdown.com/">Is Twitter Down</a>, <a href="http://www.islostarepeat.com/">Is Lost a Repeat</a>, <a href="http://www.sometimesredsometimesblue.com/">Sometimes Red Sometimes Blue</a> and <a href="http://www.jellotime.com/">Jello Time</a>, just to name some of the more basic ones. </p>
<p>Wired Magazine published an article in its August edition, titled <a href="http://www.wired.com/techbiz/it/magazine/17-08/st_singleservingsite">How Do I Make a Single-Serving Site</a>? Being a Wired subscriber and reader, the article reminded me of my desire to create single-serving websites on a more regular basis. The article also came with a new form of inspiration, as I instantly knew which domain and idea to use for the Brice Cheddarn Development single-serving site experiment.</p>
<p>While crusing expired domains names a few weeks ago, I came across one that would grab the attention of any ColdFusion developer: <strong>cfelse.com</strong>. I bought the domain right away with an idea for it in mind. It dawned on me one day while programming that the cfelse tag always gets the raw end of the deal in application development. It's the red-headed step child of ColdFusion, and always gets the leftover logic processing in code. When I saw the domain name available, I thought it would be a perfect way to pay tribute to the most unappreciated tag in the ColdFusion library.</p>
<p><a href="http://cfelse.com/"><strong>Cfelse.com</strong></a> is a single-serving website whose sole purpose is to show the most abused tag how important it really is to the CF community. It uses a combination of CF, JQuery and CSS, and was designed, written and constructed in <strong>one day</strong>. More improvements and enhancements will be added to the site as time goes on, but it will always remain a single-serving site dedicated to getting the word out about the life and struggles of cfelse. Once comments come in, they will be posted to the page.</p>
<p>More <a href="http://kottke.org/08/02/single-serving-sites">single-serving sites</a> to come in the very near future, too.</p>
Get ready for Phoenix Design Weekurn:uuid:B4F24286-3048-30B1-2A68E487FCC3CD2B2009-07-25T07:07:15Z2009-07-30T01:07:00Z<p><a class="borderit" href="http://www.phxdw.com/"><img title="Phoenix Design Week" src="/blog/assets/content/phxdw.jpg" alt="Phoenix Design Week" width="490" height="140" /></a></p>
<p>Three months from now, the Phoenix design community plans to take over the city. <a href="http://www.phxdw.com/">Phoenix Design Week</a> is a community movement dreamed up by a motivated designer named <a href="https://twitter.com/markdudlik" target="_blank">Mark Dudlik</a> in an attempt to unite and strengthen the design community. His open letter gained immediate momentum and support, and further solidified the need to ignite a fire from within. <br /><br />Phoenix is a city full of talented and passionate developers, artists and designers, and Phoenix Design Week will be the first large-scale effort to bring them together around their shared love for visual design. The event is will gather graphic and interactive design individuals, design firms and industry organizations to participate in a week’s worth of events to showcase what Phoenix Design has to offer the world.</p>Bret
<p><a class="borderit" href="http://www.phxdw.com/"><img title="Phoenix Design Week" src="/blog/assets/content/phxdw.jpg" alt="Phoenix Design Week" width="490" height="140" /></a></p>
<p>Three months from now, the Phoenix design community plans to take over the city. <a href="http://www.phxdw.com/">Phoenix Design Week</a> is a community movement dreamed up by a motivated designer named <a href="https://twitter.com/markdudlik" target="_blank">Mark Dudlik</a> in an attempt to unite and strengthen the design community. His open letter gained immediate momentum and support, and further solidified the need to ignite a fire from within. <br /><br />Phoenix is a city full of talented and passionate developers, artists and designers, and Phoenix Design Week will be the first large-scale effort to bring them together around their shared love for visual design. The event is will gather graphic and interactive design individuals, design firms and industry organizations to participate in a week’s worth of events to showcase what Phoenix Design has to offer the world.<br /><br />Phoenix Design Week (PHXdw) will be held October 21-25, 2009 and will include a large variety of exhibitions, panels, training, networking, workshops, and much more. It will coincide with <a href="http://cooperhewitt.org/NDW/2008/">Cooper Hewitt National Design Week</a>, giving national attention to our best and brightest.<br /><br />The nerds at Brice Cheddarn Development understand the importance of design in the web world, and look forward to participating and sponsoring this event. As October approaches, we will post more information.</p>
IE6 finally hears the Death Rattleurn:uuid:9DEC37CC-3048-30B1-2AF9C9F1C3BA5BB62009-07-21T08:07:47Z2009-07-21T08:07:00Z<p><a class="borderit" title="Get Firefox" href="http://www.getfirefox.com/"><img src="/blog/assets/content//ie6-must-die.jpg" alt="" width="490" height="140" /></a></p>
<p><strong>Internet Explorer 6</strong> is like a bad date that just won't take the hint. The long standing browser has been causing headaches for web developers and designers since 2001, and until recently people have done nothing but accept the abuse. Recent news, however, suggests we may have finally had our fill of abuse from IE6.</p>
<p>Internet Explorer is the main web browser that many of us nerds learned to surf the web on. Back in the early part of the decade, IE6 did its job and did it well. This was in large part because no other options existed. Before Microsoft was legally forced not to, they had the ability to bundle the browser with the Windows operating systems, which led to <a href="http://mashable.com/2009/07/16/ie6-must-die/" target="_blank">Microsoft experiencing a 95% market share for internet browsers</a>. And when that many people adopt a product, it then becomes impossible to move away from.</p>
<p>Today, we have far superior browsers in the market like Firefox, Chrome, Opera, and Safari, as well as Internet Explorer 8 (I hate to say it, but IE8 is pretty slick). These browsers are not only standards compliant, which IE6 is not, but they have evolved into all-encompassing utilities that reach far beyond the internet and into your everyday lives. I can't imagine life without FF and all of its plugins, let alone surfing the web without it.</p>
<p>I liken the IE situation to one of your grandparents living until 204 years of age, and then thinking they could adequately compete in the NFL for a starting RB position. In 2001, IE6 was just what we needed, but for the web to continue evolving and growing, the browser that requires the most time, energy and effort to make things work must be permanently retired. Not just retired, but banished from even coming close to a computer connected to the internet.</p>Bret
<p><a class="borderit" title="Get Firefox" href="http://www.getfirefox.com/"><img src="/blog/assets/content//ie6-must-die.jpg" alt="" width="490" height="140" /></a></p>
<p><strong>Internet Explorer 6</strong> is like a bad date that just won't take the hint. The long standing browser has been causing headaches for web developers and designers since 2001, and until recently people have done nothing but accept the abuse. Recent news, however, suggests we may have finally had our fill of abuse from IE6.</p>
<p>Internet Explorer is the main web browser that many of us nerds learned to surf the web on. Back in the early part of the decade, IE6 did its job and did it well. This was in large part because no other options existed. Before Microsoft was legally forced not to, they had the ability to bundle the browser with the Windows operating systems, which led to <a href="http://mashable.com/2009/07/16/ie6-must-die/" target="_blank">Microsoft experiencing a 95% market share for internet browsers</a>. And when that many people adopt a product, it then becomes impossible to move away from.</p>
<p>Today, we have far superior browsers in the market like Firefox, Chrome, Opera, and Safari, as well as Internet Explorer 8 (I hate to say it, but IE8 is pretty slick). These browsers are not only standards compliant, which IE6 is not, but they have evolved into all-encompassing utilities that reach far beyond the internet and into your everyday lives. I can't imagine life without FF and all of its plugins, let alone surfing the web without it.</p>
<p>I liken the IE situation to one of your grandparents living until 204 years of age, and then thinking they could adequately compete in the NFL for a starting RB position. In 2001, IE6 was just what we needed, but for the web to continue evolving and growing, the browser that requires the most time, energy and effort to make things work must be permanently retired. Not just retired, but banished from even coming close to a computer connected to the internet.</p>
<p>IE6 has stifled web innovation and design for long enough. <a href="http://www.washingtonpost.com/wp-dyn/content/article/2009/07/14/AR2009071401088.html">Companies like Digg and YouTube</a> recently announced they will no longer be supporting this browser. They are just the tip of the iceberg in a long list of web junkies looking to rid the world of the IE6 disease, a list the nerds at Brice Cheddarn Development are on.</p>
<p><img style="float: left; margin: 10px;" src="/blog/assets/content//ie-128x128.png" alt="" width="128" height="128" />Some might ask why web nerds don't like IE6? The quick version (because to do the full version justice would take a few years) is for not recognizing transparent PNG images, or not adequately rendering CSS, or lack of security, or lack of standards compliance. Constructing a website to render correctly in IE6 without the use of any standards or proper CSS is like trying to haul 4 truckloads of cargo up a hill behind a moped. Ya, it can be done...but it's going to take 42 times the effort. </p>
<p>A huge responsibility for the continued use and dependency of IE6 falls on corporate America. The current economic climate, coupled with the long legacy IE6 applications have, has prevented many businesses from upgrading their browsers. Since so many applications were developed with IE6 as a dependency, the costs of such a corporate wide upgrade are huge. With the economy being in turmoil over the last couple of years, companies have used this as an excuse not to move forward. The economy is also another reason people grasp to what they know and why they fear change when change is what is needed to recover and move forward.</p>
<p>It is far past time to stop making excuses for why we still cling to IE6. The web has evolved far beyond what IE6 was prepared to handle, and the longer we continue to embrace it, the more we limit our opportunity to see the true potential of the web. <a href="http://mashable.com/2009/07/17/ie6-must-die-twibon/">Hordes of people on Twitter</a> and all over the internet have finally started to take a stand against IE6. And so have the nerds at Brice Cheddarn. </p>
<p>From this point forward, no more of our websites or applications will be tailored to IE6. While we pride ourselves in making cross-browser friendly and standards-compliant websites, we need to move on and stop wasting our time tailoring to a browser that just won't listen. In order for us to do our clients justice, we have to stop the madness.</p>
<p><a href="http://ripie6.com/">Rest In Peace, IE6</a>.</p>
New Mango Blog Theme: Company Blueurn:uuid:95677EF2-3048-30B1-2AF780F9AC31A2942009-07-19T06:07:58Z2010-01-31T02:01:00Z<p><a class="borderit" href="/mango/companyblue.zip"><img src="/blog/assets/content//company-blue-mango-wide.jpg" alt="" width="490" height="140" /></a></p>
<p>Yes, we coded another Mango Blog theme. This is the 2nd of what
will soon be many themes to be made from the almost forgotten folder of
designs we stumbled upon. This design is called <strong>Company Blue </strong>and is available for anyone to download and use/change freely under the Creative Commons.</p>
<p>The <strong>Company Blue</strong> theme has a little bit more style to it than
the last theme. This validated XHTML theme is very professional
looking site and is great for any small business. It is fairly search
engine optimized and easy to work on. It has space for a big promo
image on the front page. It also has a site search tied into every
page, making it easier for people to find things on your Mango site.</p>Bret
<p><a class="borderit" href="/mango/companyblue.zip"><img src="/blog/assets/content//company-blue-mango-wide.jpg" alt="" width="490" height="140" /></a></p>
<p>Yes, we coded another Mango Blog theme. This is the 2nd of what will soon be many themes to be made from the almost forgotten folder of designs we stumbled upon. This design is called <strong>Company Blue </strong>and is available for anyone to download and use/change freely under the Creative Commons.</p>
<p>The <strong>Company Blue</strong> theme has a little bit more style to it than the last theme. This validated XHTML theme is very professional looking site and is great for any small business. It is fairly search engine optimized and easy to work on. It has space for a big promo image on the front page. It also has a site search tied into every page, making it easier for people to find things on your Mango site.</p>
<p>As an additional experiment, we incorporated <a href="http://www.visual28.com/articles/twitter-plugin-updated-1-3">Visual28's Twitter Plugin</a> in a different way. We have seen (and used) similar techniques with WordPress, and attempted to adapt the plugin from being a sidebar option only. This still needs some work, and is restricted to only being able to display 1 tweet at a time, but it at least shows the flexiblity of Visual28's plugin. </p>
<p>As time allows, updates and enhancements
will be made. Let us know your thoughts or if you run into any
problems. It was tested with FF/Chrome/IE7/IE8/Opera/Flock. This design is far from perfect, but we wanted to post it anyway in case it sparked ideas for other Mango developers. Download this theme and play around with it. We might even code it for BlogCFC, too.</p>
<div class="borderit">
<div class="spacer"> </div>
<div class="menu-left">
<a title="click to download" href="/mango/businessmango.zip"><img style="border:0px;" title="click to download" src="/images/download-icon.png" alt="click to download" /></a>
</div>
<div class="menu-right">
<h2><a title="click to download" href="/mango/companyblue.zip">Download Company Blue</a></h2>
<p>download and take it for a test drive!<br />
Theme version: 1.0<br />
Last Updated:2009-07-19</p>
</div>
</div>
<p><br class="spacer" /></p>
<p><strong>Screenshots:</strong></p>
<p><img src="/blog/assets/content/company-blue-mango-ss1.jpg" alt="" width="300" height="200" /></p>
<p><img src="/blog/assets/content/company-blue-mango-ss2.jpg" alt="" width="300" height="200" /></p>