<?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>Unstandardized Design</title>
	<atom:link href="http://design.unstandardized.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://design.unstandardized.com</link>
	<description>Simple, Powerful, Beautiful Websites.</description>
	<pubDate>Fri, 06 May 2011 16:12:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Command Line PHP Memory Limits</title>
		<link>http://design.unstandardized.com/command-line-php-memory-limits/</link>
		<comments>http://design.unstandardized.com/command-line-php-memory-limits/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 22:29:57 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Blog]]></category>

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

		<guid isPermaLink="false">http://design.unstandardized.com/?p=167</guid>
		<description><![CDATA[I was writing a script today that was too big to run as a normal web process, when I started to bump up against some PHP memory limit issues.  Basically, I was writing a large CSV file.  The php.ini file was out of reach (this was on a shared account), and I needed to up [...]]]></description>
			<content:encoded><![CDATA[<p>I was writing a script today that was too big to run as a normal web process, when I started to bump up against some PHP memory limit issues.  Basically, I was writing a large CSV file.  The php.ini file was out of reach (this was on a shared account), and I needed to up the Memory Limit for PHP&#8230; what to do?</p>
<p>This!</p>
<pre class="bash">php <span>-d</span> <span>memory_limit</span>=128M my_script.php</pre>
]]></content:encoded>
			<wfw:commentRss>http://design.unstandardized.com/command-line-php-memory-limits/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I </title>
		<link>http://design.unstandardized.com/i/</link>
		<comments>http://design.unstandardized.com/i/#comments</comments>
		<pubDate>Mon, 31 May 2010 17:39:50 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Blog]]></category>

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

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

		<guid isPermaLink="false">http://design.unstandardized.com/?p=163</guid>
		<description><![CDATA[Ok, I&#8217;ve just started using Drush on my latest project a few days ago.  And I LOVE IT.
This is how easy it is to download a module:
drush dl &#60;module_name&#62;
And this is how easy it is to install that module:
drush en &#60;module_name&#62;
What used to take me at least 2 minutes (download the module, unpack it, upload [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, I&#8217;ve just started using Drush on my latest project a few days ago.  And I LOVE IT.</p>
<p>This is how easy it is to download a module:</p>
<p><strong>drush dl &lt;module_name&gt;</strong></p>
<p>And this is how easy it is to install that module:</p>
<p><strong>drush en &lt;module_name&gt;</strong></p>
<p>What used to take me at least 2 minutes (download the module, unpack it, upload it to sites/all/modules, enable it), now takes literally 10 seconds.  It&#8217;s developer heaven.</p>
<p>But wait, it gets better - I just performed my first update of all of my site&#8217;s modules to their latest versions.  It took 1 minute.  Here is what I did:</p>
<p><strong>drush pm-update</strong></p>
<p>That&#8217;s it.  Are you kidding me!??!  The 1 minute was spent waiting for drush to do it&#8217;s thing (gather modules that needed updates, updating them, and then running the database update script).  AMAZING!</p>
<p>I &lt;3 Drush!</p>
]]></content:encoded>
			<wfw:commentRss>http://design.unstandardized.com/i/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rendering a View from code in Drupal 6</title>
		<link>http://design.unstandardized.com/rendering-a-view-from-code-in-drupal-6/</link>
		<comments>http://design.unstandardized.com/rendering-a-view-from-code-in-drupal-6/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 14:58:33 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Blog]]></category>

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

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

		<guid isPermaLink="false">http://design.unstandardized.com/?p=160</guid>
		<description><![CDATA[This is the type of thing that is I always forget how to do, so I figured it would make a good blog post, both for me, and for anyone else searching for this info online.
Here is the situation: I&#8217;ve got a page in Drupal that I am rendering from code for some reason (in [...]]]></description>
			<content:encoded><![CDATA[<p>This is the type of thing that is I always forget how to do, so I figured it would make a good blog post, both for me, and for anyone else searching for this info online.</p>
<p>Here is the situation: I&#8217;ve got a page in Drupal that I am rendering from code for some reason (in my current case, I&#8217;m using theme files to alter the output of a View, and I want to include another View within each row).  It sure would be nice to know how to load up and display a View within my code.  Here is how:</p>
<p><code><br />
<?php<br />
$view_args = array(); // place any arguments here<br />
$display_id = 'panel_pane_1'; // the name of the display to load<br />
$view = views_get_view('view_name'); // get our view<br />
if (!empty($view)) {<br />
  $content = $view->execute_display($display_id, $view_args);<br />
  print $content['content'];<br />
}<br />
?><br />
</code></p>
<p>Nice!  Now the view will show up just where I want it!  If you have questions, post a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://design.unstandardized.com/rendering-a-view-from-code-in-drupal-6/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Drupal Mission Statement</title>
		<link>http://design.unstandardized.com/drupal-mission-statement/</link>
		<comments>http://design.unstandardized.com/drupal-mission-statement/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 16:40:57 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Blog]]></category>

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

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

		<guid isPermaLink="false">http://design.unstandardized.com/?p=158</guid>
		<description><![CDATA[For the longest time, I thought that there was a bug in Panels.  Why?  Because I would add the Mission statement to panels, and it wouldn&#8217;t show up.  Well, guess what?  There is no bug!
For some reason (probably legacy code), Drupal makes the assumption that you would only want to show your mission statement on [...]]]></description>
			<content:encoded><![CDATA[<p>For the longest time, I thought that there was a bug in Panels.  Why?  Because I would add the Mission statement to panels, and it wouldn&#8217;t show up.  Well, guess what?  There is no bug!</p>
<p>For some reason (probably legacy code), Drupal makes the assumption that you would only want to show your mission statement on the front page of your website.  So, the PHP Template engine removes the $mission variable from your page.tpl.php file if the front page is not being displayed.  But&#8230; fear not!  I&#8217;ve found a solution courtesy of <a href="http://www.kinetasystems.com/blog/quick-theme-tip-abusing-drupals-mission-variable">Kineta Systems blog</a>:</p>
<p><code><br />
<?php<br />
// populate the $mission variable on every page so we can use it universally<br />
  // don't check <front>, it&#8217;s already handled in phptemplate.engine</p>
<p>  if (!$vars['is_front']) {<br />
    $vars['mission'] = filter_xss_admin(theme_get_setting(&#8217;mission&#8217;));<br />
  }<br />
?><br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://design.unstandardized.com/drupal-mission-statement/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Grouping, Views, and Drupal</title>
		<link>http://design.unstandardized.com/grouping-views-and-drupal/</link>
		<comments>http://design.unstandardized.com/grouping-views-and-drupal/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 19:33:10 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Blog]]></category>

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

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

		<guid isPermaLink="false">http://design.unstandardized.com/?p=156</guid>
		<description><![CDATA[Wow, I&#8217;ve been searching for a simple way to create a Grouped list in Drupal for a long time, and now I&#8217;ve finally found the way.
But first, what is a grouped list?  Let&#8217;s pretend that you want to have&#8230; oh I don&#8217;t know&#8230; a schedule of upcoming events that people can register for on your [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, I&#8217;ve been searching for a simple way to create a Grouped list in Drupal for a long time, and now I&#8217;ve finally found the way.</p>
<p>But first, what is a grouped list?  Let&#8217;s pretend that you want to have&#8230; oh I don&#8217;t know&#8230; a schedule of upcoming events that people can register for on your website.  One easy and Drupal-friendly way to create this is to just make a View, and have it list the content on your site that represents the Events.  Straight forward enough, and anyone who has any Drupal experience can do that quickly.</p>
<p>Now your client wants to be able to customize the display a bit, and they want to show a list of the month like this:</p>
<p>March 2010</p>
<ul>
<li>This is my event for March 2010.  3/12/10 - 3/14/10</li>
<li>This is my second event for March 2010. 3/22/10 - 3/24/10</li>
</ul>
<p>April 2010</p>
<ul>
<li>April Fools Day.  4/1/10</li>
<li>etc.</li>
</ul>
<p>Until today, I thought I was going to have to rewrite the output of the View and do this the hard way.  Now, I know that Drupal can do the heavy lifting for me&#8230; I love me some Drupal!</p>
<p>Without further ado: <a href="http://drupal.org/node/388140">Create a Views event list grouped by months</a></p>
]]></content:encoded>
			<wfw:commentRss>http://design.unstandardized.com/grouping-views-and-drupal/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sitting On The Porch</title>
		<link>http://design.unstandardized.com/sitting-on-the-porch/</link>
		<comments>http://design.unstandardized.com/sitting-on-the-porch/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 00:35:43 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

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

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

		<guid isPermaLink="false">http://design.unstandardized.com/?p=151</guid>
		<description><![CDATA[

[image]/wp-content/uploads/2009/07/frontporchbedandbreakfastcom.jpg[/image]
[company]The Front Porch[/company]
[link]http://www.frontporchbnb.com[/link]
[date]April, 2009[/date]
[work]XHTML/CSS, Video Training, Wordpress-based[/work]
[description]
The Front Porch Bed &#38; Breakfast needed a simple website that they could keep up-to-date themselves, without having to call someone and wait for help.  Cue the music: Unstandardized Design to the rescue!
Using a custom design, Unstandardized Design crafted a custom theme for Wordpress, the popular open-source blogging software. [...]]]></description>
			<content:encoded><![CDATA[<div>
<div>
<p>[image]/wp-content/uploads/2009/07/frontporchbedandbreakfastcom.jpg[/image]<br />
[company]The Front Porch[/company]<br />
[link]http://www.frontporchbnb.com[/link]<br />
[date]April, 2009[/date]<br />
[work]XHTML/CSS, Video Training, Wordpress-based[/work]<br />
[description]</p>
<p>The Front Porch Bed &amp; Breakfast needed a simple website that they could keep up-to-date themselves, without having to call someone and wait for help.  Cue the music: Unstandardized Design to the rescue!</p>
<p>Using a custom design, Unstandardized Design crafted a custom theme for Wordpress, the popular open-source blogging software.  Now the caretakers of The Front Porch can update pictures, text, and links on their site thanks to the easy-to-understand training provided at <a href="http://videos.unstandardized.com">videos.unstandardized.com</a>.</p>
<p>[/description]</p></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://design.unstandardized.com/sitting-on-the-porch/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Useful Web Development Links</title>
		<link>http://design.unstandardized.com/useful-web-development-links/</link>
		<comments>http://design.unstandardized.com/useful-web-development-links/#comments</comments>
		<pubDate>Sun, 24 May 2009 00:01:58 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Blog]]></category>

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

		<guid isPermaLink="false">http://design.unstandardized.com/?p=148</guid>
		<description><![CDATA[Encounter problem.  Search Google.  Solve problem.  Repeat.
That&#8217;s what being a Web Developer is all about.  So, in this post I&#8217;m going to catalogue useful links that I run into while solving problems.  Enjoy!

A good guide to cron.  You know you forget how to do it manually, it&#8217;s ok to admit it.

]]></description>
			<content:encoded><![CDATA[<p>Encounter problem.  Search Google.  Solve problem.  Repeat.</p>
<p>That&#8217;s what being a Web Developer is all about.  So, in this post I&#8217;m going to catalogue useful links that I run into while solving problems.  Enjoy!<span id="more-148"></span></p>
<ol>
<li>A good <a href="http://www.linuxhelp.net/guides/cron/">guide to cron</a>.  You know you forget how to do it manually, it&#8217;s ok to admit it.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://design.unstandardized.com/useful-web-development-links/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Useful Photoshop Hints</title>
		<link>http://design.unstandardized.com/useful-photoshop-hints/</link>
		<comments>http://design.unstandardized.com/useful-photoshop-hints/#comments</comments>
		<pubDate>Wed, 20 May 2009 15:26:08 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Blog]]></category>

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

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

		<guid isPermaLink="false">http://design.unstandardized.com/?p=143</guid>
		<description><![CDATA[I&#8217;m no photoshop wiz, but I&#8217;ve got some skills that I enjoy honing every now and then.  This post will serve as a list of useful photoshop resources I&#8217;ve found on the web, with an emphasis on specific tasks and how to do them.

How to quickly add curved corners to a photo.

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m no photoshop wiz, but I&#8217;ve got some skills that I enjoy honing every now and then.  This post will serve as a list of useful photoshop resources I&#8217;ve found on the web, with an emphasis on specific tasks and how to do them.<span id="more-143"></span></p>
<ol>
<li><a href="http://matthom.com/archive/2004/09/10/fast-rounded-corners-in-photoshop">How to quickly add curved corners to a photo</a>.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://design.unstandardized.com/useful-photoshop-hints/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I just wrote my first job description</title>
		<link>http://design.unstandardized.com/i-just-wrote-my-first-job-description/</link>
		<comments>http://design.unstandardized.com/i-just-wrote-my-first-job-description/#comments</comments>
		<pubDate>Fri, 08 May 2009 16:31:38 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Blog]]></category>

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

		<guid isPermaLink="false">http://design.unstandardized.com/?p=139</guid>
		<description><![CDATA[Things have been busy around here lately at Unstandardized Design.  Between new clients, existing clients, and large projects free time has felt a little bit hard to come by for the past few weeks.  Looking at the expected growth in the company, its become clear that the time to expand is now!
So, just yesterday I [...]]]></description>
			<content:encoded><![CDATA[<p>Things have been busy around here lately at Unstandardized Design.  Between new clients, existing clients, and large projects free time has felt a little bit hard to come by for the past few weeks.  Looking at the expected growth in the company, its become clear that the time to expand is now!<span id="more-139"></span></p>
<p>So, just yesterday I wrote my first job description for my own business.  I&#8217;m looking for a part time web developer/designer (or two) that have the desire to learn by doing.  I&#8217;ve got an ad running (I think) at the University of Maryland.  Here is what I wrote:</p>
<blockquote>
<div>Web Development Internship</div>
<div><span>What is it?</span></div>
<div>Work part-time from home as a Web Developer!  You will work on both large, on-going projects (such as <a href="http://professionalbaseballtraining.com/" target="_blank">professionalbaseballtraining.com</a>), and small-scale, quick turnaround projects.  You will have the chance to learn both how the web business works, and the skills necessary to succeed in a competitive environment.  Technical skills are necessary, but the desire to learn on the job is most important.  We will meet in person several times a month (we are located in Silver Spring), although most communication will be done online (email, IM, etc).</div>
<div>  </div>
<div><span>Required Skills:</span></div>
<div>
<ul>
<li>Intermediate knowledge of CSS/XHTML (Can you turn a web design into a web page?)</li>
<li>Intermediate knowledge of PHP (Can you make a contact form send me an email?)</li>
<li>Basic knowledge of MySQL (Can you fetch some data?)</li>
<li>Basic computer skills (Can you slice up a PSD?  Can you un-tar a file?  Upload a file via ftp?)</li>
</ul>
<div><span>Bonus Skills:</span></div>
<div>
<ul>
<li>Any Photoshop/Illustrator skills are a huge bonus, but definitely NOT required.</li>
<li>Server admin skills - can you SSH into a Linux server, wget a file, and untar it?  Good!</li>
<li>Javascript frameworks - do you know what jQuery is?  Do you love it so much that sometimes you lie awake at night thinking about it?</li>
<li>Experience working with Drupal is a BIG plus (most of our large sites are Drupal based).</li>
<li>Wordpress experience is also a plus, even just having your own Wordpress-based blog would be beneficial.</li>
</ul>
<div>Pay will usually done on an hourly basis, although for some work you will be paid on a per-project basis.  Your rate will be based on your ability - the less that we have to fix, the more you are worth.</div>
<div>We encourage people who want to learn, as well as those that think they have some serious skills.</div>
</div>
</div>
</blockquote>
<div>I&#8217;ll be sure to write more about the process of actually hiring somebody in the coming weeks.  Exciting times!</div>
]]></content:encoded>
			<wfw:commentRss>http://design.unstandardized.com/i-just-wrote-my-first-job-description/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Combine Multiple PDFs</title>
		<link>http://design.unstandardized.com/combine-multiple-pdfs/</link>
		<comments>http://design.unstandardized.com/combine-multiple-pdfs/#comments</comments>
		<pubDate>Tue, 05 May 2009 02:24:21 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Blog]]></category>

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

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

		<guid isPermaLink="false">http://design.unstandardized.com/?p=137</guid>
		<description><![CDATA[It&#8217;s amazing - some things should be easy&#8230; and aren&#8217;t.  For instance, why did I have to spend 30 minutes figuring out how to combine multiple PDFs into a single file?  If the file extension stands for Portable Document Format, you&#8217;d figure it would be easy to deal with.  Well, it&#8217;s not.  But here is [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s amazing - some things should be easy&#8230; and aren&#8217;t.  For instance, why did I have to spend 30 minutes figuring out how to combine multiple PDFs into a single file?  If the file extension stands for Portable Document Format, you&#8217;d figure it would be easy to deal with.  Well, it&#8217;s not.  But here is how to join PDF files in Windows XP.<span id="more-137"></span>First, download <a href="http://www.accesspdf.com/article.php/20041130153545577">PDFTK via its homepage</a>.  Make sure you get the one for Windows XP!</p>
<p>Now unzip the file that you just downloaded, and put pdftk.exe into c:\windows\system32.  I know, it seems shady, but its not.  We do this so that at the command prompt (yes, the command prompt, that dark and scary place) you can just type &#8220;pdftk&#8221; and something will happen.  Just trust me on this one.</p>
<p>Finally, open up the command prompt (Start -&gt; Run -&gt; command) and type &#8220;pdftk &#8211;help&#8221;.  This will spit out a bunch of help text, including some great examples.  I put all of the pdf files I wanted to in a folder, and named them 01.pdf, 02.pdf, etc, then I typed &#8220;pdftk *.pdf cat output combined.pdf&#8221; (minus the quotes, of course).  After a few seconds, I had combined.pdf created!  Huzzah!</p>
<p>Anyone out there got a better method?</p>
]]></content:encoded>
			<wfw:commentRss>http://design.unstandardized.com/combine-multiple-pdfs/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
