<?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>meekismurder.com</title>
	<atom:link href="http://meekismurder.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://meekismurder.com/blog</link>
	<description>the meek blog</description>
	<lastBuildDate>Mon, 23 Jan 2012 01:24:24 +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>UIButton not responding to touches?</title>
		<link>http://meekismurder.com/blog/?p=236</link>
		<comments>http://meekismurder.com/blog/?p=236#comments</comments>
		<pubDate>Mon, 23 Jan 2012 01:23:35 +0000</pubDate>
		<dc:creator>keller</dc:creator>
				<category><![CDATA[iPhone Dev]]></category>
		<category><![CDATA[uibutton]]></category>

		<guid isPermaLink="false">http://meekismurder.com/blog/?p=236</guid>
		<description><![CDATA[I&#8217;ve been developing for over 3 years now, and sometimes this will still get me. Perhaps posting a blog will get this out of my system forever. Anyway, the scenario is you create a UIButton, you can see it, but you can&#8217;t touch it (it does not highlight). Here are 2 things to try: Make [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been developing for over 3 years now, and sometimes this will still get me. Perhaps posting a blog will get this out of my system forever. Anyway, the scenario is you create a UIButton, you can see it, but you can&#8217;t touch it (it does not highlight). Here are 2 things to try:</p>
<ol>
<li>Make sure the UIButton is not blocked by another view. If your UIButton is behind another UIView (even if it&#8217;s transparent), it may be blocking touches as well. Either move it forward in your nib hierarchy or call [containerView bringSubviewToFront:myButton]; Also make sure the blocking view does not have exclusive touch: blockingView.exclusiveTouch = NO;</li>
<li>Make sure your UIButton&#8217;s container view can be interacted with. This is the one that gets me. If your UIButton is a subview of another view (not your view controller&#8217;s main view), it may not be configured to allow user interaction (the default). Try: containerView.userInteractionEnabled = YES;</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://meekismurder.com/blog/?feed=rss2&#038;p=236</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UIImageView Reflection with Perspective and Fading</title>
		<link>http://meekismurder.com/blog/?p=231</link>
		<comments>http://meekismurder.com/blog/?p=231#comments</comments>
		<pubDate>Thu, 05 Jan 2012 05:23:28 +0000</pubDate>
		<dc:creator>keller</dc:creator>
				<category><![CDATA[iPhone Dev]]></category>
		<category><![CDATA[cagradientlayer]]></category>
		<category><![CDATA[catransform3d]]></category>
		<category><![CDATA[fading]]></category>
		<category><![CDATA[quartzcore]]></category>
		<category><![CDATA[reflection]]></category>
		<category><![CDATA[uiimageview]]></category>

		<guid isPermaLink="false">http://meekismurder.com/blog/?p=231</guid>
		<description><![CDATA[The goal: To create a UIImageView reflection that is flipped with perspective and fading. In other words, create this effect: &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; *Obviously, import the QuartzCore Framework and import it into your file. I was able to accomplish this effect in 5 steps: Create two UIImageViews [...]]]></description>
			<content:encoded><![CDATA[<p>The goal: To create a UIImageView reflection that is flipped with perspective and fading. In other words, create this effect:</p>
<p>&nbsp;</p>
<p><a href="http://meekismurder.com/blog/wp-content/uploads/2012/01/Screen-Shot-2012-01-05-at-12.12.59-AM.png"><img class="alignleft size-medium wp-image-232" title="UIImageView Perspective Reflection" src="http://meekismurder.com/blog/wp-content/uploads/2012/01/Screen-Shot-2012-01-05-at-12.12.59-AM-300x294.png" alt="" width="300" height="294" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>*Obviously, import the QuartzCore Framework and import it into your file.</p>
<p>I was able to accomplish this effect in 5 steps:</p>
<ol>
<li>Create two UIImageViews in your nib. Create a UIImageView for your main image, then another for your reflected image. Make sure their view content modes are both set to Aspect Fit. Also, make the frame size of the reflected image 2x that of your main image (because the perspective reflection will add width to the image).</li>
<li>Load up the main image as normal. Now load up the reflection to be upside-down like so:
<pre><code>reflectionView.image = [UIImage
                   imageWithCGImage:mainImageView.image.CGImage
                   scale:1.0f
                   orientation: UIImageOrientationDownMirrored];
</code></pre>
</li>
<li>Now create the perspective transform like so:
<pre><code>CATransform3D rotationAndPerspectiveTransform = CATransform3DIdentity;
rotationAndPerspectiveTransform.m24 = 1.0f/-mainImageView.frame.size.width;
[[reflectionView layer] setTransform:rotationAndPerspectiveTransform];
</code></pre>
</li>
<li>Move the reflection into place:
<pre><code>reflectionView.center = CGPointMake(self.view.frame.size.width/2, mainImageView.frame.size.height*1.5);
</code></pre>
</li>
<li>To create the fade effect add a gradient that fades into the background color (black in this case).
<pre><code>reflectionView.layer.masksToBounds = YES;

// define gradient
CAGradientLayer *theGradient = [CAGradientLayer layer];
theGradient.frame = reflectionView;
theGradient.colors = [NSArray arrayWithObjects:
                      (id)[[UIColor clearColor] CGColor],
                      (id)[[UIColor blackColor] CGColor], nil];

// add gradient to reflection image
[reflectionView insertSublayer:theGradient atIndex:0];
reflectionView = 0.25f;</code></pre>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://meekismurder.com/blog/?feed=rss2&#038;p=231</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meek is Murder &#8220;Algorithms&#8221; Best of 2011 Round-up</title>
		<link>http://meekismurder.com/blog/?p=216</link>
		<comments>http://meekismurder.com/blog/?p=216#comments</comments>
		<pubDate>Fri, 30 Dec 2011 20:58:44 +0000</pubDate>
		<dc:creator>keller</dc:creator>
				<category><![CDATA[Meek is Murder]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[algorithms]]></category>
		<category><![CDATA[dudes]]></category>

		<guid isPermaLink="false">http://meekismurder.com/blog/?p=216</guid>
		<description><![CDATA[The album &#8220;Algorithms&#8221; was featured in some &#8220;Best of 2011&#8243; blogs this year. I kind of feel like we pulled something of a fast one on people as we are, for all intents and purposes a DIY, unsigned band- so being mentioned in line with bands like Mastodon or blink 182 is pretty damn funny [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://meekismurder.bandcamp.com"><img class="alignnone" title="Algorithms Cover" src="http://www.metalsucks.net/wp-content/uploads/2011/01/algorithms.jpg" alt="" width="500" height="500" /></a></p>
<p>The album &#8220;<a href="http://meekismurder.bandcamp.com">Algorithms</a>&#8221; was featured in some &#8220;Best of 2011&#8243; blogs this year. I kind of feel like we pulled something of a fast one on people as we are, for all intents and purposes a DIY, unsigned band- so being mentioned in line with bands like Mastodon or blink 182 is pretty damn funny to me. I had something of a shitty year, but making this album and hearing that some people actually enjoyed it was really nice.</p>
<p>Anyway, I felt like pooling the blogs all together here for some reason. I left out out some of the blogs that linked to full album downloads (we love you too, but I probably shouldn&#8217;t post those). Thanks to every one who wrote one of these lists (or voted for us, if the case may be), your gigantic checks are in the mail.</p>
<p><a href="http://www.metalsucks.net/2011/12/01/axl-rosenberg’s-top-fifteen-metal-albums-of-2011/">Axl Rosenburg&#8217;s Top Fifteen Metal Albums of 2011</a> (Metal Sucks)</p>
<p><a href="http://americanaftermath.net/2011/12/03/maclyn-beans-top-23-albums-of-2011/">Maclyn Bean&#8217;s Top 23 Albums of 2011</a> (American Aftermath)</p>
<p><a href="http://www.theclockonline.com/arts-entertainment/top-100-albums-of-2011-1.2732425#.Tv4gwZi9b0d">Top 100 Albums of 2011</a> (The Clock &#8211; Plymoth State University)</p>
<p><a href="http://www.metalinjection.net/lists/best-of-2011/sean-gresens-top-10-albums-of-2011">Sean Gressens&#8217; Top 100 Albums of 2011</a> (Metal Injection)</p>
<p><a href="http://gunshyassassin.com/jesse-get-your-gun/jesse-get-your-gun-the-top-10-of-2011/">Jesse Get Your Gun: The Top 10 of 2011</a> (Gun Shy Assassin)</p>
<p><a href="http://www.metalinjection.net/lists/best-of-2011/metal-injection-junkies-top-albums-of-2011">Metal Injection Junkie&#8217;s Top Albums of 2011</a> (Metal Injection)</p>
<p>It&#8217;s not to say we didn&#8217;t have some serious help from some amazing dudes. Since there weren&#8217;t really liner notes for our solely digital or handmade CD release, here is a short thank you list, in no particular order, but with what they did, for fun.</p>
<ul>
<li>Kurt &#8211; recorded the damn thing.</li>
<li>Alan &#8211; pressed the awesome button (mastering).</li>
<li>Matt &#8211; believed in us early on, for some weird reason.</li>
<li>Ben &#8211; too many awesome things to list.</li>
<li>Curran &#8211; made us sound cool to people (an onerous task).</li>
<li>Shina &#8211; starred in our video and let us crash at his house during recording.</li>
<li>Andrea &#8211; has been to every nyc (or slightly outside) show.</li>
<li>Dudes &#8211; every kid or band who helps us with a show or lets us crash on their floor. that&#8217;s so nice of you!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://meekismurder.com/blog/?feed=rss2&#038;p=216</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sometimes i draw</title>
		<link>http://meekismurder.com/blog/?p=204</link>
		<comments>http://meekismurder.com/blog/?p=204#comments</comments>
		<pubDate>Fri, 08 Jul 2011 01:44:16 +0000</pubDate>
		<dc:creator>keller</dc:creator>
				<category><![CDATA[Fun Stuff]]></category>

		<guid isPermaLink="false">http://meekismurder.com/blog/?p=204</guid>
		<description><![CDATA[sometimes i draw.]]></description>
			<content:encoded><![CDATA[<p>&#8220;becoming a man&#8221;<br />
<a href="http://meekismurder.com/blog/wp-content/uploads/2011/07/completetheman.png"><img class="alignleft size-medium wp-image-205" title="completetheman" src="http://meekismurder.com/blog/wp-content/uploads/2011/07/completetheman-300x187.png" alt="" width="300" height="187" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&#8220;world&#8217;s best dad&#8221;</p>
<p><a href="http://meekismurder.com/blog/wp-content/uploads/2011/07/vadermask.png"><img class="alignleft size-medium wp-image-213" title="vadermask" src="http://meekismurder.com/blog/wp-content/uploads/2011/07/vadermask-300x300.png" alt="" width="300" height="300" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://meekismurder.com/blog/?feed=rss2&#038;p=204</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[NSTimer isValid] causes crash?</title>
		<link>http://meekismurder.com/blog/?p=197</link>
		<comments>http://meekismurder.com/blog/?p=197#comments</comments>
		<pubDate>Sat, 14 May 2011 05:31:47 +0000</pubDate>
		<dc:creator>keller</dc:creator>
				<category><![CDATA[iPhone Dev]]></category>
		<category><![CDATA[nstimer]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[uiview]]></category>

		<guid isPermaLink="false">http://meekismurder.com/blog/?p=197</guid>
		<description><![CDATA[Is your NSTimer causing a crash when you check to see if it is still valid? Perhaps you are calling invalidate in touchesBegan or the like and would like to stop your timer while the user interacts with the containing UIView. Well, the cause of the crash is the fact that when you call invalidate [...]]]></description>
			<content:encoded><![CDATA[<p>Is your NSTimer causing a crash when you check to see if it is still valid? Perhaps you are calling invalidate in touchesBegan or the like and would like to stop your timer while the user interacts with the containing UIView. Well, the cause of the crash is the fact that when you call invalidate on an NSTimer, the timer is automatically released, but may still have a reference. The solution, set your NSTimer to nil after you invalidate, like so:</p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #3a8289} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo} span.s1 {color: #000000} span.s2 {color: #d200a9} span.s3 {color: #4d0089} span.Apple-tab-span {white-space:pre} --><code>if ([scrollTimer isValid]) {<br />
[scrollTimer invalidate];<br />
scrollTimer = nil;<br />
}</code></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://meekismurder.com/blog/?feed=rss2&#038;p=197</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Me and my girlfriend as South Park characters and The Beatles</title>
		<link>http://meekismurder.com/blog/?p=188</link>
		<comments>http://meekismurder.com/blog/?p=188#comments</comments>
		<pubDate>Wed, 11 May 2011 21:44:36 +0000</pubDate>
		<dc:creator>keller</dc:creator>
				<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[andrea]]></category>
		<category><![CDATA[keller]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[south park]]></category>
		<category><![CDATA[the beatles]]></category>

		<guid isPermaLink="false">http://meekismurder.com/blog/?p=188</guid>
		<description><![CDATA[Me and my girlfriend inevitably become subject to my useless Photoshop experiments. &#160;]]></description>
			<content:encoded><![CDATA[<p>Me and my girlfriend inevitably become subject to my useless Photoshop experiments.</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://meekismurder.com/blog/wp-content/uploads/2011/05/andrea+keller-south-park1.jpg"><img class="size-medium wp-image-190 aligncenter" title="andrea+keller-south-park" src="http://meekismurder.com/blog/wp-content/uploads/2011/05/andrea+keller-south-park1-300x266.jpg" alt="" width="300" height="266" /></a><a href="http://meekismurder.com/blog/wp-content/uploads/2011/05/the-beatles.jpg"><img class="aligncenter size-medium wp-image-191" title="the-beatles" src="http://meekismurder.com/blog/wp-content/uploads/2011/05/the-beatles-255x300.jpg" alt="" width="255" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://meekismurder.com/blog/?feed=rss2&#038;p=188</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Garageband for iPad Needs</title>
		<link>http://meekismurder.com/blog/?p=184</link>
		<comments>http://meekismurder.com/blog/?p=184#comments</comments>
		<pubDate>Fri, 22 Apr 2011 16:51:43 +0000</pubDate>
		<dc:creator>keller</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[garageband]]></category>

		<guid isPermaLink="false">http://meekismurder.com/blog/?p=184</guid>
		<description><![CDATA[Garageband for iPad rules. Here are some things that would make it rule harder: -Time signatures (limited to 4/4 currently)! This one&#8217;s big time&#8230; -Custom Keys for Smart Instruments. -Show the total track time somewhere. -Fades! -Pitch correction That is all.]]></description>
			<content:encoded><![CDATA[<p>Garageband for iPad rules. Here are some things that would make it rule harder:</p>
<p>-Time signatures (limited to 4/4 currently)! This one&#8217;s big time&#8230;</p>
<p>-Custom Keys for Smart Instruments.</p>
<p>-Show the total track time somewhere.</p>
<p>-Fades!</p>
<p>-Pitch correction</p>
<p>That is all.</p>
]]></content:encoded>
			<wfw:commentRss>http://meekismurder.com/blog/?feed=rss2&#038;p=184</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete Last Row of UITableView, Exit Editing Mode</title>
		<link>http://meekismurder.com/blog/?p=180</link>
		<comments>http://meekismurder.com/blog/?p=180#comments</comments>
		<pubDate>Fri, 28 Jan 2011 23:29:28 +0000</pubDate>
		<dc:creator>keller</dc:creator>
				<category><![CDATA[iPhone Dev]]></category>
		<category><![CDATA[uitableview]]></category>

		<guid isPermaLink="false">http://meekismurder.com/blog/?p=180</guid>
		<description><![CDATA[I have an editable UITableView (i.e. self.navigationItem.rightBarButtonItem = self.editButtonItem;). I realized that when I was deleting the last row in the table view (no cells remaining), it was not exiting edit mode and the rightBarButtonItem still said &#8220;Done.&#8221; Needless to say, this could cause some confusion to the user, especially if you still have cells [...]]]></description>
			<content:encoded><![CDATA[<p>I have an editable UITableView (i.e. self.navigationItem.rightBarButtonItem = self.editButtonItem;). I realized that when I was deleting the last row in the table view (no cells remaining), it was not exiting edit mode and the rightBarButtonItem still said &#8220;Done.&#8221;</p>
<p>Needless to say, this could cause some confusion to the user, especially if you still have cells in the table view that are not editable. I wanted my table view to automatically exit edit mode when I remove the last editable cell. However, in my commitEditingStyle function, this:</p>
<p style="padding-left: 30px;">if ([tableView numberOfRowsInSection:0] == 0)  //if no more cells<br />
[tableView setEditing:NO animated:YES</p>
<p>was not doing anything. I stuck an NSLog in there to see if it was in fact triggering when the last cell was removed and it was. The solution: call setEditing on super, not tableView, i.e.:</p>
<p style="padding-left: 30px;">if ([tableView numberOfRowsInSection:0] == 0)  //if no more cells<br />
[super setEditing:NO animated:YES];</p>
]]></content:encoded>
			<wfw:commentRss>http://meekismurder.com/blog/?feed=rss2&#038;p=180</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UINavigationController inside UITabBarController bug?</title>
		<link>http://meekismurder.com/blog/?p=176</link>
		<comments>http://meekismurder.com/blog/?p=176#comments</comments>
		<pubDate>Wed, 17 Nov 2010 20:10:24 +0000</pubDate>
		<dc:creator>keller</dc:creator>
				<category><![CDATA[iPhone Dev]]></category>

		<guid isPermaLink="false">http://meekismurder.com/blog/?p=176</guid>
		<description><![CDATA[I recently encountered a bug(?) with UINavigationController that manifests itself when you create one inside a Tab Bar view. Mind you, I don&#8217;t like using Apple&#8217;s Tab Bar template (I find it messy with the first view and the tab bar controller in the same file),  preferring to create my tab bar views programatically. The [...]]]></description>
			<content:encoded><![CDATA[<p>I recently encountered a bug(?) with UINavigationController that manifests itself when you create one inside a Tab Bar view. Mind you, I don&#8217;t like using Apple&#8217;s Tab Bar template (I find it messy with the first view and the tab bar controller in the same file),  preferring to create my tab bar views programatically.</p>
<p>The problem is, the nav controller doesn&#8217;t  &#8220;fade out&#8221; the selected table cell when you go back a view in the navigation controller. In debugging the problem I discovered it is not sending viewWillAppear/viewDidAppear messages to the view either.</p>
<p>After scouring the web, I found that a lot of people were having the same problem, but no one was able to present an elegant (or quick) solution. Anyway, I came up with a solution that still seems kludgy to me, but is only a matter of adding a single line of code.</p>
<p><strong> Pass viewDidAppear manually. </strong></p>
<p>In the view controller that is the root of the navigation controller (which is one of the view controllers of the tab bar controller), in your didSelectRowAtIndexPath method, you will likely have something like this:</p>
<pre>DetailViewController *detailViewController = [[DetailViewController alloc] init];
 [self.navigationController pushViewController:detailViewController animated:YES];
 [detailViewController release];</pre>
<p>Add the following line in between the pushViewController line and the release line:</p>
<pre>[self.navigationController viewDidAppear:YES];</pre>
<p>The problem is, <em>I believe</em>, is that the navigation controller has already &#8220;appeared&#8221; when it is first loaded and showed  the root view. So when you go back from a deeper view, those viewWillAppear/viewDidAppear methods aren&#8217;t getting fired anymore to refresh the selected tableView cell. The added line forces the navigation controller to fire viewDidAppear which under normal circumstances reloads the previously selected cell and refreshes the tableView for you.</p>
<p>Not sure when you wouldn&#8217;t want this behavior- it should be automatic in my opinion. Having a table view inside a tab doesn&#8217;t seem like it would be too uncommon.</p>
]]></content:encoded>
			<wfw:commentRss>http://meekismurder.com/blog/?feed=rss2&#038;p=176</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Revisiting My Life As A Bird&#8230;</title>
		<link>http://meekismurder.com/blog/?p=169</link>
		<comments>http://meekismurder.com/blog/?p=169#comments</comments>
		<pubDate>Sun, 31 Oct 2010 18:14:37 +0000</pubDate>
		<dc:creator>keller</dc:creator>
				<category><![CDATA[My Life As A Bird]]></category>
		<category><![CDATA[my life as a bird itunes ep from south slope to bushwick]]></category>

		<guid isPermaLink="false">http://meekismurder.com/blog/?p=169</guid>
		<description><![CDATA[This past summer I started recording what I was hoping would be the first My Life As A Bird full length. I completed several electric songs with drums as well as some acoustic re-recordings. Some things were left unfinished and with my several employments and ever-shifting attention span I put the project on hold. There [...]]]></description>
			<content:encoded><![CDATA[<p>This past summer I started recording what I was hoping would be the  first <a href="http://myspace.com/mylifeasabird" target="_blank">My Life As A Bird</a> full length. I completed several electric songs  with drums as well as some acoustic re-recordings. Some things were left  unfinished and with my several employments and ever-shifting attention  span I put the project on hold. There was still a lot of work to be done  to complete the full-length and I just didn&#8217;t have the time to spare.</p>
<p>So  I was listening back to some of those old recording and decided that  while there is still a lot I want to do with some of them, a handful are  as complete as they&#8217;ll ever be. So instead of waiting indefinitely to  finish everything for a full-length, I&#8217;ve decided to release the 3 most  finished and  cohesive songs as an EP titled: &#8220;1: From South Slope to  Bushwick&#8221;. It will be sold on iTunes. The plan is to release the other  eight or so songs in future EP installments as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://meekismurder.com/blog/?feed=rss2&#038;p=169</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

