<?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>jaredeasterday.com &#187; Portfolio</title>
	<atom:link href="http://www.jaredeasterday.com/category/portfolio/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jaredeasterday.com</link>
	<description>...the home of another wordpress enthusiast</description>
	<lastBuildDate>Sat, 10 Sep 2011 19:36:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Issues with Git Path (git command not found)</title>
		<link>http://www.jaredeasterday.com/524/issues-with-git-path-git-command-not-found/</link>
		<comments>http://www.jaredeasterday.com/524/issues-with-git-path-git-command-not-found/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 04:23:06 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.jaredeasterday.com/?p=524</guid>
		<description><![CDATA[I recently had to replace the hard drive on my MacBook, and the backup/restore process from my Time Machine went flawlessly.  Except for one thing: the first time I went to work on one of my projects, I received a &#8220;git: command not found&#8221; message when running &#8220;git status&#8221; in my project directory.  Git was [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had to replace the hard drive on my MacBook, and the backup/restore process from my Time Machine went flawlessly.  Except for one thing: the first time I went to work on one of my projects, I received a &#8220;git: command not found&#8221; message when running &#8220;git status&#8221; in my project directory.  Git was installed, so I knew there had to be some configuration issue. After a little searching, it seemed like my path was incorrect.<span id="more-524"></span></p>
<p>On my machine, git is installed in /usr/local/git/</p>
<p>In terminal, I found that running: echo $PATH returned:</p>
<pre>/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin</pre>
<p>This didn&#8217;t look right.  After some reading, it realized I needed to make some changes to my profile to update the PATH for git.  To do this, I made sure I was in my root directory:</p>
<pre>cd ~/</pre>
<p>Then I created my profile since it didn&#8217;t seem to be there:</p>
<pre>touch .bash_profile</pre>
<p>Then I opened it using text edit:</p>
<pre>open -e .bash_profile</pre>
<p>In the file I added the following line:</p>
<pre>export PATH=/usr/local/git/bin</pre>
<p>I then restarted Terminal and once I found my development directory and ran a git status, all was well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredeasterday.com/524/issues-with-git-path-git-command-not-found/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Permanently Redirect WordPress Pages using .htaccess</title>
		<link>http://www.jaredeasterday.com/512/how-to-permanently-redirect-wordpress-pages-using-htaccess/</link>
		<comments>http://www.jaredeasterday.com/512/how-to-permanently-redirect-wordpress-pages-using-htaccess/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 19:32:46 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.jaredeasterday.com/?p=512</guid>
		<description><![CDATA[I&#8217;m sure we&#8217;ve all been there: when you or your client launched your WordPress website you thought the best thing to title one of your pages was &#8220;Foo&#8221; or some other such silliness. After a few months you realize that a better page name would be &#8220;Bar&#8221; and you want your URL to reflect that. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure we&#8217;ve all been there: when you or your client launched your WordPress website you thought the best thing to title one of your pages was &#8220;Foo&#8221; or some other such silliness. After a few months you realize that a better page name would be &#8220;Bar&#8221; and you want your URL to reflect that. So you login to your WordPress admin, change your &#8220;Foo&#8221; page title and slug to &#8220;Bar,&#8221; and click save. Done, right? Well, almost.<span id="more-512"></span></p>
<p>When you change a page slug, it obviously affects your URL.  Your old page used to be here:</p>
<p>http://www.yourdomain.com/foo</p>
<p>&#8230;and your new page is here:</p>
<p>http://www.yourdomain.com/bar</p>
<p>However, if you were to actually type your old address into your browser, you&#8217;re going to get a 404 Page Not Found Error. This matters because there are probably all sorts of references out there (in google&#8217;s search results, in your own website, on other websites, etc.) to http://www.yourdomain.com/foo, and you don&#8217;t want anyone who clicks on one of those links to get an error message.  You want them to go to your new URL: http://www.yourdomain.com/bar.</p>
<p>To do this, you&#8217;ll need access to the root folder of your WordPress install.  Make sure that whatever application you&#8217;re using can view hidden files, and look for the &#8220;.htaccess&#8221; file. Hopefully WordPress will have already automatically created one for you, but if not go ahead and create one.  Here&#8217;s an example of what the WordPress .htaccess file might look like:</p>
<pre># BEGIN WordPress
&lt;IfModule mod_rewrite.c&gt;
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
&lt;/IfModule&gt;
# END WordPress</pre>
<p>Leave this bit of code there, and let&#8217;s go ahead do a Permanent 301 Redirect from your old page to your new page.  To do this, in our example, simply add the following line of code:</p>
<pre>Redirect 301 /foo http://www.yourdomain.com/bar/</pre>
<p>Now, if you save the file and then try to go to the &#8220;/foo&#8221; page, your browser should redirect your automatically to the &#8220;/bar&#8221; page.  When search engines crawl your site, they&#8217;ll update their records with this information as well.</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredeasterday.com/512/how-to-permanently-redirect-wordpress-pages-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gastronaut</title>
		<link>http://www.jaredeasterday.com/437/gastronaut/</link>
		<comments>http://www.jaredeasterday.com/437/gastronaut/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 18:01:23 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.jaredeasterday.com/?p=437</guid>
		<description><![CDATA[Visit Site » The Gastronautsf.com website was designed by Adam Cahoon and launched in the fall of 2010.  Built for a good friend of ours Nate Keller and his business partner Mirit Cohen, it&#8217;s a wordpress theme that allows them to publish menus, update content at will,  and receive catering requests. Soon it will allow [...]]]></description>
			<content:encoded><![CDATA[<p><a class="button" href="http://www.gastronautsf.com">Visit Site »</a></p>
<p>The <a href="http://www.gastronautsf.com/">Gastronautsf.com</a> website was designed by Adam Cahoon and launched in the fall of 2010.  Built for a good friend of ours Nate Keller and his business partner Mirit Cohen, it&#8217;s a wordpress theme that allows them to publish menus, update content at will,  and receive catering requests.<span id="more-437"></span></p>
<p>Soon it will allow Nate and Mirit to publish private mini-blogs for each of their clients.  It was a fun project and continues to be. Check them out if you need a caterer!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredeasterday.com/437/gastronaut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Heard Mentallity Version 2</title>
		<link>http://www.jaredeasterday.com/286/heard-mentallity-version-2/</link>
		<comments>http://www.jaredeasterday.com/286/heard-mentallity-version-2/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 15:55:25 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.jaredeasterday.com/?p=286</guid>
		<description><![CDATA[Version 2 is set to launch very soon, my finest wordpress theme yet!  More details soon.]]></description>
			<content:encoded><![CDATA[<p><a class="button" href="http://www.heardmentallity.com">Visit Site »</a></p>
<p>I&#8217;m very happy to announce that a new version of the Heard Mentallity theme has been launched!</p>
<p>Coded from the ground up, Version 2 features <em>much</em> more flexibility in terms of integration into WordPress. <span id="more-286"></span></p>
<p>The theme is lighter, faster, and has a much smoother user experience than did version 1.  Design-wise, it stays in the same &#8216;messages on a cork board&#8217; style, but includes numerous improvements to the overall aesthetics, and even takes advantage of a little bit of CSS3.  Version 2 was built with growth in mind, and I&#8217;m excited to see the theme&#8217;s flexibility shine as new authors join the ranks <a title="Heard Mentallity" href="http://www.heardmentallity.com">Heard Mentallity</a>.</p>
<p>The first version of Heard Mentallity was my very first WordPress theme, and as such, it wasn&#8217;t quite built in way themes should be.  It didn&#8217;t take advantage of a number of default WordPress functions, and as such many of the http references were absolute and hard coded.  Other mistakes were made as well, but instead of going into too much detail, let&#8217;s just say that this new version allows the site owner to update nearly every piece of content on the site and is built the way themes were meant to be built.</p>
<p><strong>Some of the new features are:</strong></p>
<ol>
<li>Flexible Navigation: the horizontal navigation is comprised of pages, and authors.  When the site owner wants to add a page or add another author, those pages and authors will show up in the navigation without any modification to the theme files.</li>
<li>Blog header and and tag line are now configurable by the site owner, rather than being unchangeable images.</li>
<li>Author pages will pull editable information about that author and keep it stuck to the top of each page.</li>
<li>Gravitars have been implemented, so if you have one, it will show up in the comments section!</li>
<li>Facebook share button has been added to posts to easily share music with friends.</li>
<li>The songs listed in the sidebar from Hype Machine are now pulled from an RSS feed and link directly to the song on Hype Machine.  The first version utilized a generated image and simply linked to the site owner&#8217;s page.</li>
<li>Caching has been implemented via the Wordress plugin <a title="WP Super Cache" href="http://ocaoimh.ie/wp-super-cache/">WP Super Cache</a>, which speeds up load times dramatically.</li>
</ol>
<p>Creating the theme was a lot of fun, and I learned a <em>lot!</em> There are a lot of things that I&#8217;ll be improving in future themes, but I&#8217;m really happy with the way this one came out.  I&#8217;d be happy to hear about any suggestions you may have, so feel free to share.</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredeasterday.com/286/heard-mentallity-version-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Persephone – A Musical Allegory</title>
		<link>http://www.jaredeasterday.com/278/persephone-a-musical-allegory/</link>
		<comments>http://www.jaredeasterday.com/278/persephone-a-musical-allegory/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 06:26:05 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.jaredeasterday.com/?p=278</guid>
		<description><![CDATA[Visit Site » When David Hoffman requested a web site for his portfolio site, he also requested a site for his current project: Persephone, a Musical Allegory.  Because this needed to completed in time for the musical&#8217;s debut, we both sat down one weekend and pounded it out. The layout of the site is a [...]]]></description>
			<content:encoded><![CDATA[<p><a class="button" href="http://www.persephoneonstage.com/">Visit Site »</a></p>
<p>When David Hoffman requested a web site for his <a title="Creative Work by David Hoffman" href="http://www.workbydavidhoffman.com">portfolio site</a>, he also requested a site for his current project: Persephone, a Musical Allegory.  Because this needed to completed in time for the musical&#8217;s debut, we both sat down one weekend and pounded it out.<span id="more-278"></span></p>
<p>The layout of the site is a bit unconventional, and this is partly because we didn&#8217;t have a lot of time to dedicate to design.  It&#8217;s also partly because of some specific desires on the part of the client. However, for a weekender website, I think it&#8217;s not bad at all!</p>
<p><strong>Features:</strong></p>
<ol>
<li>Integration with <a title="CushyCMS" href="http://www.cushycms.com/">CushyCMS</a>, a very simple system that allows the client to update most sections of the site.</li>
<li>Utilization of the <a title="Yahoo Media Player" href="http://mediaplayer.yahoo.com/">Yahoo! Media Player</a>, which scrapes the page for audio files and plays them in a  media player.  Pause / Play buttons are automatically inserted in front of audio links for direct interactions with the links themselves, and all audio files are also placed in a play list that allows continuous play of all audio on the page.</li>
</ol>
<p>This site is pretty straight forward, but it seems to do exactly what it needs to do.  Furthermore,  it was fun to see what could be done in a single weekend.  Hope you like it.</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredeasterday.com/278/persephone-a-musical-allegory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Creative Work of David Hoffman</title>
		<link>http://www.jaredeasterday.com/275/the-creative-work-of-david-hoffman/</link>
		<comments>http://www.jaredeasterday.com/275/the-creative-work-of-david-hoffman/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 06:20:12 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.jaredeasterday.com/?p=275</guid>
		<description><![CDATA[Visit Site » David Hoffman is an artist and musician who needed a website to show off his work.  For this project I teamed up with Adam Cahoon for the design.]]></description>
			<content:encoded><![CDATA[<p><a class="button" href="http://www.workbydavidhoffman.com/">Visit Site »</a></p>
<p>David Hoffman is an artist and musician who needed a website to show off his work.  For this project I teamed up with <a title="Adam Art Bio" href="http://www.adamartbio.com">Adam Cahoon</a> for the design.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredeasterday.com/275/the-creative-work-of-david-hoffman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Heard Mentallity Version 1</title>
		<link>http://www.jaredeasterday.com/270/heard-mentallity-version-1/</link>
		<comments>http://www.jaredeasterday.com/270/heard-mentallity-version-1/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 06:11:43 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.jaredeasterday.com/?p=270</guid>
		<description><![CDATA[Visit Site » The heard mentallity blog was my first dabble into creating a wordpress theme.]]></description>
			<content:encoded><![CDATA[<p><a class="button" href="http://www.heardmentallity.com">Visit Site »</a><br />
The heard mentallity blog was my first dabble into creating a wordpress theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredeasterday.com/270/heard-mentallity-version-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bay Worms</title>
		<link>http://www.jaredeasterday.com/266/bay-worms/</link>
		<comments>http://www.jaredeasterday.com/266/bay-worms/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 06:01:50 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.jaredeasterday.com/?p=266</guid>
		<description><![CDATA[Visit Site » Bayworms.org are a non-profit dedicated to educating the masses about the benefits of vermiculture. A friend of mine informed me that their site was in need of some fixes, and boy did it ever! It looked as though it had originally been coded through the Satan spawn that is &#8220;covert word doument [...]]]></description>
			<content:encoded><![CDATA[<p><a class="button" href="http://www.bayworms.org" alt="Visit Bay Worms">Visit Site »</a><br />
Bayworms.org are a non-profit dedicated to educating the masses about the benefits of vermiculture.  A friend of mine informed me that their site was in need of some fixes, and boy did it ever!<span id="more-266"></span> </p>
<p>It looked as though it had originally been coded through the Satan spawn that is &#8220;covert word doument to web page.&#8221;  I exagerate, but not by much: the site was non-functional when I found it.  </p>
<p>I decided to recode the site from the ground up, while still maintaining the original design.  The client expressed interest in being able to update the site on his own, but because wordpress would have been overkill (and because I wasn&#8217;t yet fully comfortable with creating themes), I decided to use Cushy CMS.  This worked perfectly for the client and the site, and I&#8217;m happy to say that what was once disfunctional and broken is now flexible and uses modern code.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredeasterday.com/266/bay-worms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Pooch Dog Walking</title>
		<link>http://www.jaredeasterday.com/261/happy-pooch-dog-walking/</link>
		<comments>http://www.jaredeasterday.com/261/happy-pooch-dog-walking/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 04:12:05 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.jaredeasterday.com/?p=261</guid>
		<description><![CDATA[Happy Pooch Dog Walking was the first time that Adam and I collaborated on a site. Unfortunately the site is no longer up and running; all we have left are images.]]></description>
			<content:encoded><![CDATA[<p>Happy Pooch Dog Walking was the first time that Adam and I collaborated on a site. Unfortunately the site is no longer up and running; all we have left are images.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredeasterday.com/261/happy-pooch-dog-walking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adam Art Bio</title>
		<link>http://www.jaredeasterday.com/251/adam-art-bio/</link>
		<comments>http://www.jaredeasterday.com/251/adam-art-bio/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 02:48:34 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.jaredeasterday.com/?p=251</guid>
		<description><![CDATA[Visit Site » Adam Art Bio was the first real opportunity I had to create a legitimate website for a friend of mine. Adam needed a website to showcase his paintings, and well, I needed some practice creating sites (looking back, did I ever!).  So we teamed up and using Adam&#8217;s design, my first website [...]]]></description>
			<content:encoded><![CDATA[<p><a class="button" href="http://www.adamartbio.com">Visit Site »</a></p>
<p>Adam Art Bio was the first real opportunity I had to create a legitimate website for a friend of mine.<span id="more-251"></span></p>
<p>Adam needed a website to showcase his paintings, and well, I needed some practice creating sites (looking back, did I ever!).  So we teamed up and using Adam&#8217;s design, my first website was born.</p>
<p>It&#8217;s a pretty simple site, and perhaps not exactly coded well, but it did give me practice with HTML and CSS.  It was also my first time using a javascript plugin (<a title="Lightbox" href="http://www.huddletogether.com/projects/lightbox2/">lightbox</a>), so it was a great learning experience.</p>
<p>I had created a few sites locally just to learn, but this was the first time I actually launched a site to the web.  As a first website, it&#8217;s not great, but it&#8217;s not bad either!  At the very least, I hope it helps people enjoy Adam&#8217;s artwork.  In the future, I hope to give it a feature upgrade so Adam can add more paintings on his own and perhaps add other content.  Until then, I hope you enjoy!</p>
<p>More to come, Cheers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredeasterday.com/251/adam-art-bio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<!-- <a href="http://www.wirtualnyswidwin.pl/marecki.php?date=56">Private</a> --></channel>
</rss>

