<?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"
	>

<channel>
	<title>larryaronson.com</title>
	<atom:link href="http://larryaronson.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://larryaronson.com</link>
	<description>Systems Psychoanalyst</description>
	<pubDate>Tue, 18 Nov 2008 15:40:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>BUTCH and Harold Update</title>
		<link>http://larryaronson.com/2008/butch-harold-update/</link>
		<comments>http://larryaronson.com/2008/butch-harold-update/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 17:18:01 +0000</pubDate>
		<dc:creator>larry</dc:creator>
		
		<category><![CDATA[All]]></category>

		<category><![CDATA[Business]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[websites]]></category>

		<category><![CDATA[art]]></category>

		<category><![CDATA[butch]]></category>

		<category><![CDATA[Chrome]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[Flock]]></category>

		<category><![CDATA[harold]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[IE6]]></category>

		<category><![CDATA[peel]]></category>

		<category><![CDATA[stick]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://larryaronson.com/?p=92</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working with Michelle and Ariane Gold for about two years helping them maintain their website, <a title="BUTCH &amp; harold" href="http://butchandharold.com/" target="_blank">ButchAndHarold.com</a>. Michelle and Ariane market a line of peel-and-stick artware on their Yahoo Store-based website. Pretty nifty stuff. They have recently expanded their product line to include peel-and-stick photo frames and mini-stickers and, so, the website needed updating. New pages had to be created for the new products and their URLs had to be linked into the navigation menu. We decided to change the top level &#8220;Collection&#8221; menu button to &#8220;Shop&#8221; and make it a drop-menu showing the three product lines.</p>
<p><a href="http://larryaronson.com/wp-content/uploads/butchandharold.jpg"><img class="alignright size-full wp-image-103" title="butchandharold" src="http://larryaronson.com/wp-content/uploads/butchandharold.jpg" alt="" width="200" height="198" /></a>The BUTCH &amp; harold website is a traditional HTML website. It&#8217;s nicely designed but unlike the blogs I&#8217;ve been working on recently, there are no templates or includes for global page elements. There are just a lot of HTML files.  I didn&#8217;t build this site, but the Web designer/programmer who originally constructed it did a good job writing clean, modern code, making It easy to add content and make minor layout changes within the existing architecture. However, s/he did use some tricks with the navigation menu that gave me headaches trying to implement the drop-menu without rewriting the entire thing—and make it work in all browsers.</p>
<p><span style="color: #808080;"><em><span>The remainder of this post is more technical. Skip it unless you&#8217;re really interested in how page navigation works. Or just visit the site and check out how I built the <a href="http://butchandharold.com/stickrframe.html" target="_blank">Stickr (frame) </a>and <a href="http://butchandharold.com/stickrmini.html" target="_blank">Stickr (mini)</a> pages. You&#8217;ll see  (hopefully) some fun javascript in action.</span></em></span></p>
<p><span id="more-92"></span></p>
<p>Navigation menus have evolved since the early days of the Web. At first, websites were only able to feature a list of links; either vertically, as a list, or horizontally in a table. A link changed color when the mouse pointer hovered over it but all links on the page had the same color behavior. Designers wanting more choice than the common available fonts (e.g: Times, Helvetica and Courier) replaced the text with small images using designer fonts. However, unlike linked text, a linked image provides no visual feedback when you hover over it other than the mouse pointer changing from an arrow to a hand.</p>
<p>When Javascript came along in the mid-nineties, it provided a means to capture a limited number of page &#8220;events&#8221; and take action when they occured. These events have descriptive names, such as: onMouseOver, onMouseOut and onClick, and one of the actions availabe on the occurrence of such an event is changing the source of an image. Thus, instead on a single image used as a button, with Javascript, the button could have both &#8220;on&#8221; and &#8220;off&#8221; image that were swapped when you moved the mouse on and off of the link. This provided the interactivity designers wanted, but it came at a price. There was often a noticeable delay the first time a link switched between its off and on images as the browser waited for the alternate image to  download from the server. Techniques were developed to &#8220;pre-load&#8221; the alternate images, which helped somewhat (as did faster Internet connections) but pre-loading images just moves the delay from the individual buttons to the initial page load.</p>
<p>Plus, there was the additional cost of complexity—If you had ten navigation links, that meant having 20 images to manage. Changing image-based navigation links involved expensive software tools, such as: Photoshop, Illustrator, DreamWeaver and ImageReady, and took much more time. This limited the ability of the client to explore and develop their online concepts from the bottom up as they learned the technology of Web publishing. It robbed them of the freedom to play with ideas.</p>
<p>But, Wait! It&#8217;s even worse than that. There are two other problems related to the 21st Century Web (aka: Web 2.0.) First, robots can&#8217;t read images. That is, the specialized automated tools that <a href="http://google.com" target="_blank">Google</a>, <a href="http://yahoo.com" target="_blank">Yahoo</a>, and others use to visit, catalog and rank sites can&#8217;t interpret the content inside an image. From the robots perspective, a lot of information about the structure and flow of a Web site is invisible when you use graphic images for navigation links. Now let&#8217;s face it, Google has become indispensable to the way we use the Internet to market our products and services and you&#8217;re at a competitive disadvantage if your site isn&#8217;t robot-friendly.</p>
<p>The second problem with graphical navigational elements has to do with complexity again. You&#8217;ve heard it said that &#8220;Content is king.&#8221; What this means is that a static site, where the content hardly changes over time  loses out to sites where fresh content is dynamically generated tailored to the customer&#8217;s needs. Publishing content on a regular schedule requires good content management systems. It&#8217;s also a lot easier if the overall structure of the site and its component HTML elements are as simple as possible.</p>
<p>Thus, there&#8217;s been a return to the use of text as navigation items and, indeed, a movement away from specifying layout constructs and style choices in the HTML, and toward using cascading style sheets (CSS) for these purposes. Google is a good example of this. Fortunately, the CSS recognized by today&#8217;s browsers is much more powerful and the designer has many more options to add interactivity than s/he did in the last century. For example, you are all familiar with simple, unordered lists, the kind with bullets. With CSS, you can eliminate the bullets and float the list items so that they appear in a horizontal line instead of using a table for the items. Also, nested lists are easier to manage than nested tables. And, instead of capturing a mouseOver event with Javascript, you can preset the hover state of any element and change text and background colors, even background images with the CSS without the pre-load problems.</p>
<p>This brings us back to <a href="http://butchandharold.com" target="_blank">BUTCH &amp; harold</a> where the original designer tried to have it both ways with the navigation menu—using text lables for the robots to read and pretty images with mouseOver effects for humans. It&#8217;s all done in the CSS. The navigation menu is an unordered list displayed horizontally with a unique on and off background images assigned to each list item. The images have a nice font (Bliss) for the labels and the &#8220;on&#8221; or hover states have the B&amp;H logo above them. To keep the actual text out of sight for humans but still readable by robots, the designer set the text indentation in the CSS to -5000 pixels.  The robots don&#8217;t care; they don&#8217;t bother reading a website&#8217;s CSS, but for humans, this moves the text off the left side of the monitor to somewhere in the next room.</p>
<p>Michelle and Ariane didn&#8217;t want the clutter or expense of new graphics for the drop-menu items; they&#8217;d be satisfied with text in the same color as the labels and a close match to the font. Making the drop-menu items appear in the right place meant setting the text-indent for the nested list to +5000 pixels to counteract the original setting that made the top level invisible. This worked well for Firefox and IE7 but not for Safari and, try as I might, I could not get the positioning right for all three.</p>
<p>I threw out the text-indentation hack and used the visibility property to hide the text labels from humans. This fixed the positioning problem with Safari, but made the entire &#8220;Shop&#8221; menu and the drop-menu invisible in IE6. IE6 is significantly different in that only recognizes a hover state for links whereas other browsers recognize a hover state for any HTML element. I did my research and found a solution using Javascript to capture a onMouseOver event on the top level list item (the Shop button) to dynamically change the CSS class of the nested drop-menu.</p>
<p>Wow, I make it sound simple but it was anything but. It took a lot of trial and error and I ended up rewriting almost all of the CSS to eliminate conflicts between the list styles used for the menus and the list styles used everywhere else.</p>
<p>In conclusion, I notice that about 1/5 of you are still using IE6 to browse the Web.<a title="Browser usage statistics from W3 Schools" href="http://www.w3schools.com/browsers/browsers_stats.asp" target="_blank">*</a> Please Stop! Make my life easier and your computing more secure and enjoyable. Upgrade to IE7 or download Firefox, Safari, Opera or one of the <a title="Read my recent post" href="http://larryaronson.com/2008/two-new-browsers/" target="_blank">two new browsers</a>: <a title="Get the Flock Browser" href="http://flock.com/" target="_blank">Flock</a> or <a title="Get Google's Chrome Browser" href="http://google.com/chrome" target="_blank">Chrome</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2008/butch-harold-update/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Two New Browsers</title>
		<link>http://larryaronson.com/2008/two-new-browsers/</link>
		<comments>http://larryaronson.com/2008/two-new-browsers/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 19:17:10 +0000</pubDate>
		<dc:creator>larry</dc:creator>
		
		<category><![CDATA[All]]></category>

		<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[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.
Google Chrome is a minimalist&#8217;s browser. It doesn&#8217;t offer a multitude of features, but it&#8217;s very fast and [...]]]></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"><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"><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>
		</item>
		<item>
		<title>Here&#8217;s a Tip</title>
		<link>http://larryaronson.com/2008/heres-a-tip/</link>
		<comments>http://larryaronson.com/2008/heres-a-tip/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 12:41:05 +0000</pubDate>
		<dc:creator>larry</dc:creator>
		
		<category><![CDATA[All]]></category>

		<category><![CDATA[FAQ]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[sidebar]]></category>

		<category><![CDATA[styles]]></category>

		<category><![CDATA[tip]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://larryaronson.com/?p=35</guid>
		<description><![CDATA[Here&#8217;s how to add a floating tipbox or editorial sidebar to a post in your Wordpress blog. I&#8217;m writing this to answer a question from a client and it just made more sense to demonstrate the technique in a post rather than explain it in an email.  The floating tipbox that appears below duplicates the [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how to add a floating tipbox or editorial sidebar to a post in your Wordpress blog. I&#8217;m writing this to answer a question from a client and it just made more sense to demonstrate the technique in a post rather than explain it in an email.  The floating tipbox that appears below duplicates the example my client provided. The text explains how to create and customize a box to your own specifications.</p>
<p>First, make sure you are logged in as an administrative user. Go to the site admin area (also called the dashboard) and click on the <strong>Design</strong> tab; then click on the submenu tab, <strong>Theme Editor</strong>. You should now be looking at a page with a text editing window on the left and a list of theme files on the right. <em>Stylesheet (style.css)</em> should be the active file in the edit window. If it&#8217;s not, then select it from the bottom of the list on the right.</p>
<div class="tipbox">The exact formatting isn&#8217;t important. Essentially, it&#8217;s a named set of rules where each rule is composed of a selector, followed by a colon (:) followed by a value or list of values. The individual rules are separated by semi-colons and the order doesn&#8217;t matter. The entire set of rules is enclosed in braces ({}) preceded by the set&#8217;s name. If you want to, you can put it all on one line.  Just make sure you begin the name with a period (.). That identifies this rule set as a &#8220;class&#8221;.</div>
<p>Scroll to the bottom of the stylesheet file and add the follow lines. Don&#8217;t worry, you only have to do this step once:</p>
<pre><span style="font-size: 0.9em; color: #006600;">.tipbox {
 max-width: 33%;
 float: right;</span>
<span><span style="font-size: 0.9em; color: #006600;"> font-size: .66em;
</span></span><span style="font-size: 0.9em; color: #006600;"> padding: 1em;
 border-width: thick thin thin thin;
 border-style: solid;
 border-color: grey;
}</span></pre>
<p>Click the button labeled &#8220;Update File&#8221; to save your additions to the stylesheet.</p>
<p>Now, back in the post editor, edit your post as usual. The content of the tipbox should be entered just as if it were an ordinary text, but place that text before the content that you want to flow around the tipbox. Here, we just have one paragraph of text in the box but you can have any content—headings, lists, images, etc., in an floating box.</p>
<p>Once all of your content is in place, click the tab labeled, <strong>HTML</strong>, at the top of the editing area. The content of the editing area will change showing the marked up content instead of the WYSIWYG version. Find your tipbox content and insert the following text immediately in front of it:</p>
<pre><span style="font-size: 0.9em; color: #006600;">&lt;div class="tipbox"&gt;</span></pre>
<p>and the following text immediately after the content:</p>
<pre><span style="font-size: 0.9em; color: #006600;">&lt;/div&gt;</span></pre>
<p>Click the <strong>Visual</strong> tab to return to the WYSIWYG mode and save the draft. The  WYSIWYG mode doesn&#8217;t recognize the floating mode, so you&#8217;ll have to click on the &#8220;Preview this Post&#8221; button to see if it worked.</p>
<p>You can create as many tipboxes as you&#8217;d like. Enclose any content in a set of division tags  with the class assigned to tipbox – headings, paragraphs, lists, whatever, it will be boxed and floated on the right margin.</p>
<h3>Customizing the tipbox.</h3>
<p>Let&#8217;s take a look at the details and see how they can be changed to achieve different effects. The rules added to the stylesheet do this by giving your browser the following instructions:</p>
<ul>
<li>Set our tipbox to occupy no more than 1/3 (33%) of the available column width. Unlike an image element, which has a fixed width, a division element normally takes up 100% of the width available, so, we have to tell it to take less.  You can also supply a fixed value, e.g:   <span style="font-size: 0.9em; color: #006600;">max-width: 200px;</span></li>
<li>This tipbox element should float on the right margin of the column and whatever content follows this element should wrap around it on the left. This and the previous rule are required to create the sidebar or cutout element; everything else is decoration.</li>
<li>Make the font size 2/3 of what it would normally be. &#8216;em&#8217; is a measurement unit equal to the width of the letter &#8216;m&#8217;. We could have also stated the size using a percent or other measurement units: 66%, 9pt, 12px, for example, but em works better for a number of reasons.</li>
<li>Put 1 em worth of space as padding between the border of the tipbox and the content inside. Space is important for readability.</li>
<li>Give tipbox a thick border on top with thin borders on the right, bottom and left sides. Borders can also set set as pixels, l.e:  <span style="font-size: 0.9em; color: #006600;">border-width: 5px 2px 2px 2px</span>, would be about the same in this example</li>
<li>Make the border a solid line. It could also be dashed, dotted, double, inset and outset.</li>
<li>Make the border grey, You can also give it an explicit color value as an RBG value. see below</li>
</ul>
<p>Here&#8217;s a set of rules that, instead of a border, creates a class called &#8216;bluebox&#8217; that uses different background and foreground colors to visually define a floating box:</p>
<div class="bluebox"><span style="font-size:14pt">Tip:</span><br />
Keep a list somewhere of the styles you add to your stylesheet so you don&#8217;t reinvent the wheel the next time you need one.</div>
<pre><span style="font-size: 0.9em; color: #006600;">.bluebox {
 max-width: 150px;
 float: left;</span>
<span><span style="font-size: 0.9em; color: #006600;"> font-size: 9pt;
 margin-right: 8px;
</span></span><span style="font-size: 0.9em; color: #006600;"> padding: 5px;
 color: #ffffe0;                 /* light yellow text */
 background: #000066;    /* on a dark blue background */
}

</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2008/heres-a-tip/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Critics Rescued</title>
		<link>http://larryaronson.com/2008/newcritics-rescued/</link>
		<comments>http://larryaronson.com/2008/newcritics-rescued/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 21:19:41 +0000</pubDate>
		<dc:creator>larry</dc:creator>
		
		<category><![CDATA[All]]></category>

		<category><![CDATA[Business]]></category>

		<category><![CDATA[websites]]></category>

		<category><![CDATA[new critics]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://larryaronson.com/?p=25</guid>
		<description><![CDATA[Tom Watson&#8217;s &#8220;labor of love,&#8221; the New Critics blog, had been hacked and he had to bring it down.
I had just returned from my honeymoon and my home office had been in disarray for months. Helping Tom promised to be more fun than doing my taxes. It was. I like New Critics and regret that [...]]]></description>
			<content:encoded><![CDATA[<p>Tom Watson&#8217;s &#8220;labor of love,&#8221; the <a title="New Critics" href="http://NewCritics.com" target="_blank">New Critics</a> blog, had been hacked and he had to bring it down.</p>
<p><a class="alignleft" title="New Critics" href="http://NewCritics.com" target="_blank"><img class="alignleft size-medium wp-image-26" title="New Critics Weblog" src="http://larryaronson.com/wp-content/uploads/newcritics_screenshot.jpg" alt="" width="200" height="208" /></a>I had just returned from my honeymoon and my home office had been in disarray for months. Helping Tom promised to be more fun than doing my taxes. It was. I like New Critics and regret that I haven&#8217;t had any time in this busy year to contribute.</p>
<p>Tom had built New Critics on an older version of Wordpress and needed to upgrade to prevent another hack. He wasn&#8217;t happy with his current hosting arrangement either and wanted to move the site to a hosting company with more services and better support.</p>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2008/newcritics-rescued/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Real Intelligence</title>
		<link>http://larryaronson.com/2008/real-intelligence/</link>
		<comments>http://larryaronson.com/2008/real-intelligence/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 20:35:34 +0000</pubDate>
		<dc:creator>larry</dc:creator>
		
		<category><![CDATA[All]]></category>

		<category><![CDATA[Business]]></category>

		<category><![CDATA[websites]]></category>

		<category><![CDATA[politics]]></category>

		<category><![CDATA[Real Intelligence]]></category>

		<category><![CDATA[Scott Ritter]]></category>

		<guid isPermaLink="false">http://larryaronson.com/?p=34</guid>
		<description><![CDATA[US Tour Of Duty is a dot-org providing support for authors and speakers on the political left that oppose the Bush administration&#8217;s military adventurism in the Middle East. I was asked by their communication&#8217;s director, Jeff Norman, to consolidate two of their existing sites, USTourOfDuty.org and RealIntelligence.org, then, incorporating the same design, link in a [...]]]></description>
			<content:encoded><![CDATA[<p>US Tour Of Duty is a dot-org providing support for authors and speakers on the political left that oppose the Bush administration&#8217;s military adventurism in the Middle East. I was asked by their communication&#8217;s director, Jeff Norman, to consolidate two of their existing sites, <a title="U.S. Tour Of Duty" href="http://ustourofduty.org/" target="_blank">USTourOfDuty.org</a> and <a title="Real Intelligence" href="http://realintelligence.org" target="_blank">RealIntelligence.org</a>, then, incorporating the same design, link in a new site, ScottRitter.us, devoted to the writing and appearances by Scott Ritter, former UN weapons inspector and author of several books on geopolitics.</p>
<p><a title="Scott Ritter" href="http://scottritter.us" target="_blank"><img class="alignleft alignnone size-medium wp-image-31" style="float: left;" title="Scott Ritter" src="http://larryaronson.com/wp-content/uploads/screenshot.jpg" alt="Scott Ritter" width="200" height="181" /></a>Real Intelligence aggregates articles from other sources, including Scott Ritter&#8217;s site, <a title="Scott Ritter" href="http://scottritter.us" target="_blank">ScottRitter.us</a>. Using Wordpress custom fields, I gave Jeff the ability to post both &#8220;local&#8221; and &#8220;global&#8221; articles—which appear with their original bylines, publishing dates and permalinks.</p>
<p>This is also a rare case where the finished project reflects my visual design. The orginal site&#8217;s styles and graphics had little in common other than projecting a sense of patriotic investigative journalism. My client had no solid feelings on how the site should look and liked every choice I presented. I employed a red-white-and-blue color scheme with crisp lines and open fonts and reused the existing graphics as best as I could. I put in a lot more Photoshop hours on this project than I typically do.</p>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2008/real-intelligence/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Conversation Hub Rebuilt</title>
		<link>http://larryaronson.com/2008/conversation-hub-rebuilt/</link>
		<comments>http://larryaronson.com/2008/conversation-hub-rebuilt/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 16:44:27 +0000</pubDate>
		<dc:creator>larry</dc:creator>
		
		<category><![CDATA[All]]></category>

		<category><![CDATA[Business]]></category>

		<category><![CDATA[websites]]></category>

		<category><![CDATA[Supernova]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://larryaronson.com/?p=27</guid>
		<description><![CDATA[Kevin Werbach was in trouble. He was coordinating activities for Supernova 2008 and had used a local connection (i.e. cheap labor) to redesign Conversation Hub, the conference&#8217;s weblog. The new design was good but it was executed with old technology that just didn&#8217;t integrate with Wordpress. Moreover, it was a cross-browser mess. Blogs do things [...]]]></description>
			<content:encoded><![CDATA[<p>Kevin Werbach was in trouble. He was coordinating activities for <a title="Supernova 2008" href="http://supernova2008.com/" target="_blank">Supernova 2008</a> and had used a local connection (i.e. cheap labor) to redesign <a title="Conversation Hub" href="http://conversationhub.com" target="_blank">Conversation Hub</a>, the conference&#8217;s weblog. The new design was good but it was executed with old technology that just didn&#8217;t integrate with Wordpress. Moreover, it was a cross-browser mess. Blogs do things differently than the webtools many designers are still using to create brochureware. They tend to use simple lists and rely on CSS for layout and positioning rather than nested tables. This makes for faster rendering, easier modifications and better search engine visibility.</p>
<p><a title="Conversation Hub" href="http://conversationhub.com" target="_blank"><img class="right" style="float: right; margin-left: 6px; margin-right: 6px;" title="Conversation Hub" src="http://larryaronson.com/wp-content/uploads/conversationhub_screenshot.jpg" alt="Converssation Hub" width="200" height="188" /></a>Conversation Hub was also running on a very old version of Wordpress and needed an upgrade to take advantage of the newer editing and media management tools and plug-ins available. I was able to upgrade the site, lay in the design changes and install/configure the new plug-ins in plenty of time to meet the conference deadlines.</p>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2008/conversation-hub-rebuilt/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Three New Blogs</title>
		<link>http://larryaronson.com/2008/three-new-blogs/</link>
		<comments>http://larryaronson.com/2008/three-new-blogs/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 01:41:45 +0000</pubDate>
		<dc:creator>larry</dc:creator>
		
		<category><![CDATA[All]]></category>

		<category><![CDATA[Business]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[websites]]></category>

		<category><![CDATA[air]]></category>

		<category><![CDATA[asia]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[client]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[health]]></category>

		<category><![CDATA[law]]></category>

		<category><![CDATA[Medical]]></category>

		<category><![CDATA[medicine]]></category>

		<category><![CDATA[pacific]]></category>

		<category><![CDATA[prescription]]></category>

		<category><![CDATA[safety]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://larryaronson.com/2008/three-new-blogs/</guid>
		<description><![CDATA[I&#8217;ve did three very different blogs for clients at the end of 2007.
East-West Dialogue – Under subcontract to graphics designer, Michael Pinto, of VM.com, I installed and configured this content management system for The East-West Center. It primarily serves as the online companion to the print version of the organization&#8217;s signature magazine, East-West Dialogue. The [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve did three very different blogs for clients at the end of 2007.</p>
<p class="item" style="clear:both"><a title="East-West Dialogue" href="http://forum.eastwestcenter.org/eastwestdialogue/"><img src="http://larryaronson.com/wp-content/uploads/east-west.jpg" border="0" alt="East-West Dialogue" hspace="4" width="200" align="right" /></a><strong><a href="http://forum.eastwestcenter.org/eastwestdialogue/">East-West Dialogue</a> – </strong>Under subcontract to graphics designer, Michael Pinto, of <a title="very memorable" href="http://vm.com" target="_blank">VM.com</a>, I installed and configured this content management system for <a title="East-West Center homepage" href="http://www.eastwestcenter.org/home/">The East-West Center</a>. It primarily serves as the online companion to the print version of the organization&#8217;s signature magazine, <em>East-West Dialogue</em>. The design requirements were very specific featuring a custom navigation menu and different sidebars for the index pages and post pages.</p>
<p style="clear:both">
<p class="item" style="clear:both"><a title="Partnership For Prescription Assistance, Pennsylvania" href="http://www.ppapennsylvanianews.org/"><img src="http://larryaronson.com/wp-content/uploads/ppanewsblog.jpg" border="0" alt="Partnership For Prescription Assistance, Pennsylvania" hspace="4" width="200" align="right" /></a> <strong><a title="ppa News" href="http://www.ppapennsylvanianews.org/" target="_blank">The Partnership For Prescription Assistance, Pennsylvania, blog</a></strong>. They client wanted a three column design with a Google Calendar. My favorite bit is the <a href="http://www.sharethis.com" target="_blank">ShareThis</a> wiggit attached to the end of each post.</p>
<p style="clear:both">
<p class="item" style="clear:both"><a title="Air Safety And Law" href="http://airsafetyandlaw.wordpress.com"><img src="http://larryaronson.com/wp-content/uploads/airsafetyandlaw.jpg" border="0" alt="Air Safety And Law" hspace="4" width="200" align="right" /></a><strong><a title="Air Safety And Law" href="http://airsafetyandlaw.wordpress.com" target="_blank"> Air Safety And Law</a></strong> is intended to serve as a forum for the legal community to discuss air travel safety and liability issues. I worked with my graphics designer friend, <a title="David Schiffer Design" href="http://www.dlsdesign.com" target="_blank">David Schiffer</a>, who provided the header image and selected the theme from several sample templates I presented. This is a demo version on <a title="WordPress Free Hosting account" href="http://wordpress.com" target="_blank">Wordpress.com</a> which took me about an hour to create.</p>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2008/three-new-blogs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Websites For Artists</title>
		<link>http://larryaronson.com/2007/websites-for-artists/</link>
		<comments>http://larryaronson.com/2007/websites-for-artists/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 19:14:31 +0000</pubDate>
		<dc:creator>larry</dc:creator>
		
		<category><![CDATA[All]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[websites]]></category>

		<category><![CDATA[art]]></category>

		<category><![CDATA[clients]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[friends]]></category>

		<category><![CDATA[photographs]]></category>

		<category><![CDATA[Web 1.0]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://larryaronson.com/2007/websites-for-artists/</guid>
		<description><![CDATA[Here are some of the sites I&#8217;ve designed and built for clients in the commercial and fine arts.  I offer them as examples of the simple, static, Web 1.0 sites, done very quickly for friends a few years ago. Today it&#8217;s much easier and more effective to establish an online presence using Web 2.0 [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some of the sites I&#8217;ve designed and built for clients in the commercial and fine arts.  I offer them as examples of the simple, static, Web 1.0 sites, done very quickly for friends a few years ago. Today it&#8217;s much easier and more effective to establish an online presence using Web 2.0 tools and social media services.</p>
<p class="item"><a title="Suzearts" href="http://www.suze-arts.com/photoshow.html" target="_blank"><img src="http://larryaronson.com/wp-content/uploads/suze-arts.jpg" border="0" alt="Suzearts" hspace="8" width="200" align="right" /></a><strong><a title="Suzearts" href="http://www.suze-arts.com/photoshow.html" target="_blank">Suzearts</a></strong> is the online showcase for my best friend, Susan Thornton, who creates wonderful images from the land and sky scapes of New Mexico and Fire Island. We put this simple site together in an afternoon several years ago for the New York Licensing show. Today, you can do a lot more to showcase art and music by using services such as <a title="Flickr" href="http://www.flickr.com/" target="_blank">flickr</a> and <a title="photobucket" href="http://photobucket.com/" target="_blank">photobucket</a>, to organize and tag your art, and social media services like <a title="facebook" href="http://facebook.com/" target="_blank">Facebook</a> and <a title="twitter" href="http://twitter.com/" target="_blank">Twitter</a> to promote your work across a web of networks, groups and friends.</p>
<p class="item"><strong><a title="Mick Kolodgy Fine Art" href="http://mickkolodgy.com/" target="_blank">Mick Kolodgy Fine Art</a></strong><br />
<strong><a title="Mick Kolodgy Fine Art" href="http://mickkolodgy.com/" target="_blank"></a></strong> <a title="Mick Kolodgy Fine Art" href="http://larryaronson.com/wp-content/uploads/mickkolodgy_small.jpg"><img src="http://larryaronson.com/wp-content/uploads/mickkolodgy_small.jpg" alt="Mick Kolodgy Fine Art" /></a><br />
is an online gallery of his paintings. I developed the horizontal gallery design with rollover menus at both ends and tied it all together with a compact image caching and navigation scheme written in Javascript. This was fun to build but I can&#8217;t advise artists that having your own showcase site is the best way to leverage the Web anymore. There are many web services companies that want and need your content; provide a wide range of options for organizing, displaying and selling it; can boost your search engine juices and connect you to networks, groups and forums of people interested in what you do.</p>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2007/websites-for-artists/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Look For SmartMC</title>
		<link>http://larryaronson.com/2007/new-look-for-smartmc/</link>
		<comments>http://larryaronson.com/2007/new-look-for-smartmc/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 01:44:14 +0000</pubDate>
		<dc:creator>larry</dc:creator>
		
		<category><![CDATA[All]]></category>

		<category><![CDATA[Business]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[websites]]></category>

		<category><![CDATA[client]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[health]]></category>

		<category><![CDATA[web service]]></category>

		<guid isPermaLink="false">http://larryaronson.com/2007/new-look-for-smartmc/</guid>
		<description><![CDATA[I&#8217;m the senior product developer for Smart Medical Consumer. Recently, I&#8217;ve adapted new styles and design elements from Advancity to unify and improve the site&#8217;s look and feel. I&#8217;ve also updated much of my perl cgi code making it more object oriented.
A lot of new features have been added to SmartMC including automatic alert messages [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Smart Medical Consumer" href="http://smartmedicalconsumer.com/"><img src="http://larryaronson.com/wp-content/uploads/new_smartmc.jpg" border="0" alt="Smart Medical Consumer" hspace="8" vspace="0" width="200" align="right" /></a>I&#8217;m the senior product developer for <a title="Smart Medical Consumer" href="http://www.smartmedicalconsumer.com/" target="_blank">Smart Medical Consumer</a>. Recently, I&#8217;ve adapted new styles and design elements from <a title="Advancity design firm" href="http://www.advancity.net/">Advancity</a> to unify and improve the site&#8217;s look and feel. I&#8217;ve also updated much of my perl cgi code making it more object oriented.</p>
<p>A lot of new features have been added to SmartMC including automatic alert messages with pop-up graphs that show how the the metics associated with one claim compare to other claims for the same patient, provider and insurance plan. The Edit interface has also been upgraded with AJAX driven drop-menus and auto-suggestion input fields.</p>
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2007/new-look-for-smartmc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Recent Projects</title>
		<link>http://larryaronson.com/2007/recent-projects/</link>
		<comments>http://larryaronson.com/2007/recent-projects/#comments</comments>
		<pubDate>Sat, 01 Sep 2007 18:00:22 +0000</pubDate>
		<dc:creator>larry</dc:creator>
		
		<category><![CDATA[All]]></category>

		<category><![CDATA[Business]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[websites]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[client]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[government]]></category>

		<category><![CDATA[marketing]]></category>

		<category><![CDATA[Medical]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[web service]]></category>

		<guid isPermaLink="false">http://larryaronson.com/2007/recent-projects/</guid>
		<description><![CDATA[Smart Medical Consumer
Smart Medical Consumer is a new Web-based service business conceived and designed by a remarkable person, Banu Özden, providing free health issue forums, resource directories, secure medical document storage and a sophisticated medical records manager.
I designed and programmed the records manager, MySMC, which was released this Spring in a limited, early beta version. [...]]]></description>
			<content:encoded><![CDATA[<h3><a href="http://SmartMedicalConsumer.com" target="_blank">Smart Medical Consumer</a></h3>
<p class="item"><a href="http://SmartMedicalConsumer.com" target="_blank">Smart Medical Consumer</a> is a new Web-based service business conceived and designed by a remarkable person, <a title="Google Banu Ozden" href="http://www.google.com/search?q=%22Banu+Ozden%22" target="_blank">Banu Özden</a>, providing free <a title="Ask and Share" href="http://www.smartmedicalconsumer.com/questions/index.php" target="_blank">health issue forums</a>, <a title="Health services resource directory" href="http://www.smartmedicalconsumer.com/resources.html" target="_blank">resource directories</a>, secure <a title="MyDocs" href="https://www.smartmedicalconsumer.com/index.html" target="_blank">medical document storage</a> and a sophisticated <a title="MySMC" href="https://www.smartmedicalconsumer.com/" target="_blank">medical records manager</a>.</p>
<p class="item"><a href="https://www.smartmedicalconsumer.com/index.html"><img src="http://www.laronson.com/images/MySMC.jpg" border="2" alt="Smart Medical Consumer" hspace="10" width="200" height="208" align="right" /></a>I designed and programmed the records manager, MySMC, which was released this Spring in a limited, early beta version. MySMC is a LAMP application with HTML, CSS and AJAX, on the front, and a MySQL database with Perl CGI on the back.  It manages health service provider invoices, insurance claim benefit statements and patient payment receipts.</p>
<p class="item">MySMC features easy input and editing, strong searching and reporting,  automatic error detections and comparison checks. Each registered MySMC user can define any number of patients making the system usable by individuals, families, organizations and  companies.</p>
<p style="clear: right">
<h3><a href="http://www.RiversideMarketingStrategies.com/" target="_blank">Riverside Marketing Strategies</a></h3>
<p class="item"><a title="Riverside Marketing Strategies" href="http://www.RiversideMarketingStrategies.com" target="_blank"><img src="http://www.laronson.com/images/RMSsmall.jpg" alt="Riverside Marketing Strategies" hspace="8" width="200" align="right" /></a>This is the website of a wonderful, online marketing consultant, Heidi Cohen. The design and layout was done by Michael Pinto of <a title="Very Memorable" href="http://www.vm.com/" target="_blank">Very Memorable Media</a> who provided a Photoshop file to work from. Ms. Cohen set precise standards for usability and searchability. The resulting collaboration resulted in a near perfect website.</p>
<p style="clear: right">
<h3><a title="Pass Open Records" href="http://passopenrecords.org" target="_blank">Pass Open Records</a></h3>
<p class="item"><a title="Pass Open Records" href="http://passopenrecords.org" target="_blank"><img src="http://www.laronson.com/images/PassOpenRecords.jpg" alt="Pass Open Records" hspace="8" width="200" align="right" /></a>This blog, subtitled: <cite>A Movement to Lift the Lid on Pennsylvania Government</cite> is an initiative of the <a title="Pennsylvania Newspaper Association" href="http://www.pa-newspaper.org/" target="_blank">Pennsylvania Newspaper Association</a>. I did the blog installation and configuration using <a href="http://www.wordpress.org" target="_blank">WordPress</a>, adapting and modifying a third party theme, <a title="by Sadish" href="http://wpthemes.info/misty-look/" target="_blank">Misty Look</a>, under contract to <a href="http://howardgreenstein.com/" target="_blank">Howard Greenstein</a> who provided the association with the online strategy and training to make them bloggers. The project was conceived and designed by <a href="http://www.bravogroup.cc/" target="_blank">BravoGroup</a>, a specialist in government communications.</p>
<p class="item">I&#8217;ve known Howard since the early days of Silicon Alley. We&#8217;ve worked together on several dot-org projects and it was a pleasure to finally work with him, B2B, on a project.</p>
<p style="clear: right">
]]></content:encoded>
			<wfw:commentRss>http://larryaronson.com/2007/recent-projects/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
