<?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>Gosdot &#187; design</title>
	<atom:link href="http://gosdot.com/unity/tag/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://gosdot.com/unity</link>
	<description>ux, data, design</description>
	<lastBuildDate>Sat, 22 May 2010 22:17:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress 2.7 Arrives</title>
		<link>http://gosdot.com/unity/2008/12/04/wordpress-27-arrives/</link>
		<comments>http://gosdot.com/unity/2008/12/04/wordpress-27-arrives/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 07:04:04 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://gosdot.com/unity/2008/12/04/wordpress-27-arrives/</guid>
		<description><![CDATA[Wordpress continues to evolve with the release of 2.7 to the public on Thursday, December 4, 2008 at 8pm Eastern Time. That’s 5pm Thursday in California, 1am Friday in London (UTC), 8am Friday in Jakarta, noon on Friday in Sydney and so on. For a quick rundown of all the new features and updates visit [...]]]></description>
			<content:encoded><![CDATA[<p>Wordpress continues to evolve with the release of 2.7 to the public on Thursday, December 4, 2008 at 8pm Eastern Time. That’s 5pm Thursday in California, 1am Friday in London (UTC), 8am Friday in Jakarta, noon on Friday in Sydney <a href="http://www.timeanddate.com/worldclock/fixedtime.html?year=2008&amp;month=12&amp;day=5&amp;hour=1&amp;min=0&amp;sec=0">and so on.</a> For a quick rundown of all the new features and updates visit <a href="http://en.blog.wordpress.com/2008/12/03/27-gets-here-in-two-days/">Wordpress Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gosdot.com/unity/2008/12/04/wordpress-27-arrives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hacking Wordpress When You’ve Forgotten Your Password</title>
		<link>http://gosdot.com/unity/2008/12/02/hacking-wordpress-when-you%e2%80%99ve-forgotten-your-password/</link>
		<comments>http://gosdot.com/unity/2008/12/02/hacking-wordpress-when-you%e2%80%99ve-forgotten-your-password/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 11:18:17 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://gosdot.com/unity/2008/12/02/hacking-wordpress-when-you%e2%80%99ve-forgotten-your-password/</guid>
		<description><![CDATA[Do you have multiple Wordpress self-hosted blogs? If so, you&#8217;ve likely run into a scenario where you just can&#8217;t remember the password to one. With Wordpress 2.5 and beyond there&#8217;s an annoying bug that sometimes generates passwords that don&#8217;t work when you click the &#8220;Forgot Password&#8221; option. Usually that button generates a query that will [...]]]></description>
			<content:encoded><![CDATA[<p>Do you have multiple Wordpress self-hosted blogs? If so, you&#8217;ve likely run into a scenario where you just can&#8217;t remember the password to one. With Wordpress 2.5 and beyond there&#8217;s an annoying bug that sometimes generates passwords that <strong>don&#8217;t work</strong> when you click the &#8220;Forgot Password&#8221; option. Usually that button generates a query that will send an email with a temporary password that allows you to reset your password to whatever you wish. The bug in 2.5 will still do that but when you click on the link that should allow you to reset your password, nothing happens.</p>
<p>Actually something does happen, Wordpress resets the password internally (in the MySQL database) but the link that it sent you to activate that password fails to connect with the database effectively locking you out of your blog. In this scenario, at least for me, all the potentially viable solutions lead to dead ends.</p>
<p>Although it should&#8217;ve, launching the database manager to reset the password manually didn&#8217;t work. I tried doing this in various ways including <a href="http://codex.wordpress.org/Resetting_Your_Password#Through_phpMyAdmin">this method</a> from Codex, <a href="http://www.watchingthenet.com/webmaster-tip-recover-wordpress-password.html">this one</a> from Watching The Net and <a href="http://anirudhsanjeev.org/reset-your-local-wordpress-password-easily/">this one</a> from Thought Outflux. But none of them worked!</p>
<p>Opening up <strong>wp-config.php</strong> and trying to reset the password there didn&#8217;t work there either.</p>
<p>I was at a loss as to what to do. That is until I found the <a href="http://www.village-idiot.org/archives/2007/05/22/wp-emergency-password-recovery/">Village Idiot Emergency Password Recovery</a> software. Using it is simple:</p>
<ul>
<li>Download the script from Village Idiot WordPress Emergency Password Script.</li>
<li>Unpack the downloaded zip file.</li>
<li>Upload the file emergency.php to the root of your WordPress installation (the same directory that contains wp-config.php).</li>
<li>In your browser, open http://example.com/emergency.php.</li>
<li>As instructed, enter the administrator username (usually admin) and the new password, then click Update Options. A message is displayed noting the changed password. An email is sent to the blog administrator with the changed password information.</li>
<li>Delete emergency.php from your server when you are done. Do not leave it on your server as someone else could use it to change your password.</li>
</ul>
<p>For whatever reason this worked flawlessly where the other methods failed and I was able to regain access to my wordpress blog and set the password to something I&#8217;ll (hopefully) never forget again. I&#8217;m not ruling out operator error on the other methods but the aptly titled Village Idiot software makes the process <i>fool-proof</i>.</p>
<p><strong>Note:</strong> Keep in mind that all of these options will only work if you are the site administrator or have direct access to the server at which the blog is hosted.</p>
<p><sup>Look familiar? I originally published this article as a writer for <a href="http://www.developertutorials.com/blog/wordpress-blog/hacking-wordpress-when-youve-forgotten-your-password-177/">DeveloperTutorials</a></sup></p>
]]></content:encoded>
			<wfw:commentRss>http://gosdot.com/unity/2008/12/02/hacking-wordpress-when-you%e2%80%99ve-forgotten-your-password/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Web Based Workflow: Tale of The $0 Studio!</title>
		<link>http://gosdot.com/unity/2008/02/19/web-based-workflow-tale-of-the-0-studio/</link>
		<comments>http://gosdot.com/unity/2008/02/19/web-based-workflow-tale-of-the-0-studio/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 11:37:20 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[alternative]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://gosdot.com/unity/2008/02/19/web-based-workflow-tale-of-the-0-studio/</guid>
		<description><![CDATA[In the past few years we&#8217;ve seen an explosion of free, web and open source alternatives to popular, often expensive, design programs.  I recently raided my del.icio.us to round up all the $0 overhead design resources that I use on a daily basis. With this workflow it&#8217;s all pure profit!
Before I begin, this list [...]]]></description>
			<content:encoded><![CDATA[<p>In the past few years we&#8217;ve seen an explosion of free, web and open source alternatives to popular, often expensive, design programs.  I recently raided my <a href="http://del.icio.us/jongos">del.icio.us</a> to round up all the $0 overhead design resources that I use on a daily basis. With this workflow it&#8217;s all pure profit!</p>
<p>Before I begin, this list is not meant to be comprehensive, it&#8217;s meant to show you my workflow and how it makes me money by saving me boatloads on software.  For a more comprehensive list of all the things out there you may want to try <a href="http://www.snap2objects.com/2007/06/06/85-killer-resources-every-designer-should-know/">this post</a>&#8230;</p>
<hr />
<h2>ONLINE WEB DESIGN</h2>
<p><b>1. Wordpress Theme Generators</b><br />
One Request I get from a lot of clients is for custom Wordpress Templates.  <a href="http://templatr.cc/">TemplatR</a> and Yvo Schaap&#8217;s <a href="http://www.yvoschaap.com/wpthemegen/">Wordpress Theme Generator</a> both offer quick WYSIWYG options for designing themes.  Depending on your skill level you can create themes from the very basic to the very complex.  I tend to use these sites for the basic skeleton of a good Wordpress Theme.  Since I&#8217;m fairly knowledgeable of xml, I&#8217;ll go in and tweak my layouts on the client&#8217;s server. </p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://farm3.static.flickr.com/2214/2276896802_21db68c53e.jpg"><img style="cursor:pointer; cursor:hand;width: 200px;" src="http://farm3.static.flickr.com/2214/2276896802_21db68c53e.jpg" border="0" alt="" /></a></p>
<p>These fantastic tools have helped me build a very elaborate portfolio of Wordpress ready &#8217;sketches&#8217; in a very short period of time. They&#8217;ve also helped me understand the inner workings of Wordpress as I can see how each produces themes differently.</p>
<p><b>2. Rounded Corners</b><br />
One question every designer this millennium has been asked is &#8220;Can you put rounded corners on my blog?&#8221;  You might already know how to do that using CSS but in the case that you don&#8217;t, try some of the following links: <a href="http://www.spiffycorners.com/">Spiffycorners</a>, <a href="http://wigflip.com/cornershop/">Cornershop</a>, <a href="http://www.roundedcornr.com/">Roundedcornr</a>, and <a href="http://www.curvycorners.net/">Curvycorners</a>.  While there are plenty more sites that offer similar tools, these are the four that I use most.</p>
<p><b>3. HTML Templates</b><br />
Why design from scratch when you can draw inspiration from the work of others?  As long as you credit the creator, there&#8217;s nothing wrong with using web templates and modifying them.  The problem most people have is when someone doesn&#8217;t chage a thing and tries to pass a design as their own work.  That said, there is a huge movement of &#8216;open source web designers&#8217; offering up their code to the masses.  Among them <a href="http://www.templateworld.com/free_templates.html" title="template world" >TemplateWorld</a>, <a href="http://www.openwebdesign.org/" title="open web design" >Open Web Design</a>, and <a href="http://www.oswd.org/" tile="open source web design" >Open Source Web Design</a> are my favorites.  Most of these designs can usually be easily ported over to your favorite CMS with a little work and coding on your part.</p>
<p><b>4. Validation</b><br />
Once you&#8217;ve finished that new web-created website you&#8217;ll need to validate it to make sure your code is well formated and browser universal.  Although I tend to use <a href="http://chrispederick.com/work/web-developer/" title="web developer for firefox">this extension</a> for Firefox, if you&#8217;re going to validate online use <a href="http://validator.w3.org/" title="check your markup" >Validator.W3.Org</a> or some of these other W3 <a href="http://www.w3.org/QA/Tools/#validators" title="W3 Validation">validation tools</a>.</p>
<h2>WEB BASED GRAPHIC DESIGN TOOLS</h2>
<p><b>1. Fonts</b><br />
For the most part I use two sites solely for my font needs: <a href="http://dafont.com">Dafont</a> and <a href="http://whatthefont.com">WhatThefont</a>.</p>
<p><b>2. Vectors/Illustrations</b><br />
Sites like <a href="http://vecteezy.com" title="free vector files">Vecteezy</a> and <a href="http://vectorstock.com" title="download vectors">VectorStock</a> offer hundreds of free vector images for your graphic design needs.  Got a picture or logo you need converted into a vector?  Use the entirely awesome <a href="http://vectormagic.stanford.edu/" title="make vectors online">VectorMagic</a>!  I couldn&#8217;t find any useful online Vector applications but these open source alternatives are <a href="http://www.osalt.com/illustrator">free alternatives</a> to Adobe Illustrator or Corel Draw.  Try out <a href="http://www.osalt.com/xara-lx">Xara</a>, <a href="http://www.osalt.com/inkscape">Inkscape</a> and <a href="http://www.osalt.com/skencil">Skencil</a>.  The platform based <a href="http://www.synfig.com/" title="open source vectoring" >Synfig</a> might be worth looking at.</p>
<p><b>3. Stock Photography</b><br />
Ofcourse every design studio needs a good library of stock photography.  Personally I use FlickR for just about everything, making sure I click &#8220;Advanced Search&#8221; and selecting the right options to find photographers who are graciously freeing up their work to the public.  If I do use work from Flickr, I always send the author a quick note letting them know where it&#8217;s being used and for what purpose.  </p>
<p><a href="http://www.flickr.com/photos/ww4f/2276916882/"><img src="http://farm3.static.flickr.com/2226/2276916882_976c8749b4_m.jpg"></a></p>
<p>There are literally <span style="font-weight:bold;">hundreds</span> of photo-sharing websites these days.  Of them, <a href="http://www.sxc.hu/" title="stock exchange" >Stock Exchange</a>, <a href="http://www.dreamstime.com/" title="download stock photography" >Dreamstime</a>,<a href="http://www.stockvault.net/" title="free stock photos" >Stockvault</a> and <a href="http://www.imageafter.com/">ImageAfter</a> the ones I tend to frequent for free work.  Of course, there are plenty more sites when you&#8217;re ready to pay but for now we&#8217;re pretending we don&#8217;t have a dime to spend. <b>NOTE:</b> when using these sites make sure that you pay attention to Attribution and CC Licensing.  Just because it&#8217;s free for you to use in some cases doesn&#8217;t mean it&#8217;s free in ALL cases!  When in doubt, consult the owner directly.</p>
<p><b>4. Stock Icons</b><br />
My favorite tools for stock Icons are <a href="http://www.famfamfam.com/">FamFamFam</a>, <a href="http://www.freeiconsweb.com/" title="free icons">FreeIconsWeb</a>, <a href="http://iconfactory.com/home">IconFactory</a> and <a href="http://www.pixelgirlpresents.com/">PixelGirl</a></p>
<p><img src="http://mediakey.dk/%7Ecc/wp-content/uploads/2006/09/famfamfam_silk_icons.png" alt="famfamfam"></p>
<h2>ONLINE MOTION GRAPHICS, AUDIO, ANIMATION and VIDEO</h2>
<p><b>1. Java</b><br />
If you read my blog on any kind of regular basis you&#8217;ll know that <a href="http://processing.org/">Proce55ing</a> is my favorite tool for visual and interactive programming. You can create anything in proce55ing from Web Apps to 3d Animation, to interactive media.  All of your processing sketches can also be exported as Java applets and embedded into any web page.  Take a look at some of the amazing things you can do in in Processing <a href="http://processing.org/exhibition/" title="processing sketches"  A>here</a>.  Read more about the project <a href="http://processing.org/faq.html" title="processing" >here</a>.</p>
<p><b>2. Web Based Flash Resources</b><br />
There aren&#8217;t really any good web based alternatives to Adobe Flash but if you&#8217;re going for rich media development I would have to reccomend <a href="http://www.osalt.com/openlaszlo">Open Laszlo</a>.  There&#8217;s also a number of sites that give a away FLV files like <a href="http://flashvillage.com" title="download flv, fla, swf files" >FlashVillage</a> and <a href="http://flashmo.com" title="free flash files" >FlashMo</a>.</p>
<p><b>3. Audio</b><br />
No one&#8217;s come up with the web equivalent of Digidesign&#8217;s ProTools or Apple&#8217;s Logic Pro yet but there are some great free, open source options.  My favorite (as a longtime Protools HD user) is the impeccable <a href="http://ardour.org/">Ardour</a>.  If you don&#8217;t need the complex features of a professional application go with the more basic open source solutions <a href="http://audacity.sourceforge.net/">Audacity</a> or <a href="http://www.wavosaur.com/">Wavosaur</a>. All Macs come with Garageband so you&#8217;re somewhat covered there.</p>
<p><b>4. Web Based Video Editing</b><br />
My web based solution for editing video is <a href="http://www.jumpcut.com/" title="edit video online">JumpCut</a>.  The desktop based open source alternative I use is <a href="http://www.osalt.com/cinelerra" title="open source video editor" >Cinelerra</a>.  Both are good for editing client footage or creating quick video spots for a page. </p>
<p><b>5. Animation</b><br />
<a href="http://www.synfig.com/" title="open source vectoring" >Synfig</a> and <a href="http://processing.org/">Proce55ing</a> can both be used to achieve Flash-like vector animation or 3D Modeling.</p>
<h2>EDITING ON THE WEB</h2>
<p><b>1. Online Image Editors</b><br />
<a href="http://www.fauxto.com/">Fauxto</a> is a web image editor that attempts to rival Gimp and Photoshop in it&#8217;s complexity and functionality.  It&#8217;s out of control.  <a href="http://www.picnik.com/">Picnik</a> is the one I actually use the most because it&#8217;s quick and integrates well with Flickr. Ones that I haven&#8217;t tried but keep hearing about are <a href="http://www.pxn8.com/" title="PXN8 for Online Image Editing" >Pxn8</a> and <a href="http://www.splashup.com/" title="SplashUp a Photoshop Alternative" >SplashUp</a>.</p>
<p><b>2. Online HTML Editor</b><br />
Occasionally you&#8217;ll want to edit HTML online as well.  I like <a href="http://www.fckeditor.net/">FCK Editor</a>, <a href="http://htmledit.squarefree.com/">Squarefree</a> and  <a href="http://www.w3schools.com/html/tryit.asp?filename=tryhtml_basic">W3 Schools</a> </p>
<h2>FREE WEB STORAGE</h2>
<p><b>1. Storing Images Online</b><br />
One thing that you may be wondering is where I store all the files that I work with online.  Images I usually store on Flickr where I deeplink them (this is apparently against the Flickr/Yahoo TOS so don&#8217;t get caught!).  I store everything on Flickr from photos, to logos, banners etc.  It&#8217;s like an online harddrive for me.  Another great storage solution is <a href="http://box.net/">box.net</a> which quite literally aims to be your online hard drive.  </p>
<p><b>2. Free Web Hosting</b><br />
Occasionally (not often) I&#8217;ll used free web servers that allow FTP access to host temporary projects or for sharing downloads.  There aren&#8217;t many good ones but I swear by <a href="http://netfirms.com">NetFirms</a>. <a href="http://freehostia.com/">Freehostia</a>, <a href="http://divshare.com/">Div Share</a> and <a href="http://bravenet.com/">Bravenet</a> come highly recommended.</p>
<p><b>3. Sharing Large Files Online</b><br />
I use <a href="http://mediashare.com">MediaShare</a> for all my large file storing and sharing.  Hands down.  Nothing else has come close to impressing me. If it&#8217;s too big for e-mail, <a href="http://mediashare.com">MediaShare</a> it.  They even have password protection options allowing every file you&#8217;ve uploaded to have different permissions!  Their facebook app is pretty slick as well.</p>
<h2>WEB BASED INVOICING AND PROJECT MANAGEMENT</h2>
<p><b>1. Invoicing</b><br />
<a href="http://www.blinksale.com/home" title="Invoicing Online" >BlinkSale</a> is my online invoice application of choice.  I&#8217;ve used it to bill for thousands of dollars.  <b>Hint:</b> to get around paying for the upgrade, select the option to print your invoice and save it as a PDF to your desktop.  Then print your PDF file normally!  Of course after I used that trick a few times and started making real money I bought a subscription. </p>
<p><b>2. Project Management</b><br />
The 400 Pound Gorillas of the project management world are definitely the people at <a href="http://37signals.com/">37Signals</a>!  From garage start-ups to multi-million dollar corporations, people love their services and I&#8217;m one of them. Of their solutions <a href="http://www.basecamphq.com/" title="collaborate online" >Basecamp</a> and <a href="http://www.campfirenow.com/" Title="chat with your clients online" >Campfire</a> are the most useful for me.  </p>
<p><b>3. Spreadsheets, Documentation and Notetaking</b><br />
Whenever I need to write anything down for a project, if I&#8217;m not already using Basecamp, I&#8217;m using <a href="http://docs.google.com" title="because Google owns my life">GoogleDocs</a>.   There are other solutions for this, but to try to minimize the growing list of sites I have to log in and out of, this is my choice solution.</p>
<hr />
<p>There you have it.  This is what I started with and I was able to pocket a few thousand dollars before I had to actually buy some real software.  The truth is, it takes next to nothing these days to become a creative entrepreneur, all it takes is motivation!</p>
]]></content:encoded>
			<wfw:commentRss>http://gosdot.com/unity/2008/02/19/web-based-workflow-tale-of-the-0-studio/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
