<?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>wax ideal &#187; clients</title>
	<atom:link href="http://waxideal.com/blog/category/clients/feed/" rel="self" type="application/rss+xml" />
	<link>http://waxideal.com/blog</link>
	<description>learning to be human, since 1984</description>
	<lastBuildDate>Thu, 12 Apr 2012 19:49:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>User Testing Websites</title>
		<link>http://waxideal.com/blog/2011/06/21/user-testing-websites/</link>
		<comments>http://waxideal.com/blog/2011/06/21/user-testing-websites/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 21:56:04 +0000</pubDate>
		<dc:creator>sarandi</dc:creator>
				<category><![CDATA[clients]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[user testing]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://waxideal.com/blog/?p=630</guid>
		<description><![CDATA[A few user testing websites &#8211; know of any others? http://www.loop11.com/pricing/ http://www.optimalworkshop.com/chalkmark.htm http://www.usertesting.com/ http://www.userzoom.com/]]></description>
			<content:encoded><![CDATA[<p>A few user testing websites &#8211; know of any others?</p>
<p><a href="http://www.loop11.com/pricing/" target="_blank">http://www.loop11.com/pricing/</a><br />
<a href="http://www.optimalworkshop.com/chalkmark.htm" target="_blank">http://www.optimalworkshop.com/chalkmark.htm</a><br />
<a href="http://www.usertesting.com/" target="_blank">http://www.usertesting.com/</a><br />
<a href="http://www.userzoom.com/" target="_blank">http://www.userzoom.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://waxideal.com/blog/2011/06/21/user-testing-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to trigger a jQuery Plugin (fancybox) if URL match</title>
		<link>http://waxideal.com/blog/2011/06/16/how-to-trigger-a-jquery-plugin-fancybox-if-url-match/</link>
		<comments>http://waxideal.com/blog/2011/06/16/how-to-trigger-a-jquery-plugin-fancybox-if-url-match/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 21:42:05 +0000</pubDate>
		<dc:creator>sarandi</dc:creator>
				<category><![CDATA[clients]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[html/xhmtl]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://waxideal.com/blog/?p=626</guid>
		<description><![CDATA[I currently work for a venue &#8211; often times we have shows with multiple acts, so we need to list set times for each artist. Easy enough: I can write a modal-type pop-up window using fancybox that opens when the user clicks a link (&#8220;DJ Showtimes here&#8220;, for example). But say you want to send [...]]]></description>
			<content:encoded><![CDATA[<p>I currently work for a venue &#8211; often times we have shows with multiple acts, so we need to list set times for each artist. Easy enough: I can write a modal-type pop-up window using fancybox that opens when the user clicks a link (&#8220;DJ Showtimes <span style="text-decoration: underline;">here</span>&#8220;, for example). But say you want to send an email that links to that list? Since most email clients, web- or desktop-based, don&#8217;t allow javascript, I needed to trigger the click based on the URL. Here&#8217;s my solution (using a custom jQuery function to avoid conflicts with other libraries in use):</p>
<pre><code>
$j('#various2').fancybox({'hideOnContentClick': true, 'hideOnOverlayClick': true, 'showCloseButton': true, 'scrolling': 'auto'}); /* use id of link for fancybox selector */</code></pre>
<pre><code>/* necessary to set if-statement within page ready or load event */
</code></pre>
<pre><code>$j(document).ready(function() {
if(document.location.href.indexOf('#various2')&gt;-1){ /* check for anchor text in URL */
$j('#various2').fancybox().trigger('click'); /* chain click trigger on to previously written fancybox declaration */
}});
$j('#fancybox-wrap').css({'margin':'20px auto'}) /* set css for wrapper; safari was centering the inline element to the position of the #various2 element, which was at the top of the page. This resets to 20px top/bottom and in the middle horizontally */</code></pre>
<p>My link looks like this:</p>
<pre><code><a id="various2" href="#data">DJ Set Times Here</a></code></pre>
<p>and my content is wrapped with:</p>
<pre><code>
<div id="data">CONTENT HERE</div>

</code></pre>
<p>Easy, peasy.</p>
]]></content:encoded>
			<wfw:commentRss>http://waxideal.com/blog/2011/06/16/how-to-trigger-a-jquery-plugin-fancybox-if-url-match/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Using Windows 7 Symlinks</title>
		<link>http://waxideal.com/blog/2010/03/29/using-windows-7-symlinks/</link>
		<comments>http://waxideal.com/blog/2010/03/29/using-windows-7-symlinks/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 05:19:40 +0000</pubDate>
		<dc:creator>sarandi</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[document storage]]></category>
		<category><![CDATA[organization]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://waxideal.com/blog/?p=469</guid>
		<description><![CDATA[I ran into a problem with integrating my web development/design projects on my computer with my local webserver. To further explain: I keep all my professional work, including client files, on a separate hard drive partition so that I can easily and regularly back them up, let&#8217;s call it g:\ Client files for web projects [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into a problem with integrating my web development/design projects on my computer with my local webserver. To further explain:</p>
<ul>
<li>I keep all my professional work, including client files, on a separate hard drive partition so that I can easily and regularly back them up, let&#8217;s call it g:\</li>
<li>Client files for web projects are organized as such: g:\clients\client-name\project-name , so that if a long-term client wants a site redesign, I can easily keep these separate rather than dumping them into a single public_html directory for each client</li>
<li>My local testing server is pointed at a different partition, let&#8217;s call it h:\</li>
<li>I want to be able to serve individual projects via the testing server, but only work on the project files</li>
</ul>
<p>Naturally, I thought of unix aliases but I&#8217;m currently running Windows 7 so I tried shortcuts. Didn&#8217;t work. After a little digging, I found the solution: symlinks (which work in numerous OSes &#8211; thanks for the correction). From the command line, type:</p>
<pre>mklink /D H:\target\directory\linkname G:\clients\client-name\project-name</pre>
<p>mklink /D creates a symlink, or a soft link that is the Windows equivalent to unix aliases. The first argument is the directory where you want the link to be placed, and the second is the source directory. Easy as pie.</p>
<p>Be careful when deleting/writing content &#8211; the linked directory allows you to manipulate the original file!</p>
]]></content:encoded>
			<wfw:commentRss>http://waxideal.com/blog/2010/03/29/using-windows-7-symlinks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Workhorse Typefaces</title>
		<link>http://waxideal.com/blog/2009/02/22/workhorse-typefaces/</link>
		<comments>http://waxideal.com/blog/2009/02/22/workhorse-typefaces/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 17:50:15 +0000</pubDate>
		<dc:creator>sarandi</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://waxideal.com/blog/?p=311</guid>
		<description><![CDATA[Paula Scher, Stefan Sagmeister, and David Carson shattered the way I think about typography in their applications of organic, freehand character-writing. For so long, even non–conventional applications of digital typefaces seemed so dry, formal, forced. Letters drawn by hand were a fresh breath—no, a gasp! out of astonishment, but also for oxygen anew to fuel [...]]]></description>
			<content:encoded><![CDATA[<p>Paula Scher, Stefan Sagmeister, and David Carson shattered the way I think about typography in their applications of organic, freehand character-writing. For so long, even non–conventional applications of digital typefaces seemed so dry, formal, forced. Letters drawn by hand were a fresh breath—no, a gasp!  out of astonishment, but also for oxygen anew to fuel my little typographic grey cells.</p>
<p>Such typography, one comes quickly to realize, doesn&#8217;t suit all applications. In fact, it doesn&#8217;t suit most applications. The majority of typesetting isn&#8217;t done to draw attention to the text, but rather to make its characters melt their meaning with as little distraction as possible. It pays to know this—especially when that pay is coming from a client expecting your understanding of conventional typography to benefit her business.</p>
<p>That stated, listed below are the typefaces I most commonly employ. I use them for their stylistic range, completeness of character set, and most importantly, as a framework from which I can branch out and build more creativity—perhaps by employing or creating an entirely new typeface. No more delays. Here they are:</p>
<ul>
<li>ITC Garamond Std</li>
<li>ITC New Baskerville Std</li>
<li>Mrs. Eaves</li>
<li>Futura Std</li>
<li>Trade Gothic LT Std</li>
<li>Helvetica Neue LT Std</li>
</ul>
<p>I&#8217;d say I use these for 80% of the work I do. Other typefaces I might consider are listed below. Some are either related or variations of the faces above. Others are slowly building up to workhorse status, or are used in extremely specific instances.</p>
<ul>
<li>Adobe Garamond Pro</li>
<li>Adobe Jenson Pro</li>
<li>Avenir LT Std</li>
<li>Univers LT Std</li>
<li>Bodoni STD</li>
<li>Frutiger</li>
<li>Gill Sans</li>
<li>Helvetica LT Std</li>
<li>ITC Franklin Gothic Std</li>
<li>Poetica</li>
<li>Gotham HTF</li>
</ul>
<p>What are your typographic workhorses?</p>
]]></content:encoded>
			<wfw:commentRss>http://waxideal.com/blog/2009/02/22/workhorse-typefaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing Drupal</title>
		<link>http://waxideal.com/blog/2008/12/28/choosing-drupal/</link>
		<comments>http://waxideal.com/blog/2008/12/28/choosing-drupal/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 20:56:52 +0000</pubDate>
		<dc:creator>sarandi</dc:creator>
				<category><![CDATA[clients]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[organization]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://waxideal.com/blog/?p=264</guid>
		<description><![CDATA[While designing and developing websites, I&#8217;ve run into a lot of repetitive tasks. From client survey and project proposal, to information architecture issues, requisite files (jQuery, mootools, reset.css, etc.), standard grid templates in XHTML/CSS, to grid layers and naming conventions in Illustrator® documents, and client invoicing, there are a lot of processes that get repeated. [...]]]></description>
			<content:encoded><![CDATA[<p>While designing and developing websites, I&#8217;ve run into a lot of repetitive tasks. From client survey and project proposal, to information architecture issues, requisite files (jQuery, mootools, reset.css, etc.), standard grid templates in XHTML/CSS, to grid layers and naming conventions in Illustrator<span style="font-size:xx-small; vertical-align:top;">®</span> documents, and client invoicing, there are a lot of processes that get repeated.</p>
<p><span id="more-264"></span>Those processes are like a clingy partner in a relationship: important, but annoying. Luckily for design, a lot of them can be streamlined to take less time. Unfortunately, most clingy partners get canned. I streamline my process by using templates, standard documents, and content management systems. It&#8217;s that last one that this post is about.</p>
<p>After a long hesitation and with much thought, I&#8217;ve decided on a CMS to drive larger client sites, as well as sites that have the distinct potential to scale significantly larger. That CMS is Drupal, and here&#8217;s why:</p>
<ul>
<li>open source/license</li>
<li>awesome development community</li>
<li>awesome scalability, with throttling options for high bandwidth</li>
<li>highly extensible through modules/hooks/api including functionality for:
<ul>
<li>blogging</li>
<li>wiki/taxonomy/hierarchy</li>
<li>forums</li>
</ul>
</li>
<li>both CMS and CMF (Content Management Framework)</li>
<li>integrates jQuery natively</li>
<li>scalable</li>
<li>themability</li>
<li>session control</li>
</ul>
<p>Here are some of the sites that brought me to this decision:</p>
<ul>
<li>http://www-128.ibm.com/developerworks/ibm/library/i-osource1/index.html?ca=drs-#N1024A</li>
<li>http://www.packtpub.com/article/2008-open-source-cms-award-winner-announced</li>
<li>http://www.youtube.com/watch?v=sfrfuCLH9sg&amp;feature=related</li>
<li>http://www.drupal.org</li>
<li>http://dc2009.drupalcon.org/</li>
</ul>
<p>I still plan on designing and developing for WordPress—but only for smaller and more static sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://waxideal.com/blog/2008/12/28/choosing-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

