<?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>Blueberry Ln.</title>
	<atom:link href="http://www.blueberryln.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blueberryln.com</link>
	<description>Chicago Web Development &#38; New Media</description>
	<lastBuildDate>Fri, 13 Jan 2012 16:35:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>We&#8217;re Hiring a Web Project Manager</title>
		<link>http://www.blueberryln.com/2012/01/were-hiring-web-project-manager/</link>
		<comments>http://www.blueberryln.com/2012/01/were-hiring-web-project-manager/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 16:14:29 +0000</pubDate>
		<dc:creator>Andrew Figgins</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.blueberryln.com/?p=336</guid>
		<description><![CDATA[Do you have a passion for website production and experience managing web designers and/or developers? If so, please read on. Blueberry Ln. Web &#38; New Media is expanding rapidly (we hired several web developers in the Fall) and now we&#8217;re looking for some additional help organizing all the projects and relationships. I&#8217;m proud of our [...]]]></description>
			<content:encoded><![CDATA[<p style="float:right;margin-left:15px;"><img src="/images-new/thumbprint.jpg" /></p>
<p>Do you have a passion for website production and experience managing web designers and/or developers?  If so, please read on.  </p>
<p>Blueberry Ln. Web &amp; New Media is expanding rapidly (we hired several web developers in the Fall) and now we&#8217;re looking for some additional help organizing all the projects and relationships.  I&#8217;m proud of our work in the last year, and the transition of the business from a one-man shop to a boutique web agency.  If you or someone you know is ready to contribute to the success of a growing company, we&#8217;re all ears.</p>
<p>This is a freelance, work-from-home opportunity that is perfect for an organized person that has a knack for technology and the web.  </p>
<p>For more details and information on how to apply, please view the job posting <a href="http://www.linkedin.com/jobs?viewJob=&#038;jobId=2404490" target="_blank">on LinkedIn</a> or <a href="http://chicago.craigslist.org/chc/bus/2797834075.html" target="_blank">on Craigslist</a>.</p>
<p>Please pass this on if someone comes to mind that would be a nice fit!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blueberryln.com/2012/01/were-hiring-web-project-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Tip: How to Easily Customize Excerpt Output</title>
		<link>http://www.blueberryln.com/2011/11/wordpress-tip-how-to-customize-excerpt-output/</link>
		<comments>http://www.blueberryln.com/2011/11/wordpress-tip-how-to-customize-excerpt-output/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 14:34:09 +0000</pubDate>
		<dc:creator>Andrew Figgins</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Wordpress Tips]]></category>

		<guid isPermaLink="false">http://www.blueberryln.com/?p=283</guid>
		<description><![CDATA[Sometimes it&#8217;s the simplest things that baffle those of us working with WordPress. My goal on a recent project was to grab snippets of the latest blog entries and display the text without images. That&#8217;s easy enough using the default WordPress < ?php the_excerpt(); ?> feature, which strips out any tags including images. Unfortunately, the_excerpt [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/images-new/twolargecoffees.jpg" /></p>
<p>Sometimes it&#8217;s the simplest things that baffle those of us working with WordPress.  My goal on a recent project was to grab snippets of the latest blog entries and display the text without images.  That&#8217;s easy enough using the default WordPress <strong><code><br />< ?php the_excerpt(); ?></code></strong> feature, which strips out any tags including images.  </p>
<p>Unfortunately, <strong>the_excerpt</strong> needs a little love if you want to add a nice &#8220;Read more&#8230;&#8221; link or change the number of characters displayed for each post.  By default the number of characters is 55.  You can search on this until you&#8217;re blue in the face because developers have hacked up various solutions to this over the years, but many of them no longer work in WordPress 3+.</p>
<p>No worries, though.  All you need to do is add a few filters to your theme&#8217;s functions.php file, customize to your liking, and call it a day.</p>
<p><strong>Change the Excerpt Length</strong></p>
<pre class="qoate-code">function new_excerpt_length($length) {
	return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');</pre>
<p>20 is the number of characters in the above example, so change to whatever you&#8217;d like.</p>
<p><strong>Change or Remove the Default [...] Text</strong></p>
<pre class="qoate-code">function new_excerpt_more($more) {
	return '[.....]';
}
add_filter('excerpt_more', 'new_excerpt_more');</pre>
<p>If you&#8217;d like to get rid of the [...] completely, just remove the brackets and everything in between the &#8221; marks above.  You can also customize this filter to insert a nice &#8220;Read more&#8221; link at the end of your excerpt.</p>
<p><strong>Add a Read More Link to the Excerpt</strong></p>
<pre class="qoate-code">function new_excerpt_more($more) {
       global $post;
	return '... &lt;a href="'. get_permalink($post-&gt;ID) . '"&gt;Read the Rest...&lt;/a&gt;';
}
add_filter('excerpt_more', 'new_excerpt_more');</pre>
<p>Customize away!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blueberryln.com/2011/11/wordpress-tip-how-to-customize-excerpt-output/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Broke the Cardinal Rule of Blogging</title>
		<link>http://www.blueberryln.com/2011/09/i-broke-the-cardinal-rule-of-blogging/</link>
		<comments>http://www.blueberryln.com/2011/09/i-broke-the-cardinal-rule-of-blogging/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 17:41:58 +0000</pubDate>
		<dc:creator>Andrew Figgins</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Company]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.blueberryln.com/?p=253</guid>
		<description><![CDATA[For the longest time I&#8217;ve preached the following to my clients: &#8220;Never let your blog become stale! Updates are so important! The last thing you want to see when you visit a blog is that it&#8217;s years out-of-date.&#8221; As of today, it&#8217;s been over a year since I posted here. So to those good people [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.blueberryln.com/blog/wp-content/uploads/2011/09/17_27_orig.jpg" alt="" title="17_27_orig" width="440" /></p>
<p>For the longest time I&#8217;ve preached the following to my clients:</p>
<blockquote><p>&#8220;Never let your blog become stale!  Updates are so important!  The last thing you want to see when you visit a blog is that it&#8217;s years out-of-date.&#8221;</p></blockquote>
<p>As of today, it&#8217;s been over a year since I posted here.  So to those good people that I preached the above to, I owe you an apology.  I still hold true to the belief that blogs exist to be used, and used frequently and well.  Unfortunately, this one has fallen out of date under my watch.  That&#8217;s something I&#8217;m aiming to fix this Fall as Blueberry Ln. undergoes some long-needed updates and changes.</p>
<p>First and foremost, I&#8217;m happy to report that I&#8217;m in the process of bringing on board additional developers to help with the workload.  The last year has been an incredible time of growth for the company, in both the number of projects and clients, and also in the lessons I&#8217;ve learned as a business owner.  I&#8217;ve become a huge <a href="http://inthesharktank.com" target="_blank">Shark Tank</a> fan as well, and actually had an opportunity to meet the Sharks last Friday, which was a thrilling experience.  More on that to come soon.  </p>
<p>If you&#8217;re visiting Blueberry Ln. for the first time, welcome.  If you&#8217;re about to apply to work with us, go ahead and mention that you read this post in your application.  I&#8217;ll be happy that you know a little bit about the last year of my life, and I&#8217;m eager to learn more about you as well.</p>
<p>Big thanks to all our clients (a.k.a. awesome people) that inspire me on a daily basis in addition to keeping the lights on.  Can&#8217;t wait for the next chapter!  Stay tuned, it&#8217;s going to be exciting.</p>
<p>Andrew</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blueberryln.com/2011/09/i-broke-the-cardinal-rule-of-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On &#8220;AH-HAH&#8221; Moments</title>
		<link>http://www.blueberryln.com/2010/07/on-ah-hah-moments/</link>
		<comments>http://www.blueberryln.com/2010/07/on-ah-hah-moments/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 23:56:02 +0000</pubDate>
		<dc:creator>Andrew Figgins</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.blueberryln.com/?p=190</guid>
		<description><![CDATA[Staring at website code day in and day out can do some wacky things to a person. Like any line of work that is repetitive at times, an outlet is necessary. Many web developers turn to video games or music. A select few (myself included) follow a sports team or two. A very select few [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.blueberryln.com/blog/wp-content/uploads/2010/07/running_uphill.jpg" alt="Running uphill" width="440" height="240" title="Running uphill" /></p>
<p>Staring at website code day in and day out can do some wacky things to a person.  Like any line of work that is repetitive at times, an outlet is necessary.  Many web developers turn to video games or music.  A select few (myself included) follow a sports team or two.  A very select few (myself not included) opt for exceptionally tight pants.  Anyway, what I&#8217;m getting at is that taking a short break from coding has been extremely valuable to me.  An approaching deadline and plenty of caffeine also have proven their worth.</p>
<p>It&#8217;s amazing what great things have come from determination and a little sleep deprivation.  For me it&#8217;s always the smallest thing that will keep me up until it&#8217;s fixed.  A page that is a single pixel off in Internet Explorer 6, a jQuery animation that isn&#8217;t as smooth as it should be, or any other garden variety of things most annoying to developers.  Did I mention Internet Explorer 6?  (Cough)  Is this mic even on?</p>
<p>The more annoying or outlandish the glitch, the better it feels when the perfect bit of code is written.  Or maybe not just written, but tested and verified to actually be working.  That is my ah-hah moment, when the pixels align and Firefox and Internet Explorer agree on my code.  It&#8217;s the best feeling in the world to get those issues solved, to have conquered the summit, so to speak.  Everything after is like running down the side of the mountain.  Still have to be cautious and watch the footing, but the momentum is there. </p>
<p>All in a day&#8217;s (or night&#8217;s) work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blueberryln.com/2010/07/on-ah-hah-moments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Timing of Good Advice</title>
		<link>http://www.blueberryln.com/2010/05/the-timing-of-good-advice/</link>
		<comments>http://www.blueberryln.com/2010/05/the-timing-of-good-advice/#comments</comments>
		<pubDate>Sat, 15 May 2010 07:57:32 +0000</pubDate>
		<dc:creator>Andrew Figgins</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.blueberryln.com/?p=220</guid>
		<description><![CDATA[For just about everything I can think of in this life, someone has gone through it before me. In a few instances, though, the opposite is true. As a web developer over the years I&#8217;ve been a sponge, soaking up as much knowledge and experience as I could. Despite taking awhile to get this blog [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.blueberryln.com/blog/wp-content/uploads/2010/05/blogadvice.jpg" alt="Advice from the desert" title="Advice from the desert" width="440" height="153" /></p>
<p>For just about everything I can think of in this life, someone has gone through it before me.  In a few instances, though, the opposite is true.  As a web developer over the years I&#8217;ve been a sponge, soaking up as much knowledge and experience as I could.  Despite taking awhile to get this blog started, I hold out some hope that someone will be thankful they&#8217;re reading an entry, and that perhaps my experience will help them out.  Maybe a year from now, or maybe today.  Who knows.</p>
<p>More than what I decide to write about, the chance of the above paragraph becoming a reality almost entirely depends on you, the reader.  If I&#8217;m not answering a question you&#8217;re asking or discussing something you&#8217;re interested in, do yourself a favor and close this browser window and read your local paper&#8217;s website for the next few minutes instead.  Wait, don&#8217;t, that&#8217;s just an illustration.  Let&#8217;s just assume I&#8217;m relevant.  Hey, you found me, so that&#8217;s your judgment call.</p>
<p>In my conversations with clients and potential clients, one of the very first things I do is try to gauge if I need to be the lead talker or the lead listener.  95% of the time I choose &#8220;listener&#8221; because the more I know about a client&#8217;s situation the smarter my answers become.  Whether or not it&#8217;s the polite thing to do depends on the situation.  Case in point&#8230;</p>
<p>A few years ago a potential client found me and we started the client/provider courtship thing &#8212; they debriefed on the project details, I put together an estimate and sent it over, and then we went back and forth back and forth back and forth back and forth.   All told it was probably 10 calls and another 7-8 emails.  Finally they let me know I was too expensive and I wished them the best of luck with their project. Cue the sad music.</p>
<p>However, this is a situation that was salvaged because of open communication and timely advice.  When everybody is on a tight budget, including me, it&#8217;s one of the first and last things to come up.  Ultimately this client budgeted for an inexpensive site, and I wanted to keep my pricing in line with similar projects I&#8217;d completed.  During our back and forth time, though, I was able to answer a variety of questions about the reasoning for my costs.  I broke down everything line by line and took some time to explain things in a friendly way.  Also, the potential client answered plenty of questions about the reasoning for their budget, which was entirely out of their control.  A potentially contentious series of conversations stayed professional (happy music now).</p>
<p>The end result today is that while I don&#8217;t have a new client (yet), I&#8217;m aware of very specific challenges this client is facing, and they know I&#8217;m ready and willing to help.  For a developer, that&#8217;s just about as good as it gets.  Also, we just connected on LinkedIn.  Hmm&#8230;maybe they&#8217;re asking for a second date? </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blueberryln.com/2010/05/the-timing-of-good-advice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

