<?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>larryaronson.com &#187; Twitter</title>
	<atom:link href="http://larryaronson.com/tag/twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://larryaronson.com</link>
	<description>Systems Psychoanalyst</description>
	<lastBuildDate>Tue, 14 Aug 2012 15:23:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>Sidebar Pages In WordPress</title>
		<link>http://larryaronson.com/2011/sidebar-pages-in-wordpress/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://larryaronson.com/2011/sidebar-pages-in-wordpress/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 11:30:44 +0000</pubDate>
		<dc:creator>Larry Aronson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[menu manager]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Popular Posts]]></category>
		<category><![CDATA[sidebar widget]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress functions]]></category>
		<category><![CDATA[wordpress shortcodes]]></category>

		<guid isPermaLink="false">http://larryaronson.com/?p=1857</guid>
		<description><![CDATA[There are a lot of WordPress plugins that will put a <strong>Popular Posts</strong> widget in your blog's sidebar. But, they all return different results. Here's how to create a sidebar widget that will feature the posts you want to highlight.]]></description>
				<content:encoded><![CDATA[<h3>Creating a custom &#8220;Popular Posts&#8221; widget</h3>
<p>I have a blogging client who has a love-hate relationship with computing. This client publishes daily and has become quite adept at the mechanics of doing so, successfully building traffic and a solid following. But when it comes to handling the blog&#8217;s administrative tasks, my client balks, refusing to look at any of the admin level menus. &#8220;I don&#8217;t like being a person who knows just enough to be dangerous,&#8221; my client has said.</p>
<p>The latest request from this client was to list the blog&#8217;s <strong>most popular posts</strong> in the sidedbar. It&#8217;s a WordPress site and there are many plugins available that will provide a widget for this task. Most are based on comment count as this is the metric that WordPress stores with each post record in its database. Some of the more sophisticated plugins make API calls to other services, such as Twitter and Google, to gather ranking data.</p>
<p>But nothing worked quite right for this client who had become a proficient <strong>Google Analytics</strong> user as well as a ardent <strong>Twitter</strong> user. I couldn&#8217;t find a popular posts plugin that would reliably match my client&#8217;s own subjective sense of popularity. I finally sent an email saying: &#8220;You want your readers to see your best stuff, in that respect, the numbers can provide guidance but your own judgement is the best metric.&#8221; I promised to figure something out that would allow the selection and ranking of posts although I didn&#8217;t have a clue how.</p>
<p>One of the joys of computer programming comes from those moments when you recognize that the particular little problem you&#8217;re working on is just a special case of a larger, more interesting and easier to solve problem. In this case, the larger problem was how to enable a WordPress author to publish formatted content to a sidebar widget. If I could solve that problem then my client could simply edit a page containing an ordered list of titles linked to the most popular posts. These could easily be copied from other pages in the <strong>WordPress dashboard</strong>. The client wouldn&#8217;t  need any admin level privileges. All I had to do was setup a <strong>text widget</strong> with code that pulled in the content of a designated page — A sidebar page.</p>
<h3>How to build a WordPress sidebar page widget</h3>
<p>Rather than write a dedicated sidebar widget, which is kind of complicated even though the <a href="http://codex.wordpress.org/" target="_blank">WordPress codex</a> has several examples to copy and paste from, I decided to write a <strong>WordPress shortcode</strong> which could be used in a sidebar text widget. This shortcode could also be used in other posts or pages on the site — going again for the more general and easier solution.</p>
<p>To start with, I created a new static page with the title, &#8220;Popular Posts&#8221;. Before you do this and publish the new page, check to see if it will automattically appear in your navigation menus. If you&#8217;re using the <strong>Menu Manager</strong> (included in WordPress 3.0+,) you&#8217;re probably okay since there&#8217;s a setting for this that&#8217;s off by default. If your theme does not use the Menu Manager, you might want to make the new page a child of some other page to exclude it from your navigation.</p>
<p>Next, we have to write a function that will output the contents of a page. This is easy. WordPress provides a built-in function just for that purpose called, <em>get_page( )</em>. We are going to use a variant of that function, <em>get_page_by_title( )</em>, and pass the title of the page (instead of the ID) as a shortcode parameter. Here&#8217;s the code for the function:</p>
<pre><span style="color: #008000;">function my_show_page( $atts, $content = null ) {
    extract(shortcode_atts(array( 'title'=&gt;'' ), $atts));

    if ($title != '') {
        $page_data = get_page_by_title( $title );
        return $page_data-&gt;post_content;
    }
    else {
        return '';
    }
}</span>
</pre>
<p>The first two lines are the standard setup for a shortcode. The parameter, <em>$atts</em>, will contain the shortcode&#8217;s parameters. In our case this is the page&#8217;s title which is then extracted by the second line of the code. If no title is passed, it&#8217;s given an empty string value. Setting the variable <em>$content</em> to null allows us to place the simple shortcode:</p>
<p><span style="color: #008000;"><tt>[showpage title="Popular Posts"]</tt></span></p>
<p>wherever we want to display the content of the page &#8220;Popular Posts&#8221; .</p>
<p>The body of the function is a simple <em>if</em> statement that makes sure a title is provided, then goes and gets the content of that page and returns it. Note that the content is returned unfiltered. That is, it&#8217;s unaffected by any plugins (e.g: ShareThis) or other code that modifies content.</p>
<p>The function code goes into your theme&#8217;s <strong>function file</strong>,  <em>functions.php</em>. Make sure you backup this file before you make any changes!! The function code can go anywhere in the file (except, of course, inside of another function) provided that it&#8217;s inside a set of php tags.</p>
<p>The next step is to register the shortcode so that it&#8217;s available for use. This is just a short command that also goes in the theme&#8217;s function file:</p>
<p><span style="color: #008000;"><tt>add_shortcode('showpage', 'my_show_page');</tt></span></p>
<p>It can go either before or after the function. I usually place it after the function along with comments to guide any future programmers who may work on my clients&#8217; sites.</p>
<p>Next, we have to enable shortcodes in text widgets. This is not enabled by default in WordPress because of security concerns. Sidebar text widgets are places where people often embed code from outside sources. The concern is that such embeded code might contain a shortcode that could conflict with something else on your blog or otherwise do nasty stuff. This is usually not a problem for smaller, personal blogs, however, I&#8217;ll emphasize again the importance of backing up your theme&#8217;s functions file before making any changes. Here&#8217;s the command to enable shortcodes in text widgets:</p>
<p><span style="color: #008000;"><tt>add_filter('widget_text', 'do_shortcode');</tt></span></p>
<p>Add the above to your functions file, save it and test the blog in a separate browser window to be sure it&#8217;s still working. Errors in a theme&#8217;s functions file will usually crash the public portion of a WordPress blog, but will leave the admin dashboard in working order.</p>
<p>Lastly, add a text widget with the shortcode to your sidebar. Here&#8217;s a screenshot from my client&#8217;s site illustrating this.</p>
<p><img class="aligncenter size-full wp-image-1860" title="sidebar_page_widget" src="http://larryaronson.com/wp-content/uploads/sidebar_page_widget.png" alt="Text Widget with a shortcode" width="480" height="477" /></p>
<p>For your convenience, here&#8217;s the entire block of commented code that I added to my client&#8217;s function file:</p>
<pre><span style="color: #808080;">/**
* Create a shortcode to display a page's content
*/
//
// [showpage title="page_title"]
//</span>
<span style="color: #008000;">function my_show_page( $atts, $content = null ) {
    extract(shortcode_atts(array( 'title'=&gt;'' ), $atts));
    if ($title != '') {
        $page_data = get_page_by_title( $title );
        return $page_data-&gt;post_content;
    }
    else {
        return '';
    }
}</span>
<span style="color: #808080;">// register the shortcode</span>
<span style="color: #008000;">add_shortcode('showpage', 'my_show_page');</span>
<span style="color: #808080;">//
// Enable the use of shortcodes in text widgets.</span>
<span style="color: #008000;">add_filter('widget_text', 'do_shortcode');</span>
</pre>
<p>Now that we see how easy it is to get formatted content into a sidebar widget, perhaps you have some ideas on what can be done with custom shortcodes in sidebar widgets. If so, please share them by leaving a comment below. Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2011/sidebar-pages-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>onPhilanthropy.com Has A New Website</title>
		<link>http://larryaronson.com/2010/onphilanthropy-com-has-a-new-website/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://larryaronson.com/2010/onphilanthropy-com-has-a-new-website/#comments</comments>
		<pubDate>Mon, 17 May 2010 14:36:47 +0000</pubDate>
		<dc:creator>Larry Aronson</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Arthemia]]></category>
		<category><![CDATA[CauseWired]]></category>
		<category><![CDATA[DotOrgJobs]]></category>
		<category><![CDATA[Philanthropy]]></category>
		<category><![CDATA[Tom Watson]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://larryaronson.com/?p=1179</guid>
		<description><![CDATA[<a href="http://onPhilanthropy.com/"><img class="alignleft wp-image-1180" title="onPhilanthropy.com front page" src="http://larryaronson.com/wp-content/uploads/onphilanthropy-150x125.png" alt="onPhilanthropy.com" width="150" height="125" /></a>I just finished a major project for Tom Watson, author of <a href="http://causewired.com/" target="_blank"><cite>CauseWired</cite></a>, converting his website, onPhilanthropy.com, from a custom CMS to Wordpress. The new site, built on the Arthemia Premium theme, features modifications enabling it to carry ads from multiple sources, RSS feeds from companion sites and customized widget titles.]]></description>
				<content:encoded><![CDATA[<p><a href="http://onPhilanthropy.com"><img class="alignleft size-thumbnail wp-image-1191" title="onphilanthropy" src="http://larryaronson.com/wp-content/uploads/onphilanthropy-150x125.png" alt="onPhilanthropy.com" width="150" height="125" /></a>I just finished a major project for Tom Watson, author of <a href="http://causewired.com/" target="_blank"><cite>CauseWired</cite></a>, converting his website, onPhilanthropy.com, from a custom CMS to WordPress. <a href="http://onphilanthropy.com" target="_blank">The new site</a> is built on the Arthemia Premium theme with modifications enabling it to carry ads from multiple sources.</p>
<p>This site was a blast to work on. I had done a couple of other small repair and rescue jobs for Tom. He is wonderful client; tech-savvy and patient, he pushed for solutions that stretched my skill set and forced me to learn new techniques. Some of the interesting features of onPhilanthropy.com include: customized widget headings, a revamped advertising manager, a Twitter slurp and feeds from companion sites such as, <a href="http://DotOrgJobs.com" target="_blank">DotOrgJobs.com</a>.</p>
<p>If you are in the dot-org space, please visit <a href="http://onphilanthropy.com" target="_blank">onPhilanthropy</a> and check out how good technology can advance good causes. And, of course, feedback is always welcomed.</p>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2010/onphilanthropy-com-has-a-new-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The A.P. and Informed Sources</title>
		<link>http://larryaronson.com/2009/the-a-p-and-informed-sources/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://larryaronson.com/2009/the-a-p-and-informed-sources/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 00:14:36 +0000</pubDate>
		<dc:creator>Larry Aronson</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[AP]]></category>
		<category><![CDATA[Associated Press]]></category>
		<category><![CDATA[CBS News]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[informed sources]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[NY Times]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://larryaronson.com/?p=580</guid>
		<description><![CDATA[<img class="alignleft size-thumbnail wp-image-591" title="Informed_sources_cover" src="http://larryaronson.com/wp-content/uploads/Informed_sources_cover-150x150.jpg" alt="Informed_sources_cover" width="75" height="75" />Reflections on the NY TImes article: <a href="http://www.nytimes.com/2009/07/24/business/media/24content.html?_r=2" target="_blank">A.P. Cracks Down on Unpaid Use of Articles on Web</a> and <cite>Informed Sources</cite>, by Willard S. Bain, a revolutionary, hallucinogenic novel about the AP written in the late 1960s.  ]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-597" title="AP_logo" src="http://larryaronson.com/wp-content/uploads/AP_logo.gif" alt="AP_logo" width="75" height="75" />Reading Friday&#8217;s NY Times article: <a title="Open NY Times article in a new window" href="http://www.nytimes.com/2009/07/24/business/media/24content.html?_r=2" target="_blank">A.P. Cracks Down on Unpaid Use of Articles on Web</a>, made me laugh. In the era of <a title="Follow me on Twitter" href="http://twitter.com/laronson/">Twitter</a> and the age of instant messaging, the <a title="The Associated Press Website" href="http://www.ap.org/" target="_blank">Associated Press</a> says it&#8217;s in the business of selling headlines and has a right to license their every use in any context including—especially including—search engines such as: <a href="http://google.com" target="_blank">Google</a>, <a href="http://yahoo.com/" target="_blank">Yahoo</a> and <a href="http://bing.com" target="_blank">Bing</a>. Unquoted in the NY Times article is any mention of what this 1,400 member, non-profit association does best: aggregating and editing news sourced by a global network of reporters and editors.</p>
<p><img class="size-full wp-image-593 alignleft" title="CBS_News_logo" src="http://larryaronson.com/wp-content/uploads/CBS_News_logo.jpg" alt="CBS_News_logo" width="114" height="80" />In the 1980s, when I worked at the CBS News Election and Survey Unit, there was an A.P. ticker near my desk. At the time, the A.P. had the contract to collect election results from their county reporting points, summarize those results and provide them by teletype to members and subscribers. Most of the time, however, it carried the feed of breaking news and followup stories. Postings were not signed, they just had an originating station but, after watching for a while, the personalities of different stations around the World emerged. Mistakes were common and pranks were occasionally pulled. In today&#8217;s parlance, this was a very successful social media network with many of the characteristics found in today&#8217;s Internet mix of chatting, tweeting and blogging. It just wasn&#8217;t free and it wasn&#8217;t open. It was built on expensive phone lines leased from Ma Bell and you had to be an accredited member to post stories.</p>
<p><a href="http://larryaronson.com/wp-content/uploads/Informed_sources_cover.jpg#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img class="alignright size-thumbnail wp-image-591" title="Informed Sources (Day East Received) cover" src="http://larryaronson.com/wp-content/uploads/Informed_sources_cover-150x150.jpg" alt="Informed_sources_cover" width="150" height="180" /></a>The A.P. has a great heritage that goes back many decades before my encounter at CBS. I have a novel that I bought at The Strand Bookstore on my first visit there upon moving to NYC after collage:  <cite>Informed Sources (Day East Received)</cite> by Willard S. Bain. The novel is a visual work in teletype-ese, printed in an ALL-CAPS typewriter font. Written in 1967, it was given away for free in mimeograph format by The Communication Company, an underground press, before being published by <a href="http://doubleday.knopfdoubleday.com/">Doubleday</a> and Company in this softcover edition that I&#8217;ll have to stop reading soon if I want to finish this post.</p>
<p><cite>Informed Sources</cite> tells the story of a terrorist plot coinciding with the reported death of a pop culture idol from the perspective of the station staffers at Informed Sources (IS), an A.P. like network:</p>
<blockquote>
<pre>INFORMED SOURCES BULLETIN
    BERKELEY, NOW (IS) -- A PLAN TO BLOW UP GOLDEN
GATE BRIDGE IN HONOR OF ROBIN THE COCK, WHOSE
ALLEGED LIFE REPORTEDLY HAS ENDED IN RUMORED
DEATH, WAS ABANDONED TODAY.
                                          VC807PPS</pre>
</blockquote>
<p>Except that this is 1967 and everyone is more or less stoned. Yet, here too, you can hear voices like those of today&#8217;s Internet. Take this quote from the beginning:</p>
<blockquote>
<pre>BOSTON, NOW (IS) -- WHAT'S HAPPENING?
     IN SCORES OF SCATTERED BASEMENT BASES ACROSS
THE LAND THE QUESTION GATHERED ITSELF AND THEN
HOVERED IN THE ANSWERING ECHO.
     CYNICS SNEERED IT WAS ALL A BIG PIPE DREAM, BUT
ONE OVEREXTENDED PIONEER OF THE NEW LEISURE SAID
"THAT'S WAY BESIDE THE POINT."</pre>
</blockquote>
<p>The more thing change&#8230; Right? The novel remains an unknown classic of the underground literary world at that time when the beat poets were experimenting with LSD and cultural revolution. It&#8217;s not on-line, as far as I know. There are only four used copies of the softbound edition for sale on Amazon and only one of the mimeograph copies.</p>
<blockquote>
<pre>WHIMSY SEIZES SYNAPSE TRAPEZES</pre>
</blockquote>
<p>Sorry, but I don&#8217;t wish the A.P. well in their headline selling business. Not if it means a full court press against fair-use under copyright that will saddle the Internet with last century&#8217;s digital rights concepts. There is a big difference between atoms and bits and the bits of information that seach engines gather and maintain about other online content (links) is not that content — it is the conversation about that content. The A.P. did social media right for so many years but now they don&#8217;t seem to get it at all. Paid headlines, like paid speech must eventually lose market share to free variety.</p>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2009/the-a-p-and-informed-sources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kate Nasser — The People-Skills Coach</title>
		<link>http://larryaronson.com/2009/kate-nasser/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://larryaronson.com/2009/kate-nasser/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 22:30:01 +0000</pubDate>
		<dc:creator>Larry Aronson</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[customer service]]></category>
		<category><![CDATA[Kate Nasser]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://larryaronson.com/?p=299</guid>
		<description><![CDATA[<a href="http://larryaronson.com/2009/kate-nasser/"><img class="left" title="KateNasser.com" src="http://larryaronson.com/wp-content/uploads/screenshot3.jpg" alt="KateNasser.com" width="75" height="75" /></a>I've just finished a new Website for Kate Nasser, a wonderful customer service consultant, trainer and popular speaker on the subject. It's been one of the most enjoyable collaborations I've ever experienced.]]></description>
				<content:encoded><![CDATA[<p><a href="http://KateNasser.com"><img class="alignright size-thumbnail wp-image-300" title="KateNasser.com" src="http://larryaronson.com/wp-content/uploads/screenshot3-150x150.jpg" alt="KateNasser.com" width="150" height="150" /></a>I&#8217;ve just finished a new Website for Kate Nasser, a wonderful customer service consultant, trainer and popular speaker on the subject. It&#8217;s been one of the most enjoyable collaborations I&#8217;ve ever experienced. Unlike many of the other sites I&#8217;ve created, all the design, layout, graphics and type styling on this site came from just the two of us working together; trying out different ideas and refining the ones that felt right.</p>
<p>Like my own site, <a title="Kate Nasser — The People-Skills Coach" href="http://katenasser.com" target="_blank">KateNasser.com</a> has a static home page. A custom menu provides easy navigation to other pages and sub-pages. The sidebar prominently features her contact information followed by an embedded video clip from one of her speaking engagements. Below that, is a list of her most recent posts. At the bottom of the page is a section showing post excerpts in a special category: &#8220;Hot Topics and New Bits.&#8221;</p>
<p>What was most fun was teaching Kate how to use <a title="Kate Nasser's YouTube page" href="http://www.youtube.com/user/KateNasser" target="_blank">YouTube</a> to organize her video playlists and embed them in posts for her site. I also taught her how to use social media services to drive traffic to her site. She&#8217;s become an avid twitterer. You can follow her tweets at @<a href="http://twitter.com/katenasser">KateNasser</a> .</p>
<p>Please take a look at <a title="Kate Nasser — The People-Skills Coach" href="http://katenasser.com" target="_blank">KateNasser.com</a> and let us know if we did as good a job as we think we did.</p>
<p>— Larry</p>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2009/kate-nasser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Two New Browsers</title>
		<link>http://larryaronson.com/2008/two-new-browsers/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://larryaronson.com/2008/two-new-browsers/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 19:17:10 +0000</pubDate>
		<dc:creator>Larry Aronson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Flock]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://larryaronson.com/?p=63</guid>
		<description><![CDATA[<img class="left" src="/wp-content/uploads/chrome_icon.gif" width="75" height="75" /> Two new Web browsers have recently become available for exploring the Internet. Google Chrome and Flock take radically different approaches to the browsing experience and I recommend you take a look at them when you get a chance.]]></description>
				<content:encoded><![CDATA[<p>Two new Web browsers have recently become available for exploring the Internet. <a title="Download Google Chrome" href="http://google.com/chrome" target="_blank">Google Chrome</a> and <a title="Visit the Flock, Inc. Website" href="http://flock.com/" target="_blank">Flock</a> take radically different approaches to the browsing experience and I recommend you take a look at them when you get a chance.</p>
<p><a href="http://larryaronson.com/wp-content/uploads/chrome_icon.gif#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img class="size-medium wp-image-72 alignleft" title="chrome_icon" src="http://larryaronson.com/wp-content/uploads/chrome_icon.gif" alt="" width="165" height="156" /></a><a title="Download Google Chrome" href="http://google.com/chrome" target="_blank">Google Chrome</a> is a minimalist&#8217;s browser. It doesn&#8217;t offer a multitude of features, but it&#8217;s very fast and solid as a rock. It relies heavily on tabs when visiting different sites and each tab runs in its own process. This keeps the browser from crashing from a page error or some misbehaved plug-in, and prevents pages in the background from slowing down the foreground window. I like Chrome&#8217;s history function. When you open a new tab or window it displays thumbnails and links to your most recently vistited pages.</p>
<p>Chrome offers a single address bar for both URLs and keywords. <a href="http://google.com" target="_blank">Google</a> is the default search engine, but it can be switched to others—<a href="http://wikipedia.org" target="_blank">Wikipedia</a>, <a href="http://aol.com" target="_blank">Aol</a>, <a href="http://yahoo.com/" target="_blank">Yahoo</a>, etc. The address bar has a fast auto-suggest function. For flying around the Web from site to site, Chrome is a jet fighter. However, if you mostly stay put on a collection of actively fed &#8220;home&#8221; pages, Flock may be the browser for you. It&#8217;s a mega-cruise ship.</p>
<p><a href="http://larryaronson.com/wp-content/uploads/flock_icon1.gif#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img class="alignleft size-medium wp-image-73" title="flock_icon1" src="http://larryaronson.com/wp-content/uploads/flock_icon1.gif" alt="" width="136" height="128" /></a><a title="Visit the Flock, Inc. Website" href="http://flock.com/" target="_blank">Flock</a> is <a href="http://www.mozilla.org" target="_blank">Firefox</a> on social media steroids. Flock takes a framed approach to visiting the Social Media Web, grabing feeds from places, such as: <a href="http://facebook.com/" target="_blank">Facebook</a>, <a href="http://twitter.com/" target="_blank">Twitter</a> and <a href="http://myspace.com" target="_blank">MySpace</a> into sidebars and <a href="http://youTube.com/" target="_blank">YouTube</a> selections into a headband. Flock works best opened full-screen on a big, wide, LCD display. Beware! The shear number and variety of tool bars, control tabs, bookmarks, menus and search boxes can overwhelm.</p>
<p>Flock, by default, remembers the sites you had loaded when you last quit and reopens them. It also opens a generated page, &#8220;My World&#8221; that captures all your various feeds, messages and pings.  I like the way Flock integrates with Gmail, and find it useful as an &#8220;active desktop&#8221; – a one-stop site that I scan every so often to keep in the mix as I&#8217;m doing other work. Flock pops-up a standard blog editor when I want to post something  and just about anything can be shared with a drag-n-drop action.</p>
<p>The online support documentation provided by the these two new browsers also provide a facinating contrast. Google wrote <a href="http://www.google.com/googlebooks/chrome/" target="_blank">a </a><a href="http://www.google.com/googlebooks/chrome/" target="_blank">Chrome </a><a href="http://www.google.com/googlebooks/chrome/" target="_blank">comic book</a> that teaches you how to use Chrome with a technical depth that&#8217;s actually readable. Flock has uploaded a series of youTube <a title="Google Chrome Quick Start" href="http://www.youtube.com/watch?v=X1UrhhRnYYs" target="_blank">videos showing Flock&#8217;s Features</a> in action. Check it out, you&#8217;ll get a better idea of what Flock is like and I won&#8217;t have to insert a screenshot here.</p>
<p>Google Chome is only available now for Windows. When it becomes available for the Mac, I&#8217;ll probably be using both Flock and Chrome more often than Firefox and Safari.</p>
<p><em>— Larry</em></p>
<p><a href="http://www.youtube.com/watch?v=X1UrhhRnYYs"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2008/two-new-browsers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
