<?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>Interactive Llama :: Interactive media tutorials and tips &#187; Productivity &amp; Workflow</title>
	<atom:link href="http://www.interactivellama.com/blog/archives/category/productivity/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.interactivellama.com/blog</link>
	<description>Interactive media tutorials and tips</description>
	<lastBuildDate>Wed, 23 Nov 2011 15:25:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>Tips for responsive web design</title>
		<link>http://www.interactivellama.com/blog/archives/tips-for-responsive-web-design/</link>
		<comments>http://www.interactivellama.com/blog/archives/tips-for-responsive-web-design/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 15:52:07 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.interactivellama.com/blog/?p=362</guid>
		<description><![CDATA[Right now, responsive pretty much all about the width of your website&#8211;although it may not always be that way. Responsive design is an approach though and not a specific technology (media queries, etc.). It&#8217;s about responding to the device the website is being displayed upon. For example, the appropriate design may change for touchscreens by [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.interactivellama.com/blog/wp-content/uploads/2011/11/responsive-example.jpg"><img class="alignnone size-full wp-image-364" title="responsive-example" src="http://www.interactivellama.com/blog/wp-content/uploads/2011/11/responsive-example.jpg" alt="" width="510" height="347" /></a></p>
<p>Right now, responsive pretty much all about the width of your website&#8211;although it may not always be that way. Responsive design is an approach though and not a specific technology (media queries, etc.). It&#8217;s about responding to the device the website is being displayed upon. For example, the appropriate design may change for touchscreens by making buttons larger.</p>
<p>People are used to scrolling up and down, so matching the width of your document to the width the browser is often the main goal. Although most of the tips below are related to CSS and media queries AND focus on informational sites (not web applications), I believe that JavaScript has a significant place to play in behavioral changes and touch implementations in responsive design. The following list is intended for front-end developers and designers that work with CSS regularly, but are just starting to build responsive sites.<em> </em></p>
<p><em>Note: I am not going to use the term mobile, but small-screen. Using  mobile implies that you are moving&#8211;not that you are viewing the site on  a small screen. (via <a href="http://www.zeldman.com/2011/04/27/%E2%80%9Cmobile%E2%80%9D-versus-%E2%80%9Csmall-screen%E2%80%9D/">Zeldman</a>)</em></p>
<p><strong>The decision trees of your layout multiplies with responsive design.</strong> Where should this item if the screen resolution is&#8230;? This adds complexity to the project due to the multiple (or continous with fluid layout) layouts. Be sure to plan out how many layouts you will create from the beginning. Small, medium, and large? Two small layours (landscape and portrait?) Start with a <a href="http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries">media query boilerplate</a> and add or subtract the media queries you need.<span id="more-362"></span></p>
<p><strong>Wire frame your desktop and small-screen version before writing any markup. </strong>This allows you to know where and what order your markup (HTML) will be need to be in to achieve correct placement in your desktop version and your small-screen version. If your site demands efficiency, you can subtract and add navigation elements with JavaScript, just make sure you have enough of the basic navigation to go to every page first.</p>
<p><strong>Make use of position absolute, relative-absolute and fixed.</strong> And know <a href="http://css-tricks.com/1191-absolute-relative-fixed-positioining-how-do-they-differ/">the difference</a>. You might want the logo above the menu in one version and below the menu in another. Short of moving your markup around (remove/insert) with Javascript. This is the only way to visually re-order your markup.</p>
<p><strong>Become familiar with fluid layouts.</strong> Knowing what adds up to 100% is helpful. Don&#8217;t forget to use percent margins and padding. Using percentages is called liquid layout or flexible layout.</p>
<p><strong>Decide what content is important for small screen</strong> (which are often mobile and thus have a low connection speed). If you are a brochure site&#8211;that is your main purpose is to inform, not complete a task, then don&#8217;t hide content if you are downloading it anyway.</p>
<p><strong>Make buttons big.</strong> If it&#8217;s something that most people are going to click, add some padding if it&#8217;s a text line. Avoid fat finger syndrome by making action item large enough for fingers.</p>
<p><strong>Plan on adding around 30% more CSS design time</strong> for a typical brochure site to be responsive also. You wil probably be more for your first responsive site.</p>
<p><strong>Use min-width over max-width for the width of your elements. </strong>Remember to scale media. Image, embedded objects (embed, object tags, video) should be scaled. Make them have a max-width of 100%. Read about creating <a href="http://webdesignerwall.com/tutorials/css-elastic-videos">CSS Elastic Videos</a>. I usually limit this CSS rule to the children of a #primary div. Another possible route is to use JavaScript, via <a href="http://fitvidsjs.com/ ">FitJS</a>.</p>
<p><strong>Use the correct video format for your device.</strong> The simplest way to achieve this is use a video distribution service (I like <a href="http://vimeo.com">Vimeo</a> for their minimal layout&#8211;if you pay) that will change the format for you.</p>
<p><strong>Style rules outside any media query is the default style.</strong> You need to make the choice of whether you are going make small or large (read desktop) the default CSS style sheet. I think that small first will become dominant in the long run, but you will need to a JavaScript media query polyfill/shim for browsers that don&#8217;t support media query, and if you are using HTML5 already, then you probably already have a polyfill like <a href="http://www.modernizr.com/">Modernizr</a> running anyway. Modernizr uses <a href="https://github.com/scottjehl/Respond">Respond.js</a> to allow min/max-width CSS3 media queries. I would claim that creating a desktop first style sheet would be best if you are editing an existing site to be responsive or working on your first responsive site. If you want an detailed overview of the desktop or small screen first debate, I suggest  <a href="http://zomigi.com/blog/essential-considerations-for-crafting-quality-media-queries/">Essential considerations for crafting quality media queries</a>.</p>
<p><strong>Use the most appropriate size image if possible.</strong> If you are going to use JavaScript, to create content that uses images (read slideshow, gallery, etc.), you might as well check the width of your browser window and request smaller images than the &#8220;desktop version&#8221; in order to speed up their download. You might considering lazy-loading related content also.</p>
<p><em>And finally&#8230;</em></p>
<p><strong>Forget about being perfect.</strong> Yes, it&#8217;s your job&#8211;you SHOULD have a close to pixel-perfect layout for the two or three devices that the majority of your audience uses, but for all those in between accept a less than perfect layout. And while I&#8217;m on the topic of perfect, these are guidelines that I&#8217;ve discovered in my small amount of responsive work, and are by no means rules or laws.</p>
<p>What guidelines have you discovered that aid in responsive design?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/tips-for-responsive-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pruning blog posts from syndication feeds</title>
		<link>http://www.interactivellama.com/blog/archives/pruning-blog-posts-from-syndication-feeds-rss/</link>
		<comments>http://www.interactivellama.com/blog/archives/pruning-blog-posts-from-syndication-feeds-rss/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 18:36:42 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[Social Networks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.interactivellama.com/blog/?p=274</guid>
		<description><![CDATA[Update 06/11: PostRank appears to still work, but they have been bought by Google (not a big surprise&#8230;). We are waiting to see if the Social First top-down strategy that Page is implementing will cause PostRank to atrophy or shut down anytime soon. There is a Chrome/Safari plugin that works with Google Reader, too. Update: [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-276" title="rssbuttons" src="http://www.interactivellama.com/blog/wp-content/uploads/2009/06/rssbuttons.jpg" alt="rssbuttons" width="510" height="199" /></p>
<p>Update 06/11: <a href="http://www.postrank.com/">PostRank</a> appears to still work, but they have been bought by Google (not a big surprise&#8230;). We are waiting to see if the Social First top-down strategy that Page is implementing will cause PostRank to atrophy or shut down anytime soon. There is a Chrome/Safari plugin that works with Google Reader, too.</p>
<p><em><strong>Update:</strong></em> <a href="http://FeedHub.com">FeedHub</a> is dead. It&#8217;s been deceased for almost a year now. Their parent company <a href="http://www.mspoke.com/">mSpoke</a> shut the free news feed authority weighing system. I have replaced FeedHub with another free feed weighing service, <a href="http://www.postrank.com/">PostRank</a>. It&#8217;s not as convenient to use. All your feeds are not combined into one feed. If you have over one hundred feeds that you subscribe to, you will want to export an OPML file (collection of feed URLs) and import that file into your feed reader. You do however have the option within each feed to allow either all, good, great, or only the best ranked news feed articles.<span id="more-274"></span></p>
<p><em><strong>Original Article: </strong></em>Whether you believe that micro-blogging and syndication feeds provide too much information and makes us either <a href="http://www.theatlantic.com/doc/200807/google ">dumber</a> or <a href="http://www.theatlantic.com/doc/200907/intelligence">smarter</a>, information overload has been here for a while. Even though, Microsoft Internet Explorer has had an RSS button for two versions, I would say that syndication feeds are still not mainstream, yet highly valuable that you can feast on such a cornucopia of information without browsing to a single web page. Think of syndication as requested email (in juxtaposition to the majority of your Inbox, right?). If you are in the <a href="http://www.43folders.com/2007/11/27/sink-or-swim-managing-rss-feeds-better-groups">anal-retentive 43 folders crowd</a>, you&#8217;ve probably already have a syndication feed management process in place for two years. If you haven&#8217;t and the thought of having to browse through 100 new blog posts every day is overwhelming, I recommend <a href="http://www.feedhub.com/">FeedHub</a>.</p>
<p>I use FeedHub to provide me with the &#8220;most popular&#8221; blog posts from over 80 sources. As a web designer, I have a plethora of blogs to choose from. Some recommend if you don&#8217;t regularly get to read your feeds you have too many in your feed reader that you should <a href="http://unclutterer.com/2009/04/17/ask-unclutterer-managing-rss-feeds/">declare RSS bankruptcy</a> (similar to email bankruptcy). Another option is to create categories so that one category is for your &#8220;read all posts from these providers&#8221; and some is your &#8220;if I have time, read these posts.&#8221; I do not prefer this latter method, since I like a well-rounded mix of graphic design, programming (mostly front-end, but a little back-end), social media, blogging, and user interface posts. It is difficult to draw upon raw feeds to receive a variety of information. Some websites can be quite prolific. Do you really want to browse the headlines of all 23 posts from <a href="http://www.mashable.com/">Mashable</a> yesterday?  Probably not, unless you are one of the <a href="http://www.twellow.com/search?q=social+media">thousands of social media experts on Twitter</a>.</p>
<p><strong>What&#8217;s most popular?<br />
</strong></p>
<p>I mentioned above that FeedHub only provides the &#8220;most popular&#8221; blog posts. I don&#8217;t have the exact details&#8211;that would be similar to figuring out Google&#8217;s PageRank, but I know that you can set preferences for certain blog tags over others in order to customize your reading. You can also set that you want the articles with the most comments or links to them. It&#8217;s all part of a machine they call mSpoke.</p>
<p><strong>I like the idea. Where do I start?</strong></p>
<p>You can import <a href="http://www.interactivellama.com/blog/wp-content/uploads/2009/06/interactive-llama-feeds-2009-06.opml">an OPML of my &#8220;daily feeds&#8221;</a> (Right Click/Save As&#8230;) into FeedHub, if you think we would have similar tastes. My original list of blogs to read came from a computer science department of a university that I&#8217;ve now forgotten, and I&#8217;ve slowly added graphic design and social media oriented blogs. You can find a sample of my daily feed reads at the bottom of the Interactive Llama sidebar.</p>
<p><strong>Going forward</strong></p>
<p>For most of us, how connected we are is a lifestyle decision. You can always unplug to hike through the Canadian Rockies or to spend time with your children, unless your job mandates you reply to be &#8220;on call&#8221; and reply within five minutes. If you are in a creative, forward-thinking job (like a web designer at an agency) then, I highly recommend this hybrid of reading RSS feeds&#8211;but not too many, so that you are not overwhelmed, but do stay informed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/pruning-blog-posts-from-syndication-feeds-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project organization: A reasonable file framework</title>
		<link>http://www.interactivellama.com/blog/archives/project-organization-a-reasonable-file-framework/</link>
		<comments>http://www.interactivellama.com/blog/archives/project-organization-a-reasonable-file-framework/#comments</comments>
		<pubDate>Fri, 01 May 2009 20:00:31 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[OS-X]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[adobe creative suite]]></category>
		<category><![CDATA[file framework]]></category>
		<category><![CDATA[folder naming]]></category>
		<category><![CDATA[organization]]></category>
		<category><![CDATA[productivty]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web_developer]]></category>

		<guid isPermaLink="false">/blog/?p=169</guid>
		<description><![CDATA[The writer, Stewart O&#8217;Nan, once said &#8220;The two hardest things about writing are starting and not stopping.&#8221; Programming at its essentials is writing. When I&#8217;m wearing my web developer hat, it seems that I spend over a quarter of my time browsing around the OS-X Finder. So what better way to start programming then having [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-191" title="file-framework" src="/blog/wp-content/uploads/2009/03/file-framework.jpg" alt="file-framework" width="510" height="139" /></p>
<p>The writer, Stewart O&#8217;Nan, once said &#8220;The two hardest things about writing are starting and not stopping.&#8221; Programming at its essentials is writing. When I&#8217;m wearing my web developer hat, it seems that I spend over a quarter of my time browsing around the OS-X Finder. So what better way to start programming then having a file framework. Not only can you start more quickly, but your structure will stay consistent. Think of the last time you edited someone else&#8217;s project and that person placed all their files in one folder. <em>Oh, the horror!</em></p>
<p><strong>Introduction to my file framework</strong></p>
<p>The guiding principle for my file framework is:</p>
<blockquote><p>Either precisely title all files with hierarchical prefixes or create sub folders to categorize your files.</p></blockquote>
<p>With video projects and print projects that output to one file, file organization isn&#8217;t as essential. With web design, you do not want the files you publish getting mixed up with your source files. Yes, we all have at least once uploaded a 100MB Photoshop file to the online server and wondered why it was taking so long. This file framework focuses on web production and output.<span id="more-169"></span></p>
<p>Balance is key to file organization&#8211;it&#8217;s a means to an end. Besides SEO of a static web site or ease of future editing, most of the time your file organization isn&#8217;t going to impact the final product. I&#8217;ve seen both sides of the coin:</p>
<ul>
<li><em>Artistic Pilers:</em> one folder file organization where that person has taken the visual metaphor of the desktop a little too far, &#8220;creating a well-named folder is not very creative&#8221;</li>
<li><em>Obsessive Compulsive Filers</em><em>:</em> the overcompensation that there are too many files in a folder if you have to scroll or look for a file.</li>
</ul>
<p><strong>The source folder<br />
</strong></p>
<p>My source folder has an abbreviated name of the project. All the subfolders within my source folder start with an underscore. This is because under OS-X folders are not sorted first (this is very annoying!).</p>
<ul>
<li>__jobNumber: <em>(folder) </em>Sometimes I receive job numbers for my projects after I began them. If you don&#8217;t have the job number before you begin work, then do not place the job number in the name of the main folder. This will invalidate all linked files within the folder. Naming a sub folder with the job number will still allow a search for that job number. Remember, do not change the name of the project folder!</li>
<li>_copy: <em>(folder)</em> Place the Word Documents and the text files that you have created from them here. In general, you will want to create text documents before pasting copy into an HTML page to to rid yourself of the Word character encoding.</li>
<li>_flash: <em>(folder)</em> Place Adobe Flash files here (SWFs and FLAs) and move the finalized SWFs to the &#8220;live folder.&#8221; If you have many external file dependencies, it may be more productive to work with the source files in the &#8220;live folder.&#8221;</li>
<li>_flash_source: <em>(folder)</em> Place images and any files that your Flash files link to. If you keep all these linked files here, you can update them by overwriting the old files and clicking Update from within the Flash library.</li>
<li>_fromSuper: <em>(folder)</em> Place original layout files (such as Adobe Illustrator and Photoshop) from your creative director here. There have been too many times in the past that I&#8217;ve overwritten the original and had to ask for it again from my supervisor. Another option could be a _fromClient folder.</li>
<li>_layout: <em>(folder)</em> Place the edited layout files here, and take time to name these files correctly, so that you can refer to them later on.</li>
<li>_old: <em>(folder)</em> Place any files you want to keep, but don&#8217;t want to clutter up the other folders here</li>
<li>Notice to Future Designers: <em>(file)</em> If you want to tell future designers any important information, write a note here. Suggestions include your name and contact information and the path name to your working folder.</li>
</ul>
<p><strong>The live folder<br />
</strong></p>
<p>When working with web sites, your &#8220;live folder&#8221; will need to be in your local servers document folder.</p>
<ul>
<li>images: (folder) Place your graphics here. I recommend naming them close to the DOM of their usage</li>
<li>css: (folder) Place your IE hacks files, PNG fixes, and CSS files here</li>
<li>js: (folder) Place your JavaScript files here</li>
<li>index.html: (file) HTML template containing header information such as meta tags and structural markup such as frameworks/grids/wrappers</li>
</ul>
<p><strong>Current project folders</strong></p>
<p>You are going to want to get to these folders as fast as you possibly can. If you work on a Macintosh, place your source folder and your live folder on the left side of the Finder window. If you work on a Windows computer, place place your source folder and your live folder on the Start Bar or the Places Bar. On my Windows XP machine my Start Bar looks similar to the OS-X dock, since I have so many folder shortcuts (large icons) on it.</p>
<p><strong>In conclusion</strong></p>
<p>I hope these ideas better prepare you for starting new projects and increase your productivity by not placing all your files in one folder&#8211;while also not having to create the same folders when you begin your project or while you are in the middle of working. If you have more suggestions to add to this file framework, <a href="#respond">please respond below</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/project-organization-a-reasonable-file-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Package links for output: Illustrator collection script</title>
		<link>http://www.interactivellama.com/blog/archives/package-links-for-output-adobe-illustrator-collection-script/</link>
		<comments>http://www.interactivellama.com/blog/archives/package-links-for-output-adobe-illustrator-collection-script/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 20:20:55 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[collect for output]]></category>
		<category><![CDATA[productivty]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">/blog/?p=167</guid>
		<description><![CDATA[You have the option to embed images into Adobe Illustrator or to link them. If you embed them, then your file will be large (a 500MB AI file is an everyday occurrence in my work). The other is to link to the image file, but if you hand the file off to another person, the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-184" title="illustrator-collect-script" src="/blog/wp-content/uploads/2009/03/illustrator-collect-script.gif" alt="illustrator-collect-script" width="510" height="101" /></p>
<p>You have the option to <em>embed images</em> into Adobe Illustrator or <em>to link them</em>. If you embed them, then your file will be large (a 500MB AI file is an everyday occurrence in my work). The other is to link to the image file, but if you hand the file off to another person, the linked images will not be stored with it. One option to is to have a central repository located on a network for images. All new images are placed there. This can sometimes be cumbersome not to have a copy of the image on your local machine&#8211;consider image manipulations and having to manage file versions centrally. This script solves the problem of collecting linked images for output. This script collects external image links into a single &#8220;Links&#8221; folder. You can then give that folder and the subsequent source file (AI) to another person and the external links will work.<span id="more-167"></span></p>
<p>Hopefully, you are not using Adobe Illustrator source files (AI) to pre-press print work, but if you are this will aid in collecting linked images for that purpose too.</p>
<p><strong>Caveats</strong></p>
<p>This script does not collect fonts or other files, only images. If your image is within an opacity mask this script will not be able to find it. Illustrator Package Script has been tested on Adobe Illustrator CS2 and Adobe Illustrator CS3 only.</p>
<p>I did not write this script. This script was written by Pavel Rassadin. You can download the original source for this <a href="http://mf36.narod.ru/files/Package.zip">Illustrator Package Script</a> from his website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/package-links-for-output-adobe-illustrator-collection-script/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to create a Twitter book reading list</title>
		<link>http://www.interactivellama.com/blog/archives/how-to-create-twitter-book-reading-list-amazon-wishlist-yahoo-pipes-rss-feed/</link>
		<comments>http://www.interactivellama.com/blog/archives/how-to-create-twitter-book-reading-list-amazon-wishlist-yahoo-pipes-rss-feed/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 18:46:43 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[Social Networks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[micro-blogging]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[reading list]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[social_network]]></category>
		<category><![CDATA[tweet]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">/blog/?p=151</guid>
		<description><![CDATA[I enjoy reading books. Most of the time, I read non-fiction. I don&#8217;t have anything against fiction. My wife reads fiction, but it&#8217;s not my cup of tea, unless its a classic. Whatever you read, you would probably like to share it with your friends. Now it&#8217;s easy. With these steps you can tweet about [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-153 alignleft" title="twitter-reading-list" src="/blog/wp-content/uploads/2009/02/twitter-reading-list.gif" alt="twitter-reading-list" width="233" height="156" /> I enjoy reading books. Most of the time, I read non-fiction. I don&#8217;t have anything against fiction. My wife reads fiction, but it&#8217;s not my cup of tea, unless its a classic. Whatever you read, you would probably like to share it with your friends. Now it&#8217;s easy. With these steps you can tweet about your latest book by simply adding the book to an Amazon Wishlist. No figuring out how much of the title you can post within the 140 character limit. No creating a TinyURL for the Amazon product page. A few hours later your twitter account will tweet your book addition!<span id="more-151"></span></p>
<p><strong>Amazon WishList to RSS feed</strong></p>
<p>To create my WordPress Reading List and my Twitter Reading List, I start with an Amazon Wishlist. Why? Because I (and probably you) read the largest list of book reviews, before you either buy the book or go to pick it up from the library. So now using my <a href="http://pipes.yahoo.com/pipes/pipe.info?_id=9d73ba552398cb835e2cf1de47599ad7">Amazon Wishlist to RSS Pipe</a> you have an RSS feed of your Reading list.</p>
<p><strong>RSS feed to Twitter tweet</strong></p>
<p>At first, I was dismayed when I heard about <a href="http://twitterfeed.com/">TwitterFeed</a>.  My gut reaction was: What idiot would place a bot within their feed? The whole point of Twitter is to have one on one personal interaction with actual people. Recently, I&#8217;ve been moving away from that view. Bots are helpful if not over-used. I update <a href="http://www.amazon.com/gp/registry/wishlist/3O81AFRHPVBBX/">my book reading list: Stephen M James: Books (Planning or have read)</a> just a few times a month. Not enough to make my followers annoyed. After all, reading books is a part of my online persona that I&#8217;d like to share. In order implement your own Twitter Reading List:</p>
<ol>
<li>Visit Yahoo! Pipes and clone Amazon Wishlist to RSS Pipe and enter your settings into it.</li>
<li>Publish your pipe and copy the URL of the RSS feed.</li>
<li>Log into TwitterFeed (you will have to share your Twitter credentials with TwitterFeed) and create a TwitterFeed from your Pipe RSS</li>
<li>Add your book reading list into an Amazon wishlist.</li>
</ol>
<p>For your TwitterFeed prefix I recommend &#8220;Will read #book soon: &#8221; so that your tweet will end up in the <a href="http://search.twitter.com/search?q=%23book">hash tag twitter search for #book</a>. You have a maximum of 20 characters for the prefix, so make it worth it. Twitterfeed will shorten the name of the book and add a tinyURL to the end that links to the Amazon page (hopefully with your affiliate tag&#8211;although you are more than welcome to use mine!) You might be interested in my post, <a href="/blog/archives/reading-list-wordpress-amazon-wish-list-with-yahoo-pipes-rss/">Create a reading list in WordPress from Amazon Wish List using Yahoo! Pipes</a>,  It&#8217;s about using pipes to create an RSS from an Amazon Wishlist and pulling your reading list into WordPress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/how-to-create-twitter-book-reading-list-amazon-wishlist-yahoo-pipes-rss-feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gallery2 titles and keywords search engine optimization script</title>
		<link>http://www.interactivellama.com/blog/archives/gallery2-titles-and-keywords-search-engine-optimization-script/</link>
		<comments>http://www.interactivellama.com/blog/archives/gallery2-titles-and-keywords-search-engine-optimization-script/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 15:01:01 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[gallery2]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[photograph]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">/blog/?p=137</guid>
		<description><![CDATA[If you are interested in the open-source image gallery web application, Gallery, you have probably read the Thirteen Ways To Add SEO To Gallery2. If you haven’t, then read that tutorial first. Within that tutorial, I mention a bulk renaming script that I have used for years with Gallery2 to change titles and keywords. This [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="float: left;" src="/blog/wp-content/uploads/2009/01/gallery2-logo.jpg" alt="" width="230" height="150" />If you are interested in the open-source image gallery web application, <a href="http://gallery.menalto.com/">Gallery</a>, you have probably read the <a href="http://gallery.menalto.com/node/70008">Thirteen Ways To Add SEO To Gallery2</a>. If you haven’t, then read that tutorial first. Within that tutorial, I mention a bulk renaming script that I have used for years with Gallery2 to change titles and keywords. This post is about that title and keyword generating bulk script. It removes some common naming conventions from the titles and removes common words from the keyword list. Do people really want to see all the photographs that contain the articles, &#8220;a,&#8221; &#8220;an&#8221; and &#8220;the.&#8221; I certainly wouldn&#8217;t.</p>
<p>The default title for Gallery2 item uploads is the file name of the image. It easier to name your files well from the beginning from the safety of either than edit the URL, titles, and keywords for your item after they are uploaded. My naming convention for a file name is photo_set-photo_subset-people_or_objects. For a photo of my parents, my bride and myself at my wedding, I used &#8220;wedding-party-parents-rachel-stephen.jpg&#8221;<span id="more-137"></span></p>
<p>When creating titles this script does the following via regular expressions:</p>
<ul>
<li>Removes &#8216;copy&#8217; (a common OS-X filename suffix)</li>
<li>Removes underscores at beginning</li>
<li>Removes underscores at end</li>
<li>Removes double underscores</li>
<li>Removes left and right parenthesis</li>
<li>Removes all single digit numbers and letters</li>
<li>Replaces underscores and hyphens with space</li>
</ul>
<p>When creating keywords from titles, this script removes the following common words and inserts commas between the remaining words:</p>
<blockquote><p>a, about, above, across, act, add, after, again, against, all, along, also, amid, among, an, and, any, are, around, as, at, back, be, been, before, behind, below, beneath, beside, besides, between, beyond, but, by, came, can, cause, change, close, come, concerning, considering, could, cover, cross, despite, did, differ, do, does, down, draw, during, each, even, every, except, excepting, excluding, far, few, find, follow, following, for, found, four, from, get, give, go, grow, had, hard, has, have, he, her, here, high, him, his, how, if, in, inside, into, is, it, just, keep, know, large, last, late, left, let, like, little, long, look, made, make, many, may, might, minus, more, most, move, much, must, my, near, never, no, now, of, off, on, one, only, onto, opposite, or, other, our, out, outside, over, own, part, past, per, plus, put, regarding, right, said, same, saw, say, see, self, set, she, should, side, small, so, some, still, such, take, tell, than, that, the, their, them, then, there, these, they, thing, this, three, through, to, too, toward, towards, try, two, under, underneath, unlike, until, up, upon, us, use, versus, very, via, want, was, way, we, went, were, what, when, where, which, while, who, why, will, with, within, without, would, you, your</p></blockquote>
<p><strong>Usage</strong></p>
<p>You can either edit the setup variables in the script or use URL variables (such as &#8220;?field=g_keywords&amp;begin_id=3000&#8243;). That example would insert keywords (test insert, not commit) based on the titles of all items after item 3000.</p>
<p><strong>Requirements</strong></p>
<ul>
<li>Some familiarity with the PHP language</li>
<li>Login credentials: server, username, database name, password</li>
<li>Item ID to begin with (default is 0, that is &#8220;all items&#8221;)</li>
<li>If you want to change my default title word removal listed above, familiarity with regular expressions</li>
</ul>
<p>Download <a href="/blog/wp-content/uploads/2009/01/gallery-seo-titles-keywords-smjdesign.txt">Gallery2 titles and keywords SEO script</a></p>
<p><em>NOTE: You will need to rename the &#8220;.txt&#8221; file to &#8220;.php&#8221; in order to run it on your server. Also this script will edit not only item names, but also albums. I&#8217;ve included copious comments in this script to aid in customizing it to your needs.<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/gallery2-titles-and-keywords-search-engine-optimization-script/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSSsprite: Photoshop script combines two images for CSS hover</title>
		<link>http://www.interactivellama.com/blog/archives/photoshop-script-combine-two-images-css-hover-css-sprite/</link>
		<comments>http://www.interactivellama.com/blog/archives/photoshop-script-combine-two-images-css-hover-css-sprite/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 20:48:41 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[actions]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">/blog/?p=132</guid>
		<description><![CDATA[The need Professional web developers have been aware of CSS sprites or CSS rollovers/hovers since 2004 (The rollover term is taken from JavaScript and the hover term is taken from CSS). They are the background graphics that change position based on mouse hover thus eliminating the need for JavaScript image swaps and image caching since [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-135" title="csssprites_before" src="/blog/wp-content/uploads/2008/11/csssprites_before-300x123.jpg" alt="" width="300" height="123" /></p>
<p><img class="alignnone size-medium wp-image-136" title="csssprites_after" src="/blog/wp-content/uploads/2008/11/csssprites_after-300x132.jpg" alt="" width="300" height="132" /></p>
<p><strong>The need<br />
</strong></p>
<p>Professional web developers have been aware of <a href="http://www.alistapart.com/articles/sprites/">CSS sprites</a> or CSS rollovers/hovers since 2004 (The rollover term is taken from JavaScript and the hover term is taken from CSS).  They are the background graphics that change position based on mouse hover thus eliminating the need for JavaScript image swaps and image caching since the &#8220;mouse on&#8221; and &#8220;mouse off&#8221; are one image. I have been using sprites for years. It is a more tedious process than clicking Swap image on a DreamWeaver drop down menu, but it produces more accessible and more clean code. The most tedious part of creating CSS sprites for menu navigation is aligning the static (in-active) and hover (active) images. This script solves this problem by taking two images and merging them into one. I hope this increases your productivity and creates a more standards-compliant web.</p>
<p><span id="more-132"></span></p>
<p>There are <a href="http://spritegen.website-performance.org/">online CSS sprite generators</a> out there. My Photoshop script is not as remarkable as these 20 image sprites, but it’s much simpler, and you can assign a keyboard shortcut to it. Also, all my sites are designed in Illustrator which is a slightly different work flow than most. I find that Photoshop is an awful layout program.</p>
<p><a href="/blog/wp-content/uploads/2008/11/CSSsprite.jsx">Download CSSsprite.jsx</a></p>
<p><strong>Installation<br />
</strong></p>
<p>A JSX script is similar to a Photoshop plugin or an action, but are commands in Photoshop&#8217;s JavaScript based script interface. Download and copy this script within the Presets&gt;&gt;Scripts folder of your Photoshop application folder:</p>
<ul>
<li>OS-X: Macintosh HD/Applications/Adobe Photoshop CS3/Presets/Scripts/</li>
<li>Windows: Program Files/Photoshop CS/Presets/Scripts</li>
</ul>
<p>The Script will appear under File&gt;&gt;Scripts&gt;&gt;CSSsprite on the menu. You can assign a keyboard shortcut to this script. I prefer Control+Command+S. This shortcut fits well with the Save for Web shortcut, Command+Alt+Shift+S.</p>
<p><strong>Usage<br />
</strong></p>
<p>Open two files (and <em>only</em> two files) with the same height and width (if they are different sizes, the offset of your hover button state will not be half of the height). Select the non-hover background image, making it active&#8211;thus making the hover background image de-active. Run the script from the Scripts menu mentioned above. This will place the hover background image on the bottom of the sprite. This script does not support adding a third state to the sprite, but you could add a third <em>and</em> fourth state. To do this, first combine the third and fourth state, and then combine that image with the normal/hover sprite.</p>
<p><strong>For your information: States for this script</strong></p>
<p>The following is a list of Photoshop commands that are executed in this script:</p>
<ul>
<li>Convert Image Mode to RGB</li>
<li>Make horizontal guide at 100% of canvas height</li>
<li>Switch to inactive document (-1 in document array)</li>
<li>&#8220;Duplicate Layer. . .&#8221; Layer Menu via right click</li>
<li>Switch back to inactive document (+1 in document array)</li>
<li>Double canvas size vertically</li>
<li>Transform/Move top layer down (50% of canvas size)</li>
<li>Zoom In (twice)</li>
</ul>
<p><strong>Result<br />
</strong>This gives you a two-layered Photoshop file with second layer the CSS hover layer. Save the file as GIF, PNG, or JPEG using File&gt;&gt;Save for Web.</p>
<p><strong>Notes<br />
</strong>Adobe Photoshop JavaScript is the only cross-platform scripting language for Photoshop. <em>This script was only tested Photoshop CS3 Extended (Mac)</em>. Our firm does not use Photoshop for web layout&#8211;only for image manipulation. We use Illustrator for layout.</p>
<p>I would like to thank the creators of <a href="http://blogs.adobe.com/crawlspace/2006/05/installing_and_1.html">ScriptingListenerJS</a> and <a href="http://ps-scripts.cvs.sourceforge.net/viewvc/ps-scripts/xtools/xapps/">ActionToJavaScript</a>.</p>
<p>You may be interested in this <a href="http://arnaumarch.com/en/sprites.html">PhotoShop script that creates a sprite from all the images in a folder</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/photoshop-script-combine-two-images-css-hover-css-sprite/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Secondary Browser: I&#8217;ve been using Chrome for months</title>
		<link>http://www.interactivellama.com/blog/archives/secondary-browser-ive-been-using-chrome-for-months/</link>
		<comments>http://www.interactivellama.com/blog/archives/secondary-browser-ive-been-using-chrome-for-months/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 19:29:06 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[web applications]]></category>

		<guid isPermaLink="false">/blog/?p=130</guid>
		<description><![CDATA[This isn&#8217;t about Chrome, for me it&#8217;s really about using a second browser. A second browser to only use for web applications. Honestly, I admit I haven&#8217;t been using Google Chrome for months now. I&#8217;ve been using Safari. It is my understanding that Google&#8217;s Chrome browser uses WebKit as it&#8217;s rendering engine with the advantage [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-131" title="google-chrome-safari" src="/blog/wp-content/uploads/2008/09/google-chrome-safari.gif" alt="" width="280" height="140" />This isn&#8217;t about Chrome, for me it&#8217;s really about using a second browser. A second browser to only use for web applications. Honestly, I admit I haven&#8217;t been using Google Chrome for months now. I&#8217;ve been using Safari. It is my understanding that <a href="http://www.google.com/chrome">Google&#8217;s Chrome</a> browser uses <a href="http://www.webkit.org/">WebKit</a> as it&#8217;s rendering engine with the advantage of starting each window/tab in a separate process (which Internet Explorer 8b2 also does) to increase stability. The general idea is if your Google Docs crashes, then your Gmail doesn&#8217;t crash&#8211;just how desktop applications work. Your web applications are sand-boxed and protected from other web pages. Safari/WebKit/Chrome: What&#8217;s the difference?<span id="more-130"></span></p>
<p><strong>My secondary browser: Safari<br />
</strong></p>
<p>For over six months now, I&#8217;ve been running my web applications in Safari on my Mac at work and my PC at home (yes, you did read that correctly, Mac at work and PC at home!). I run Gmail, GDocs, Remember The Milk, and others within Safari while I use FireFox to browse the web. I have keyboard shortcuts that run safari.exe/safari.app with the URL of the service I want to use. I can&#8217;t imagine browsing the web without Web Developer, FireBug, Google Toolbar, spell checking and RSS feeds of specific tags of my delicious bookmarks as a LiveBookmark. It would be as if I want back to using Internet Explorer or something.</p>
<p>When Safari for Windows became available in early 2008, I decided to try it. It was fast, but I hated the interface (especially the dimming of the page when you try to Find a word). The interface was too minimalistic. If I wanted less crap on my browser window, I&#8217;d hit F11, thank you very much. What&#8217;s a fast loading, standards compliant, minimal interface browser good for? You guessed it: <em>WebApps! </em>I use<em> </em>Safari for my web applications.</p>
<p><strong>Water-logged about logging in</strong></p>
<p>One of the annoying aspects of web applications is authentication, you have to login. Things become even more annoying if you use multiple accounts. Anyone have more one Gmail account? Thought so.</p>
<p><em>Everyday scenario:</em> I log into my secondary Gmail account that I send my <a href="/blog/archives/features-and-characteristics-of-a-great-404-error-page/">WordPress web sites 404 errors to</a> and new mail pops up from Gmail Notifier in Growl. I click the email and it launches my &#8220;primary web browser.&#8221; In this case it&#8217;s FireFox, and I&#8217;m already logged into Gmail with my secondary account. What happens? FireFox goes to my seconfary account&#8217;s Inbox. I have to log out and re-login in order to view my new email! Using a second browser that is only logged into my primary account solves this probem.</p>
<p><strong>Advantages of using a separate browser for web applications</strong></p>
<ul>
<li>It&#8217;s sand-boxed: Your browsing of other pages won&#8217;t crash browser and thus deleted the email to your mother</li>
<li>It&#8217;s fast: WebKit renders HTML faster than Gecko (Mozilla)</li>
<li>You&#8217;re primary user account is not logged out, it is always there when you need it.</li>
</ul>
<p><strong>Shrugging Chrome</strong></p>
<p>I shrugged when Google announces its Chrome browser this week, I&#8217;ve practically been using it for months now. However, I look forward to see where this goes and will value any increase in performance and productivity a Google browser will give me when using their web applications as well as others.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/secondary-browser-ive-been-using-chrome-for-months/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create reading list in WordPress from Amazon Wish List using Yahoo! Pipes</title>
		<link>http://www.interactivellama.com/blog/archives/reading-list-wordpress-amazon-wish-list-with-yahoo-pipes-rss/</link>
		<comments>http://www.interactivellama.com/blog/archives/reading-list-wordpress-amazon-wish-list-with-yahoo-pipes-rss/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 19:18:04 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[Social Networks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[amazon book]]></category>
		<category><![CDATA[amazon wish list]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[plug ins]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[reading list]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[yahoo pipes]]></category>

		<guid isPermaLink="false">/blog/?p=127</guid>
		<description><![CDATA[I read many books from the library. I don&#8217;t finished reading many books though. First of all, they are free, since they are from the library, and second my attention span doesn&#8217;t last that long. I believe browsing the web daily from age 14 (circa 1996) will do that to someone (read the latest cover [...]]]></description>
			<content:encoded><![CDATA[<p>I read many books from the library. I don&#8217;t finished reading many books though. First of all, they are free, since they are from the library, and second my attention span doesn&#8217;t last that long. I believe browsing the web daily from age 14 (circa 1996) will do that to someone (read the latest cover story in The Atlantic Monthly, is <a href="http://www.theatlantic.com/doc/200807/google">Google Making Us Stoopid</a>). Most of the books I read come from the magazines I read (<a href="http://www.theatlantic.com/">The Atlantic</a>, <a href="http://www.christianitytoday.com/books/">Books &amp; Culture: A Christian Review</a>) or from the podcasts I listen to (<a href="http://www.wamu.org/programs/dr/">Diane Rehm</a>, <a href="http://www.twit.tv/">This Week in Tech</a>).</p>
<p>Either way, I want to share my latest reading endeavors across my blogs. But how?<span id="more-127"></span></p>
<p>Originally I used Roblog&#8217;s WordPress Plugin, <a href="http://robm.me.uk/projects/plugins/wordpress/now-reading">Now Reading</a>, It&#8217;s truly a great plug-in. You can search Amazon for your book and grab the information. It has <em>Now Reading</em>, <em>Have Read</em> and <em>Planned Reading</em> sections. You can rate your books and write reviews. I discovered early on that I was not interested in writing reviews of the books. The other drawback was that it was locked into one blog. I placed it my Cultured Media blog where I list the podcasts and media that I listen to. I wanted to place my current reading in the sidebar or the footer of all my blogs&#8211;and why stop there? Why not Facebook, too? The other problem is that I didn&#8217;t want to search for the name of the book on Amazon, then log into my blog and paste the name into Now Reading to add it.</p>
<p>Portable list of information that can be subscribed to from multiple locations? Sounds like RSS feeds to me. I found an Amazon Wish List import for <a href="http://www.pipes.yahoo.com/">Yahoo! Pipes</a>. It did an XML look-up on any public wish list and then published the information you wanted. I cloned it to my Pipes page, and soon found out it was an old version of Amazon Web Services. After a few hours spent parsing, the new version 4 web services offering from Amazon, I was good to go.</p>
<p>The limitation of my <a href="http://pipes.yahoo.com/pipes/pipe.info?_id=9d73ba552398cb835e2cf1de47599ad7">Amazon-Yahoo! Pipes RSS lookup</a> is that you can only grab one page of items at a time. This isn&#8217;t a problem for my use. I didn&#8217;t want more than 10 items anyway.</p>
<p>Once, you have your pipes set up, then use <a href="http://rawlinson.us/blog/articles/feedlist-plugin/">FeedList</a> to display your RSS feed from Yahoo! Pipes. An example of this is at the bottom of my blog. When I want to update my reading list, I add an item to my <a href="http://www.amazon.com/gp/registry/wishlist/3O81AFRHPVBBX/">Amazon Wish List</a>. And there&#8217;s nothing to limit this process to books. Whatever you add your Amazon Wish List will show up in the feed&#8211;not only books.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/reading-list-wordpress-amazon-wish-list-with-yahoo-pipes-rss/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Recommended WordPress plugins</title>
		<link>http://www.interactivellama.com/blog/archives/recommended-great-review-wordpress-plugins-anti-spam-fight-tags-twitter-tools/</link>
		<comments>http://www.interactivellama.com/blog/archives/recommended-great-review-wordpress-plugins-anti-spam-fight-tags-twitter-tools/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 17:42:01 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[plug ins]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[trackbacks]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">/blog/?p=123</guid>
		<description><![CDATA[If you&#8217;ve been around WordPress for more than six months, most of the following plug-ins should be familiar to you. In case you haven&#8217;t heard of any them, I highly recommend all of them. I&#8217;m not a fan of widgets (too-limiting), since I create websites for a living. I&#8217;ve divided them into Anti-Spam, Category/Tag, and [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve been around WordPress for more than six months, most of the following plug-ins should be familiar to you. In case you haven&#8217;t heard of any them, I highly recommend all of them. I&#8217;m not a fan of widgets (too-limiting), since I create websites for a living. I&#8217;ve divided them into Anti-Spam, Category/Tag, and Additional Content. If you are not <a href="http://wordpress.org/extend/plugins/wp-super-cache/">caching your blog</a>, remember, don&#8217;t install too many plug-ins.<span id="more-123"></span></p>
<p><strong>Anti-Spam Plugins</strong></p>
<p><a href="http://sw-guide.de/wordpress/plugins/math-comment-spam-protection/">Math Comment Spam Protection</a></p>
<p>This plugin asks an additional question after a commentors name and email to prove that the commentor is human and not a comment spam bot. I currently have my websites set up to say &#8220;Enter numeral for the sum of two and nine. (e.g. 10).&#8221; There many other types of capcha&#8217;s but this is my favorite since, it doesn&#8217;t involve titlting your head sideways and reading backwards!</p>
<p><a href="http://sw-guide.de/wordpress/plugins/simple-trackback-validation/">Simple Trackback Validation</a></p>
<p>This plugin scans any page that tries to add a trackback to your blog. If the link to your website does not exist, the trackback link is ignored. With modern blogs using pingbacks instead of trackbacks, you may want to disable trackbacks completely.</p>
<p><strong>Category/Tag Plugins</strong></p>
<p><a href="http://wordpress.org/extend/plugins/simple-tags">Simple Tags</a></p>
<p>This plugin allows mass-editing of tags, and it can remove unused tags.</p>
<p><a href="http://robm.me.uk/projects/plugins/wordpress/batch-categories/">Batch Categories</a></p>
<p>With the advent of tags, many bloggers do not categorize their posts as strictly as they used to. This plugin allows mass-editing of categories. If you have many categories and need to move posts between categories, use this plugin.</p>
<p><strong>Additional Content Plugins</strong></p>
<p><a href="http://www.dagondesign.com/articles/sitemap-generator-plugin-for-wordpress/">Dagon Design Sitemap Generator</a></p>
<p>This plugin creates a sitemap for users (not a XML sitemap for search engines) that lists all posts and pages by category. You can use multiple pages, but I prefer only one page.</p>
<p><a href="http://alexking.org/projects/wordpress/">Popularity Contes</a></p>
<p>This plugin is great for listing the &#8220;most touched&#8221; posts. By &#8220;most touched,&#8221; I mean that views, RSS views, commenting and more statistics are used and weighted to decided which posts are most popular. It&#8217;s half science, half meta-science, since items on your home page will be viewed more than items that aren&#8217;t on your home page.</p>
<p><a href="http://rawlinson.us/blog/articles/feedlist-plugin/">FeedList</a><br />
You can create your own feed reader with the classes and code that come with WordPress (function wp_rss). This plug-in just makes it easier. I use FeedList to place my <a href="http://www.smjdesign.com/rachelandstephen/archives/category/sidenotes/">RSS feed from Twitter</a> on all my sites and to place a <a href="#footer">list of the books I am now reading</a> in the footer of my blogs.</p>
<p><a href="http://fairyfish.net/2007/09/12/wordpress-23-related-posts-plugin/">WP Related Posts</a><br />
This plugin lists posts that have the same tags as the current post. It suggests to readers other posts they might be interested in.</p>
<p><a href="http://katesgasis.com/2005/10/24/sideblog/">Sideblog WordPress Plugin</a><br />
This plugin allows you highlight a post category to always be in the sidebar (for example, Tweets via Twitter Tools if you do not want to use Twitter Tool&#8217;s widget). This plug-in is used in the sidebar of <a href="http://www.smjdesign.com/rachelandstephen/">RachelandStephen</a>.</p>
<p><a href="http://alexking.org/projects/wordpress">Twitter Tools</a><br />
It took me a while to &#8220;get&#8221; Twitter. For me, Twitter is a subscription-based public chatroom. You pick who you want to interrupt your day. As someone who doesn&#8217;t post to his blogs that frequently, Twitter allows me to keep my website fresh with micro-blogging. This plug-in is used with SideBlog in the sidebar of <a href="http://www.smjdesign.com/rachelandstephen/">RachelandStephen</a>. I have a tutorial on how I prefer to use <a href="/blog/archives/ignore-direct-tweets-and-seo-urls-with-twitter-tools-wordpress-plug-in/">Twitter Tools in my sidebar</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/recommended-great-review-wordpress-plugins-anti-spam-fight-tags-twitter-tools/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

