<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kevin D. Wolski</title>
	<atom:link href="http://www.kdwolski.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kdwolski.com</link>
	<description>Boston-based Web Developer. Geek.</description>
	<lastBuildDate>Wed, 02 May 2012 20:27:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Mac show/hide desktop icons via terminal aliases</title>
		<link>http://www.kdwolski.com/2012/04/27/mac-showhide-desktop-icons-via-terminal-aliases/</link>
		<comments>http://www.kdwolski.com/2012/04/27/mac-showhide-desktop-icons-via-terminal-aliases/#comments</comments>
		<pubDate>Sat, 28 Apr 2012 00:03:44 +0000</pubDate>
		<dc:creator>kdwolski</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[alias]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.kdwolski.com/?p=222</guid>
		<description><![CDATA[A few weeks ago I needed to record a screencast tutorial for work. It was a quick getting started guide for publishing content under WordPress. My desktop is far from tidy, some may claim they saw it on that horrible...]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I needed to record a screencast tutorial for work. It was a quick getting started guide for publishing content under WordPress. My desktop is far from tidy, some may claim they saw it on that horrible TLC show Horders. I didn&#8217;t want to risk recording an hour long video only to later realize my &#8216;Best of Penelope&#8217; folder was visible in the bottom corner. The thought of  giving viewers an hour to speculate what that folder contained and why it was on my work computer was motivation to find an easy way to hide the desktop icons. For the record, that folder is where I store epic photographs of my dog Penelope and not photos of Penelope Cruz.</p>
<p>For such a simple task, using an app seemed wildy inefficient, IMHO. I found this <a title="Hide desktop icons via terminal command" href="http://osxdaily.com/2009/09/23/hide-all-desktop-icons-in-mac-os-x/">great terminal command from OSX Daily</a>. I&#8217;ve had no problems running it on 10.6.8. Your mileage may vary if you&#8217;re on Lion or you use an app to switch out the desktop wallpaper every <em>n</em> minutes/hours/days.</p>
<p>Below is a gist I created that sets these commands up as two aliases: <em>showdesk</em> and <em>hidedesk</em></p>
<p><script src="https://gist.github.com/2341101.js"> </script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kdwolski.com/2012/04/27/mac-showhide-desktop-icons-via-terminal-aliases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Greasemonkey to Inject a Test Stylesheet</title>
		<link>http://www.kdwolski.com/2010/09/10/greasemonkey-inject-stylesheet/</link>
		<comments>http://www.kdwolski.com/2010/09/10/greasemonkey-inject-stylesheet/#comments</comments>
		<pubDate>Sat, 11 Sep 2010 02:26:20 +0000</pubDate>
		<dc:creator>kdwolski</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Web Technology]]></category>

		<guid isPermaLink="false">http://www.kdwolski.com/?p=206</guid>
		<description><![CDATA[Modifying core CSS components on massive websites managed by many distributed teams of admins, developers and designers, has a way of being disruptive. I created a simple Greasemonkey script which replaces a specific stylesheet with another &#8220;test&#8221; stylesheet stored on...]]></description>
			<content:encoded><![CDATA[<p>Modifying core CSS components on massive websites managed by many distributed teams of admins, developers and designers, has a way of being disruptive. I created a simple <a title="Greasemonkey Addon" href="https://addons.mozilla.org/en-US/firefox/addon/748/">Greasemonkey</a> script which replaces a specific stylesheet with another &#8220;test&#8221; stylesheet stored on the same filesystem. Simple, straight forward and unpolished. <span id="more-206"></span></p>
<p>This comes in handy if the CSS changes you are making/testing are extensive and would be annoying to perform in <a title="Firebug Addon" href="http://getfirebug.com/">Firebug</a>. I use this method to hash out some of my invasive changes before I migrate them into files, which, will affect other content areas controlled by other teams.</p>
<h3>Installation</h3>
<p>This method works under Firefox using the Greasemonkey extension. It hasn&#8217;t been tested under <a title="Greasemetal" href="http://greasemetal.31tools.com/"><span style="color: #000000;">Greasemetal</span></a> or <a title="GreaseKit" href="http://8-p.info/greasekit/"><span style="color: #000000;">GreaseKit</span></a>, though I expect it would work.</p>
<p>I recommend changing the @include value to the domain where you are using the script, or it will fire for all domains. Update the two variables: orig and newFile, specifying the file name of the stylesheet to be replace and the path of the test stylesheet you would like to &#8220;inject&#8221; after page load. Save as *.user.js and drag it into Firefox to install. You can leave <em>newFile</em> blank, an the script will then just remove the target CSS contents.</p>
<h3>Copy the source here:</h3>
<pre class="brush:js">
// ==UserScript==
// @name              Inject CSS File
// @namespace     http://www.kdwolski.com/
// @description     Replaces a specific CSS file with an alt.
// @include           *
// @version           0.1.0
// @contributor     kdwolski
// ==/UserScript==

//CSS filename to replace:
var orig = "style.css";

//Path to replacement CSS file on filesystem:
var newFile = "path/to/test/css-file";

for(i=0;(l=document.getElementsByTagName("link")[i]);i++){
if(l.getAttribute("href").indexOf(orig)&gt;=0){
l.href=newFile;
}
}</pre>
<p>Feel free to leave any comments about this post below. You can also find me on Twitter: <a title="Twitter: @kdwolski " href="http://twitter.com/kdwolski">@kdwolski</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kdwolski.com/2010/09/10/greasemonkey-inject-stylesheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Amaryllis Project</title>
		<link>http://www.kdwolski.com/2009/12/03/the-amaryllis-project/</link>
		<comments>http://www.kdwolski.com/2009/12/03/the-amaryllis-project/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 03:43:29 +0000</pubDate>
		<dc:creator>kdwolski</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.kdwolski.com/?p=144</guid>
		<description><![CDATA[The Amaryllis Project is my progressive image experiment documenting the growth of a holiday Amaryllis. Groundbreaking? No. Interesting? Maybe.]]></description>
			<content:encoded><![CDATA[<p>This past weekend I picked up an Amaryllis at the grocery store. Growing up,  my family would grow an Amaryllis in anticipation of Christmas.  It acted as sort of a &#8220;botanical advent calendar&#8221;.  I decided to carry this holiday tradition on in my own home this holiday season, with a bit of a twist. I thought it would be interesting to document its growth cycle by taking a picture each day and compiling a progressive set of photos, which can easily be interacted with in a &#8220;flip book&#8221; like fashion.</p>
<p><span id="more-144"></span></p>
<p>I&#8217;m using an awesome script called <a title="ImageFlow" href="http://imageflow.finnrudolph.de/">ImageFlow</a> written by Finn Rudolph to display the sequence of photos. It is an adaptation of the classic &#8220;cover flow&#8221; component I&#8217;m sure you&#8217;ve seen in various media players, like iTunes. You can use the slider <strong>or your keyboards&#8217; arrow keys </strong>(the best method IMO) to cycle between the set of photos and (hopefully) see the daily growth of this year&#8217;s Christmas Amaryllis.</p>
<p>For those curious: the bulb was planted on 11.30.09 and sits in a southern facing window. The bloom should be red with white striping. I&#8217;ll be updating each night with the latest picture and height measurements. I have my fingers crossed that it will be in full bloom before Christmas. You may be seeing a massive growth spurt towards the end of the month if it doesn&#8217;t make it before my holiday travels begin. Maybe next year, with a little more planning, a web cam setup will be implemented. Consider this year an exploration, and unlike NASA,  failure IS an option&#8230;</p>
<h2>Side note</h2>
<p>Interestingly enough, what many people regard as an <a title="Wikipedia: Amaryllis" href="http://en.wikipedia.org/wiki/Amaryllis">Amaryllis </a>is actually called a <a title="Wikipedia: Hippeastrum" href="http://en.wikipedia.org/wiki/Hippeastrum">Hippeastrum</a>. This fact may prove to be useful if you encounter a lull in conversation around the punch bowl this holiday season.</p>
<p>Feel free to make your thoughts known in the comment section below. I&#8217;d love to know what you think about this post. If you care to reflect on your own unusual holiday traditions that is cool too. I may tweet updates to this little experiment, so feel free to <a title="Twitter: @kdwolski" href="http://twitter.com/kdwolski">follow me</a> (@kdwolski) if you like.</p>
<p><small>Post Image Source: @tanakawho - <a title="Amaryllis " href="http://www.everystockphoto.com/photo.php?imageId=3240621">http://www.everystockphoto.com/photo.php?imageId=3240621</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kdwolski.com/2009/12/03/the-amaryllis-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emergent Task Planner &#8211; Plug</title>
		<link>http://www.kdwolski.com/2009/09/01/emergent-task-planner-plug/</link>
		<comments>http://www.kdwolski.com/2009/09/01/emergent-task-planner-plug/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 02:22:18 +0000</pubDate>
		<dc:creator>kdwolski</dc:creator>
				<category><![CDATA[Plugs]]></category>
		<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://www.kdwolski.com/?p=108</guid>
		<description><![CDATA[I am always on the look out for great little ways to organize daily life in an attempt to improve upon my general level of productivity. Here's the problem: I find this to be a daunting task in itself. I'm impatient when it comes to organization. I need something that is straightforward and returns a result quickly, if not instantly. I remember when I was in elementary school and was given an "agenda" to track homework and school schedules in. Sure enough I would diligently fill it out for about a month or so; come winter break, it would be merely a collection of doodles and blank pages. When monotony rears its head in regard to an organization process, if possible, I  typically abandon the said process.]]></description>
			<content:encoded><![CDATA[<h2>Productivity vs. Monotonous Usability</h2>
<p>I am always on the look out for great little ways to organize daily life in an attempt to improve upon my general level of productivity. Here&#8217;s the problem: I find this to be a daunting task in itself. I&#8217;m impatient when it comes to organization. I need something that is straightforward and returns a result quickly, if not instantly.<br />
<span id="more-108"></span></p>
<p>I remember when I was in elementary school and was given an &#8220;agenda&#8221; to track homework and school schedules in. Sure enough I would diligently fill it out for about a month or so; come winter break, it would be merely a collection of doodles and blank pages. When monotony rears its head in regard to an organization process, if possible, I  typically abandon the said process.</p>
<p>Recently, I have tried using project management software (<a title="dotProject" href="http://www.dotproject.net/">dotProject</a> &amp; <a title="ClockingIT" href="http://www.clockingit.com/">Clocking IT</a> ) to manage day to day tasks for both work and home. When it comes to long development projects where scheduling and milestones are key, these are two excellent options. Using them to manage to do lists and smaller projects often tips the productivity vs. usability scale out of balance. Where the monotony of using the tool outweighs any productivity success. The more clicks and button pushes it takes me to add a task or project, the harder it is going to be for me to adopt into my daily organization process. Managing more than one worker, long time lines and ever changing requirements all but tip the scale the opposite direction. A few more clicks and a little longer session could be seen as a small price to pay for the fine grain detail and oversight the organization tool will record.</p>
<h2>Enter: Emergent Task Planner</h2>
<p>When it comes to everyday time and task management,  project management software just won&#8217;t cut it. In addition, I  don&#8217;t require a tool that can be accessible anywhere at anytime. I just need something that is easy to use and  lets me plan out my day with as little pain as possible. The <a title="Emergent Task Planner" href="http://davidseah.com/blog/comments/emergent-task-planner-free-version-updates/">Emergent Task Planner</a> (ETP) by David Seah does just that. Simplicity at its finest. Print it out and fill the sucker in with your favorite writing utensil. Gaaassspp! But you&#8217;re a web developer&#8230;shouldn&#8217;t you store your to dos in the vast storage arrays of the internet? I do and I don&#8217;t. When it comes to simple things  I find that writing them down helps me remember them far easier than typing, clicking and tagging inside a web application ever will. With the advent of technology rooted task management utilities, the shear bliss that comes when you get to briskly cross off an item is all but lost. Most of my &#8220;analog&#8221; based task lists were overly simplistic and congregated in large numbers making reference a little chaotic. The Emergent Task Planner solves this issue by providing usable structure to ensure your efficiently jotted notes are easy to reference and take action upon.  Below is a list of my favorite components which make up the ETP:</p>
<ol>
<li><strong>Schedule Blocks </strong><br />
Great way to visually see how you planned your tasks for the day.</li>
<li><strong>Task &#8220;Timer&#8221;<br />
</strong>I don&#8217;t use this too much, but for longer tasks it can be useful to track the time you spent working on it, in a given day. This can also provide insight into how you should schedule the task the following day.</li>
<li><strong>Plenty of Note Space<br />
</strong>Below the scheduled tasks you&#8217;ll find a good amount of room for jotting down daily &#8220;scope creep&#8221;. I find this especially useful. I&#8217;ll get an email or an IM detailing another task or an addition to a current task, and I can quickly jot it down for future scheduling.</li>
</ol>
<h2>Resources</h2>
<p>If  you would like to give the Emergent Task Planner a test drive you can find all the information you need below. Check out the other great downloads David Seah has available on his site. If ETP doesn&#8217;t fit your style, he has other productivity downloads which may provide a better match.</p>
<p><strong>Emergent Task Planner:<br />
</strong><a title="Emergent Task Planner" href="http://davidseah.com/blog/comments/emergent-task-planner-free-version-updates/">http://davidseah.com/blog/comments/emergent-task-planner-free-version-updates/</a></p>
<p><strong>Twitter &#8211; David Seah</strong>: <a title="Twitter - David Seah" href="http://www.twitter.com/daveseah">@daveseah</a></p>
<p>Have a great productivity tip or process? You can leave a comment using the form below. I&#8217;d love to hear your recommendations and tips.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kdwolski.com/2009/09/01/emergent-task-planner-plug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Art of Manliness &#8211; Plug</title>
		<link>http://www.kdwolski.com/2009/08/16/art-of-manliness/</link>
		<comments>http://www.kdwolski.com/2009/08/16/art-of-manliness/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 11:46:04 +0000</pubDate>
		<dc:creator>kdwolski</dc:creator>
				<category><![CDATA[Plugs]]></category>

		<guid isPermaLink="false">http://www.kdwolski.com/?p=86</guid>
		<description><![CDATA[Today I am introducing the first in a new series of posts called &#8220;Plugs&#8221;. A plug is my way of officially promoting &#8220;webstuffs&#8221;.  It could be a great blog, an interesting PDF, or a great piece of open source software;...]]></description>
			<content:encoded><![CDATA[<p>Today I am introducing the first in a new series of posts called &#8220;Plugs&#8221;. A plug is my way of officially promoting &#8220;webstuffs&#8221;.  It could be a great blog, an interesting PDF, or a great piece of open source software; the possibilities are only limited to what can be found on the Internet. My main goal is to highlight &#8220;webstuffs&#8221; that I value in some way and believe others may find interesting or useful. My intention isn&#8217;t to highlight or &#8220;plug&#8221; a resource that is widely known, but rather those &#8220;gems&#8221; you only run across on the Internet once in a while.<br />
<span id="more-86"></span><br />
When it came to selecting the first entry for this series I immediately thought of a blog which I have been following for about a year or so. It is called <a title="The Art of Manliness" href="http://www.theartofmanliness.com">The Art of Manliness</a>.  If I had to make an initial assumption of what many men may be thinking when someone first recommends that they visit this site, the thoughts would probably be classified as a response to a personal attack. Men may infer someone is providing them with this site because they need to consult it for some reason; someone thinks they need to &#8220;fix&#8221; something about themselves. Truth be told, lessons will be learned, but it isn&#8217;t any kind of forced manual to manliness. It is all elective, like calf implants. The Art of Manliness is an exploration of the skills, knowledge, style and the all around virtues of good men. Men like those who landed a man on the moon, or ran across a beach in Normandy France.</p>
<p>When I look at the current state of men&#8217;s magazines, the assortment is the same through and through. Covers with large breasted women and a myriad of articles detailing the best ways to sculpt rock hard abs, how to become a chick magnet, etc. It is all a bunch of bullshit jargon cooked up by editors looking to sell magazines to an &#8220;emasculated&#8221; generation of men. When you look at generations of men from the past and today, it is hard not to see this huge difference in values and virtues. It is not to say one generation is better than the other, but I think some of the great traits and values of older generations were lost in translation. Technology may be a bit of a culprit here. With the advent of the Internet and rapid improvements in technology, messaging and marketing can be disseminated faster than ever and video games and other tech toys can pull boys away from doing other things: like going out for a hike or a round of golf with their fathers. The elements making up these generational differences are not always negative, and it is safe to say generations can learn from one another. The Art of Manliness is a great place for this generational exchange to take place.</p>
<p>One thing that the Art of Manliness does well is topic diversification. The blog discusses everything from <a href="http://artofmanliness.com/2009/04/12/understanding-the-dress-shirt-custom-shirt-giveaway/">dress shirts</a> to <a href="http://artofmanliness.com/category/the-virtuous-life/">Ben Franklin&#8217;s 13 Virtues</a>. I found some of the posts about historic male figures to be very interesting. Hate the thought about shelling out $15+ a month on quintuple blade razor cartridges? Check out their post on <a href="http://artofmanliness.com/2008/01/04/how-to-shave-like-your-grandpa/">How to Shave Like Your Grandpa</a>. I think I have spent $10 total this year on razor blades as a result of reading this article. There will be topics and posts you&#8217;ll enjoy and others you could care less about. I think this is a typical trait of any blog and is also present at AoM.</p>
<p>The Art of Manliness has its own community site where you can connect with other AoM followers and perhaps discuss and learn more about some of your favorite topics the blog covers. I have to say, this is one of the better community sites I have seen on the Internet lately. It is small (4000+ members) in comparison to other community sites, but the smaller membership makes it feel like your voice can be heard a little more. The member interaction is quite amazing. The easiest way to describe it is as gentlemanly, a far cry from the vulgar-laden comment sections of Digg and YouTube. A great break from the norm indeed.</p>
<p><img class="theBeef" src="/wp-content/themes/inuitypes/images/beef.png" alt="The Beef" /></p>
<h2>The Beef</h2>
<p>Nothing in life is perfect, so I have dedicated this section to discussing some of the areas of improvement I see in the &#8220;webstuffs&#8221; I will be plugging. The Art of Manliness fairs well in this section with only a few menial beefs on my end.</p>
<h3>1. Advertising</h3>
<p>I understand a blog needs to monetize in some way in order to keep the server running, the authors paid etc, etc. But every now and then  AoM features a video ad which is set to play on page load. These kinds of things annoy the crap out of me. If I want to view the video ad, I&#8217;ll click play. Hell, I often click on an ad or two, just to show a bit of appreciation for a great site of content. My main worry is that an ad like that could deter a first time visitor.</p>
<h3>2. Bottom Toolbar</h3>
<p>I&#8217;ve never really liked the bottom third-party toolbar. I understand the purpose, but I would rather see these types of tools built into the page. They seem to be so disconnected from the site that I just ignore them all together.</p>
<h2>Resources</h2>
<p>Take a look at The Art of Manliness. I think you&#8217;ll be inspired by the frequently updated quality content. It is a far cry from the repetitive crappy content you&#8217;ll find in men&#8217;s magazines today; it doesn&#8217;t cost a dime or require you to begin dressing like Grandpa. See how it can fit into your life, I think you may be surprised.</p>
<blockquote><p><strong>Main Website:<a title="The Art of Manliness" href="http://www.theartofmanliness.com"> </a></strong><a title="The Art of Manliness" href="http://www.theartofmanliness.com">www.artofmanliness.com</a><br />
<strong>AoM Community: </strong><a title="AoM Community" href="http://community.artofmanliness.com">community.artofmanliness.com</a><br />
<strong>Twitter: </strong><a title="AoM Twitter" href="http://www.twitter.com/artofmanliness">@artofmanliness</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.kdwolski.com/2009/08/16/art-of-manliness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter: &quot;Perched&quot; for Continued Success</title>
		<link>http://www.kdwolski.com/2009/03/27/twitter-perched-for-continued-success/</link>
		<comments>http://www.kdwolski.com/2009/03/27/twitter-perched-for-continued-success/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 04:32:50 +0000</pubDate>
		<dc:creator>kdwolski</dc:creator>
				<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[social index]]></category>
		<category><![CDATA[social search]]></category>
		<category><![CDATA[social web]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kdwolski.com/?p=59</guid>
		<description><![CDATA[Over the past few weeks I've engaged in numerous conversations surrounding Twitter, its purpose, its awesomeness and its survival. I thought it was time for me to formally submit my take on the whole Twitter idea to the interwebs for all to read and comment on.]]></description>
			<content:encoded><![CDATA[<p>Over the past few weeks I&#8217;ve engaged in numerous conversations surrounding Twitter, its purpose, its awesomeness and its survival. I thought it was time for me to formally submit my take on the whole Twitter idea to the interwebs for all to read and comment on.<span id="more-59"></span></p>
<blockquote><p><em>An initial caveat:The main commentary of this post is based around my experience as a web technology professiononal and enthusiast.</em> <em> I don&#8217;t have an MBA and my only formal business training has been sitting though a painfully boring microeconomics class as an undergrad. </em></p></blockquote>
<p>To start let me cite the source and define what <a title="Twitter" href="http://www.twitter.com">Twitter</a> is. This is only necessary for any  ex-hermit readers out there experiencing the Internet and running water for the first time.</p>
<blockquote><p>Twitter is a service for friends, family, and co–workers to communicate and stay connected through the exchange of quick, frequent answers to one simple question: <strong>What are you doing?</strong></p></blockquote>
<p>Simple and succinct, but fascinatingly powerful! Before the rambling begins about how something this simple in concept is so powerful, I would like to make two comments on Twitter&#8217;s formal definition. You don&#8217;t just have to follow your tech hip grandma; strangers and organizations are game too, and they are probably more interesting and beneficial. Correlating your posts to the question: &#8220;What are you doing?&#8221; should be revised. Sure, let everyone know you&#8217;re headed out to catch Britney Spears in concert, but also voice your opinion, share your thoughts and services, and hell, share an<a title="LOL Cats" href="http://icanhascheezburger.com/"> LOL cat</a> once in a while. &#8220;What are you doing?&#8221; is just one angle in the shape that is Twitter. Here&#8217;s how I read the definition as someone who works with web technology and as a Twitter user:</p>
<blockquote><p>Twitter is a service for <span style="text-decoration: line-through;">friends, family, and co–workers</span> society to communicate and stay connected through the exchange of quick, frequent<span style="text-decoration: line-through;"> answers to one simple question: <strong>What are you doing?</strong></span> snippets of information.</p></blockquote>
<h2>It&#8217;s Like Salt, Less is More</h2>
<p>Art has always played an important role in my life. I passed over joining the Boy Scouts and playing sports, for something less traditional for a middle schooler: I took oil painting lessons. My elderly painting teacher taught me many lessons, but her idea of relating creation to the use of salt: &#8220;less is more&#8221;, is a concept that rings true to me all the time. Twitter fits this mold. A brush stroke on a cave wall to Botticelli&#8217;s Birth of Venus. Both are born from an initial simple action. One doesn&#8217;t move past a certain state, while the other is compounded with additional simple fundamental actions. Both are powerful in their own right. Twitter can follow this same convention. An individual can create a simple thought; it can stand out there in the World, informing, annoying, humoring, inspiring. It may get overlooked, lose relevance or become outdated but it was there. On the other hand, that idea can grow and transform in the hands and minds of those who see it and act upon it. Less is more. It&#8217;s a powerful concept, which I probably wouldn&#8217;t have learned playing soccer. Don&#8217;t get me wrong, I don&#8217;t have anything against intramural sports.</p>
<h2>OK, It&#8217;s Seasoned. Now What?</h2>
<p>Just as there are different reasons for one&#8217;s use of Twitter, as I mentioned in the opening of this post; Twitter&#8217;s power and importance is comprised of other sub components surrounding the ideas of efficient collection, growth and dissemination of information (essentially a refined concept of the Internet). So what am I trying to get at? Dissemination of information, that&#8217;s what. You&#8217;ve already made it past my overly artsy definition of Twitter&#8217;s power as an information aggregator and information breeder, but the other benefit of Twitter is how it pukes out this data to the world.</p>
<h2>Following the Followers</h2>
<p>This section is going to be a change of pace,  it is going to be short and to the point. One way Twitter displays data is by displaying follower links to other profiles, which have follower links to other profiles, which have follower links to other profiles&#8230; Profiles which you can follow yourself. &#8220;Isn&#8217;t that like Facebook friends?&#8221; Yep. It is a social web requirement and nothing new, just a standard way to relay information. Powerful, yes. New idea? Hell no.</p>
<h2>Searching for Answers</h2>
<p>All Internet users are quite familiar to searching for information. Google, Yahoo, Ask.com, you name it, we&#8217;ve all used them to find stuff on the web. We&#8217;ve used site searches to find information contained within a certain website. Twitter has this too! Why the exclamation point you ask? Because <a title="Twitter Search" href="http://search.twitter.com">Twitter search</a> isn&#8217;t your normal search. &#8220;Really? Doesn&#8217;t it just search through the information (tweets) contained on Twitter.com?&#8221; Yep. We need to look past just the actions of searching for content. Who cares how you get to the content, as long as you get to the content. The content is king (sorry P. Diddy).</p>
<p>When you do a Google search, you get a listing of websites relevant to your search topic. These websites can be created by any number of individuals or organizations, just like tweets. Search results are all truncated pieces of content that &#8220;should&#8221; provide some insight for information that can be obtained else where, or absorbed on the spot. Tweets can function like this as well. So how are they different? Well, ranking comes into play with Google results, and recency comes into play with Tweet searches, but that&#8217;s not all. Tweets have a different meaning than a website returned in a Google search. Someone needs to make a conscience decision to&#8221;Tweet&#8221; about something, good, bad, the point doesn&#8217;t matter, the intent to create does. That idea of intent is what makes Twitter search different than what most people are used to on the web. It is a little more human, and perhaps over time could be seen as a little more trustworthy. &#8220;Can&#8217;t I do that on Facebook too?&#8221; Yep. Go for it. The nice thing about Twitter is that it is open, so you can run a search without having to log in, or perhaps be confined by certain privacy settings. Twitter has the ability to be providing a broader scope for a search, which could yield a better result.</p>
<p>Twitter search&#8217;s &#8220;brand new&#8221; sticker is hanging on strong and doesn&#8217;t show any signs of curling just yet. Will it kill off the beast that is Google Search? I&#8217;d bet against Twitter in that case. As Twitter grows in user base, and consequently in &#8220;Tweets&#8221;, or indexed data, it can provide a different &#8220;social&#8221; search experience for a user, that may be beneficial than say a basic search engine or site search.</p>
<h2>Searching for a Use Case</h2>
<p>I recently purchased a <a title="EEE PC - 904HA" href="http://eeepc.asus.com/global/product904ha-spec.html">netbook</a>, which I&#8217;m using right now to create this entry. I love it and wanted to buy a cool bag to keep it safe and carry it around with all my tech accessories. I wanted something compact, but had a little extra storage room. Not into the sleeve, didn&#8217;t want it to just look like a mini Targus bag, and I sure as hell didn&#8217;t want something that looked like a man-purse. I naturally began my quest like any Internet shopper does, I searched Google, Amazon and other websites for the term &#8220;netbook bag&#8221;. Simple enough right? Not so easy, netbooks are still catching on, and the results returned for my simple search illustrated the &#8220;netbook bag&#8221; offerings were reflecting the adoption rate of this new hardware trend. Nothing matched what I was looking for. I had an idea&#8230; maybe someone &#8220;tweeted&#8221; about &#8220;netbook bag&#8221;. Sure enough, hundreds had. I easily found a link to a forum discussing netbook bags through one of the tweets returned in my Twitter search, which was scraping a &#8220;social index&#8221;. 20 pages of posts talking about netbook bag options! Using this resource I located the kind of bag I was looking for with an actual human confirming it fit a netbook like mine. Sure enough, fits snug and secure and is working out well. Days of searching Google and Amazon didn&#8217;t help me find an answer as fast as using Twitter search. Searching a &#8220;social index&#8221; is a concept that is going to start becoming more relevant as the social web evolves and grows.</p>
<h2>Getting Down to Business</h2>
<p>So Twitter isn&#8217;t just a simple fad. It possess more breadth and usefulness than many people care to admit or take the time to investigate through the reading of this blog post. Turn on the news and you hear about Twitter all the time, you may also hear news that it isn&#8217;t currently making enough money. Bottom line is, is that it needs to make some more dough to stay alive. Venture capital can only take it so far for so long. Below are some of growing ideas on how Twitter can make some money and keep itself a float and the social web growing.</p>
<blockquote><p><a title="Twitter Paid Accounts" href="http://www.businessinsider.com/twitter-confirms-paid-pro-accounts-on-the-way-2009-3"><strong>Paid Accounts</strong></a> &#8211; This has already been confirmed and is in the works. This should provide a decent stream of revenue similar to how YouTube charges organizations for &#8220;Branded&#8221; Channels, or flickr and pro accounts. If I were Twitter I&#8217;d make sure I charged larger companies higher prices, they can afford it.One worry I have is correlating different accounts to Tweet length. This is dumb. I am citing the sections &#8220;It&#8217;s Like Salt, Less is More&#8221; and &#8220;Searching for Answers&#8221; to defend my point that moving past 140 characters is not a good idea.Idea: Providing a paid account analytics for their Twitter page, i.e. demographics, location, visits, unique visits etc, would be supremely valuable for not just organizations, but individuals.Idea: Paid accounts could have their re-tweets tracked, which could bubble up their content in a search feature (think Google sponsored links) or on other areas of the site. This could help drive traffic for a Twitter user and grow followers.</p>
<p><strong><a title="Twitter Ads" href="http://www.businessinsider.com/twitter-sells-an-ad-2009-3">Ads</a></strong> &#8211; Duh. No brainer. Lots of relevant information to serve ads off of. I&#8217;m betting CPM would be healthy and profitable, if they were to implement a third party option. They also have the ability to serve ads like Facebook, selling the real estate by user demographics or Tweet contents.Paid accounts could have the option to not see ads. Free accounts wouldn&#8217;t be adversely affected if the ads we implemented ethically. Internet users are going so ad blind as it is, I wouldn&#8217;t be surprised if there were people who didn&#8217;t even notice.</p></blockquote>
<h2>In Closing</h2>
<p>Thanks for checking out this blog entry. I hope my take on Twitter has helped you derive your own opinion and hopefully got you thinking about the emerging trends in the landscape of the social web, Twitter being one of them.</p>
<p>I&#8217;d love to hear your thoughts! Feel free to make a comment here, or you can find me on Twitter: <a href="http://www.twitter.com/kdwolski">kdwolski</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kdwolski.com/2009/03/27/twitter-perched-for-continued-success/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sarah Rozene &#8211; Scenic Designer</title>
		<link>http://www.kdwolski.com/2009/02/23/sarah-rozene-scenic-designer/</link>
		<comments>http://www.kdwolski.com/2009/02/23/sarah-rozene-scenic-designer/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 22:08:17 +0000</pubDate>
		<dc:creator>kdwolski</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Theatre]]></category>
		<category><![CDATA[Sarah Rozene]]></category>
		<category><![CDATA[Scenic Design]]></category>

		<guid isPermaLink="false">http://www.kdwolski.com/?p=41</guid>
		<description><![CDATA[Check out Sarah Rozene. Her scenic designs are amazing, and she makes a  mean chicken salad. http://www.sarahlrozene.com]]></description>
			<content:encoded><![CDATA[<p>Check out Sarah Rozene. Her scenic designs are amazing, and she makes a  mean chicken salad.</p>
<p><a href="http://www.sarahlrozene.com">http://www.sarahlrozene.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kdwolski.com/2009/02/23/sarah-rozene-scenic-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Barack Obama Bumper Sticker</title>
		<link>http://www.kdwolski.com/2008/07/07/free-barack-obama-bumper-sticker/</link>
		<comments>http://www.kdwolski.com/2008/07/07/free-barack-obama-bumper-sticker/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 21:07:03 +0000</pubDate>
		<dc:creator>kdwolski</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.kdwolski.com/blog/?p=12</guid>
		<description><![CDATA[Found this online today. You can get a free Barack Obama bumper sticker from moveon.org. A good option if you don&#8217;t feel like spending money on that kind of stuff. I can&#8217;t wait to get my limited edition Obama &#8217;08...]]></description>
			<content:encoded><![CDATA[<p>Found this online today. You can get a free Barack Obama bumper sticker from moveon.org. A good option if you don&#8217;t feel like spending money on that kind of stuff. I can&#8217;t wait to get my limited edition Obama &#8217;08 car magnet. I would have donated to his campaign regardless, but the free swag makes it that much better!</p>
<p><a href="https://political.moveon.org/obamastickers/" mce_href="https://political.moveon.org/obamastickers/">read more</a> | <a href="http://digg.com/2008_us_elections/Free_Barack_Obama_Bumper_Sticker" mce_href="http://digg.com/2008_us_elections/Free_Barack_Obama_Bumper_Sticker">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kdwolski.com/2008/07/07/free-barack-obama-bumper-sticker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>As You Like It</title>
		<link>http://www.kdwolski.com/2007/12/27/as-you-like-it/</link>
		<comments>http://www.kdwolski.com/2007/12/27/as-you-like-it/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 01:18:09 +0000</pubDate>
		<dc:creator>kdwolski</dc:creator>
				<category><![CDATA[Theatre]]></category>
		<category><![CDATA[As You Like It]]></category>
		<category><![CDATA[Brandeis]]></category>
		<category><![CDATA[Shakespeare]]></category>

		<guid isPermaLink="false">http://www.kdwolski.com/blog/?p=8</guid>
		<description><![CDATA[Looking to see an amazing theatrical production this February? Thought so. Brandeis Theater Company is putting on a production of William Shakespeare&#8217;s play, As You Like It. Sarah has been working hard on designing this production&#8217;s set. I&#8217;ve seen some...]]></description>
			<content:encoded><![CDATA[<p>Looking to see an amazing theatrical production this February? Thought so.  Brandeis Theater Company is putting on a production of William Shakespeare&#8217;s play, As You Like It.</p>
<p>Sarah has been working hard on designing this production&#8217;s set. I&#8217;ve seen some initial sketches and have heard lots, in terms of set ideas, and I can tell you, first hand, it is going to look awesome. I&#8217;ve seen several Brandeis Theater Company productions over the past year and have always been impressed. I posted a link to the production&#8217;s website where you can learn more about it and purchase tickets. You should go, it will be cool to say you saw one of her set designs before she won the Tony award.</p>
<p><a href="http://www.brandeis.edu/btc/As%20You%20Like%20It.html" target="_blank">As You Like It</a> &#8211; Brandeis Theater Company &#8211;   February 7-17, 2008<br />
<a href="http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;time=&amp;date=&amp;ttype=&amp;q=Brandeis+University&amp;sll=37.0625,-95.677068&amp;sspn=27.793784,69.257813&amp;ie=UTF8&amp;z=17&amp;iwloc=addr&amp;om=1" target="_blank"><br />
Map</a><br />
<strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kdwolski.com/2007/12/27/as-you-like-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

