<?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>MikeRapin.com</title>
	<atom:link href="http://www.mikerapin.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikerapin.com/blog</link>
	<description>A man. A nerd. A web dev.</description>
	<lastBuildDate>Tue, 26 Feb 2013 22:06:50 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>How to import products to Magento using Magento&#8217; Advanced Data Profile Product Import</title>
		<link>http://www.mikerapin.com/blog/675/how-to-import-products-to-magento-using-magento-advanced-data-profile-product-import/</link>
		<comments>http://www.mikerapin.com/blog/675/how-to-import-products-to-magento-using-magento-advanced-data-profile-product-import/#comments</comments>
		<pubDate>Thu, 24 Jan 2013 20:08:46 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[nerdy]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[attributes]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[importing]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[multiple select]]></category>

		<guid isPermaLink="false">http://www.mikerapin.com/blog/?p=675</guid>
		<description><![CDATA[So, I'm writing this and such because, for the life of me, I could not find proper instructions to import a bunch of items into Magento via their native importer--maybe another day I'll write up a guide on how to do this with a 3rd party interface... Either way, here's what I did to get [...]]]></description>
				<content:encoded><![CDATA[<p>So, I'm writing this and such because, for the life of me, I could not find proper instructions to import a bunch of items into Magento via their native importer--maybe another day I'll write up a guide on how to do this with a 3rd party interface...</p>
<p>Either way, here's what I did to get about 2600+ items imported&nbsp;<em><strong>with</strong></em>&nbsp;images!</p>
<p>Now, this "guide" will be assuming a few things:</p>
<ol>
<li>You have a working Magento store</li>
<li>You know how to generate a CSV file</li>
<li>You're familiar enough with Magento to navigate it's administration section</li>
<li>You understand your server's file system and can upload files to said server</li>
<li>You have this <a href="http://www.magentocommerce.com/magento-connect/Citytech/extension/2940/import-category-product-and-gallery">Import Product and Category plugin</a> installed.</li>
</ol>
<p><span id="more-675"></span>Anyways...</p>
<h2><b>Creating your CSV file</b></h2>
<p>First off, when you're creating your CSV the following fields (attributes) are required values by Magento:</p>
<ul>
<li>name</li>
<li>sku</li>
<li>type</li>
<li>price</li>
<li>status</li>
<li>qty</li>
<li>type (there's a chance it may be&nbsp;_type)</li>
<li>attribute_set (there's a chance it may be _attribute_set)</li>
<li>is_recurring</li>
<li>visibility</li>
<li>tax_class_id</li>
<li>attribute_set</li>
<li>websites</li>
<li>store</li>
<li>has_options</li>
<li>meta_title</li>
<li>meta_description</li>
<li>page_layout</li>
<li>store_id</li>
<li>image</li>
<li>small_image</li>
<li>thumbnail</li>
</ul>
<p>You should be able to find the values necessary for those slots--I suggest creating a dummy product if you need to find the default values of any of these attributes.</p>
<p>After that, any custom attributes you have deemed required will be, you guessed it, required.</p>
<h2><b>Dealing with Multiple Select aka multiselect values</b></h2>
<p>This is effing terrible but the pattern you need to get Multiple Select fields working is:</p>
<p>[data][space][comma][space][data][space]...</p>
<p style="padding-left: 30px;">Example<b>:</b></p>
<pre class="wp-code-highlight prettyprint linenums:1">Green , Orange , Blue , Red , Grey</pre>
<p>So, when you're working in your CSV, make sure all of the values are within one cell (if you're in Excel/LibreOffice/OpenOffice/etc.) or, if you're working with the actual text-version of the file, enclosed in quotation marks within the comma-separated-value... that should make some sense...</p>
<p>Rumor has it there's a limit of 100 values being selected at once in a CSV, but if you have a multiselect with over 100 values in it and users can choose more than one... I don't mean to judge, but you may want to re-evaluate that...</p>
<h2><b>Images! I want to do those too!</b></h2>
<p>Cool. This isn't that tough. Remember the image/thumbnail/small_image attributes from earlier? Here's where they come into play.</p>
<p>Magento has this (seemingly) undocumented feature where if you want to import images when you import products through the advanced data profile section of their system it's totally possible, but you have to follow these (again, undocumented) steps:</p>
<ol>
<li>Connect to your store's backend via FTP/SFTP/whatever</li>
<li>Navigate to the <strong><em>media</em></strong> directory
<ul>
<li>Wherever your Magento store files are located (i.e. <strong><em>index.php</em></strong>, etc.) there should be a directory named <strong><em>media</em></strong></li>
</ul>
</li>
<li>Within the <strong><em>media</em></strong> directory create a new directory called <strong><em>import</em></strong>
<ul>
<li>It <strong>has</strong> to be this, I kid you not</li>
</ul>
</li>
<li>Add all of your images to this new directory
<ul>
<li>You can add subdirectories, but you'll need to remember their names as they'll be important in a minute</li>
</ul>
</li>
</ol>
<p>So, 4ish simple steps. Cool.</p>
<p>Next, you're going to need to take all of the file names for the files you uploaded to the <strong><em>media/import</em></strong> directory and put them in your csv file with a leading / (if they're in subdirectories, those will be needed too).</p>
<p style="padding-left: 30px;"><b>Example:</b></p>
<pre class="wp-code-highlight prettyprint linenums:1">/stock_image.jpg
/sub_directory/stock_image.jpg</pre>
<p>One more caveat: <b>The images must be jpegs. </b>I don't know why, but Magento only seems to like jpeg files.</p>
<p>And yeah. It looks goofy to have a leading slash on your images and subdirectories, but I assure you this is how things work. So long as your images and subdirectories are in the&nbsp;<em><strong>media/import </strong></em>folder, you'll be fine.</p>
<h2>Finally, let's import those products!</h2>
<p>Log into your admin interface. Simple.</p>
<p>Navigate over to&nbsp;<strong>System -&gt; Import/Export -&gt;&nbsp;Dataflow - Advanced Profiles</strong></p>
<p>Here's where things get tricky.</p>
<p>If you have an <strong>Import</strong> profile, awesome. Skip this next bit (we'll continue at the next big bold header -- <strong>Choose your file</strong>):</p>
<p>You'll need to add an import profile. Simple enough.</p>
<p>Name it whatever you'd like, then in the action XML add this:</p>
<pre class="wp-code-highlight prettyprint linenums:1">&lt;action type=&quot;dataflow/convert_adapter_io&quot; method=&quot;load&quot;&gt;
    &lt;var name=&quot;type&quot;&gt;file&lt;/var&gt;
    &lt;var name=&quot;path&quot;&gt;var/import&lt;/var&gt;
    &lt;var name=&quot;filename&quot;&gt;&lt; ![CDATA[my_products.csv]]&gt;&lt;/var&gt;
    &lt;var name=&quot;format&quot;&gt;&lt; ![CDATA[csv]]&gt;&lt;/var&gt;
&lt;/action&gt;

&lt;action type=&quot;dataflow/convert_parser_csv&quot; method=&quot;parse&quot;&gt;
    &lt;var name=&quot;delimiter&quot;&gt;&lt; ![CDATA[,]]&gt;&lt;/var&gt;
    &lt;var name=&quot;enclose&quot;&gt;&lt; ![CDATA[&quot;]]&gt;&lt;/var&gt;
    &lt;var name=&quot;fieldnames&quot;&gt;true&lt;/var&gt;
    &lt;var name=&quot;store&quot;&gt;&lt; ![CDATA[0]]&gt;&lt;/var&gt;
    &lt;var name=&quot;number_of_records&quot;&gt;1&lt;/var&gt;
    &lt;var name=&quot;root_catalog_id&quot;&gt;&lt; ![CDATA[2]]&gt;&lt;/var&gt;
    &lt;var name=&quot;reimport_images&quot;&gt;&lt; ![CDATA[true]]&gt;&lt;/var&gt;
    &lt;var name=&quot;deleteall_andreimport_images&quot;&gt;&lt; ![CDATA[true]]&gt;&lt;/var&gt;
    &lt;var name=&quot;exclude_images&quot;&gt;&lt; ![CDATA[false]]&gt;&lt;/var&gt;
    &lt;var name=&quot;exclude_gallery_images&quot;&gt;&lt; ![CDATA[false]]&gt;&lt;/var&gt;
    &lt;var name=&quot;append_tier_prices&quot;&gt;&lt; ![CDATA[true]]&gt;&lt;/var&gt;
    &lt;var name=&quot;append_group_prices&quot;&gt;&lt; ![CDATA[false]]&gt;&lt;/var&gt;
    &lt;var name=&quot;decimal_separator&quot;&gt;&lt; ![CDATA[.]]&gt;&lt;/var&gt;
    &lt;var name=&quot;adapter&quot;&gt;catalog/convert_adapter_productimport&lt;/var&gt;
    &lt;var name=&quot;method&quot;&gt;parse&lt;/var&gt;
&lt;/action&gt;</pre>
<p>Now, note the line that reads:</p>
<pre class="wp-code-highlight prettyprint linenums:1">
&lt;var name=&quot;filename&quot;&gt;&lt; ![CDATA[my_products.csv]]&gt;&lt;/var&gt;
</pre>
<p>Change the 'my_products.csv' to whatever you're calling your CSV file.</p>
<p>Now, you'll need to upload your csv to <em><strong>var/import</strong></em> via FTP/SFTP/whatever.</p>
<ul>
<li>If the import folder doesn't exist, create it. Just like earlier, you <strong>need</strong> to name it like this.
</li>
</ul>
<p>Once you have that set, jump back to your browser click the <strong>Save and Continue</strong> button.</p>
<p>After the page reloads, choose the <strong>Run Profile</strong> tab. Then click the <strong>Run Profile in Popup</strong> button.</p>
<h2>AND BAM!</h2>
<p>You're done. Any errors you get... well, I would check with the <a href="http://www.magentocommerce.com/boards" target="_blank">Magento Forums</a>&nbsp;and/or <a href="http://stackoverflow.com/" target="_blank">StackOverflow</a>.</p>
<p>---</p>
<p>Questions? Suggestions? Hit me up in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikerapin.com/blog/675/how-to-import-products-to-magento-using-magento-advanced-data-profile-product-import/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apps to live by</title>
		<link>http://www.mikerapin.com/blog/665/apps-to-live-by/</link>
		<comments>http://www.mikerapin.com/blog/665/apps-to-live-by/#comments</comments>
		<pubDate>Wed, 10 Oct 2012 17:54:12 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[apps]]></category>

		<guid isPermaLink="false">http://www.mikerapin.com/blog/?p=665</guid>
		<description><![CDATA[I'm always searching for cool apps to make my life easier/better/cooler. Lately, I've come across quite a few and have had a little cash to actually buy some that are worthwhile. I thought I'd compile a list here to share, to get suggestions, and just so I had them all written down. Also: If you [...]]]></description>
				<content:encoded><![CDATA[<p>I'm always searching for cool apps to make my life easier/better/cooler. Lately, I've come across quite a few and have had a little cash to actually buy some that are worthwhile. I thought I'd compile a list here to share, to get suggestions, and just so I had them all written down.</p>
<p>Also: If you have any suggestions/alternatives/other categories you want to see, please let me know!</p>
<h3><strong>Web Development</strong></h3>
<p><strong>Mac</strong></p>
<p><a href="http://itunes.apple.com/us/app/gradient/id481981128?mt=12" target="_blank">Gradient</a> - $4.99 - Create CSS3 gradients without hassle</p>
<p><a href="http://pencil.evolus.vn/en-US/Home.aspx" target="_blank">Pencil</a> - Free - Wireframe a website with ease</p>
<p><a href="http://panic.com/coda/" target="_blank">Coda 2</a> - $75 - By far the best code editor for web development I have ever used. Just read through the site. You'll understand.</p>
<p><a href="http://panic.com/transmit/" target="_blank">Transmit</a> - $34 - The fanciest FTP client you can use and it's well worth the price. One thing: Finder mounted SSH connections. The end.</p>
<p><strong>iPhone</strong></p>
<p><a href="http://itunes.apple.com/us/app/prompt/id421507115?mt=8" target="_blank">Prompt</a> - $7.99 - Need a terminal to connect to a server? Yeah you do.</p>
<h3>Music</h3>
<p><strong>Mac</strong></p>
<p><a href="http://www.apple.com/itunes/" target="_blank">iTunes</a> - Free - Obviously...</p>
<p><a href="http://voxapp.didgeroo.com/" target="_blank">Vox</a> - Free - Super non-intrusive music app that just works. Import the music you want to listen to and just listen.</p>
<p><strong>iPhone</strong></p>
<p><a href="http://itunes.apple.com/us/app/cartunes-music-player/id415408192?mt=8" target="_blank">CarTunes</a> - $4.99 - By far the <em><strong>best</strong></em> app for listening to music while you're driving; everything is gesture based so you really don't have to finagle with your iPhone/iPod while driving.</p>
<p><a href="http://app.net/8tracks" target="_blank">8tracks</a> - Free - Playlists you can stream on the go. What's not to like?</p>
<p><a href="http://itunes.apple.com/us/app/power-timer/id393010751?mt=8" target="_blank">PowerTimer</a> - Free - Power Hour. 'Nuff said.</p>
<p><a href="http://itunes.apple.com/us/app/gmusic-a-google-music-player/id472342018?mt=8" target="_blank">gMusic</a> - $1.99 - Play music from your Google Play account aka probably your whole iTunes library.</p>
<p><a href="http://itunes.apple.com/us/app/droptunes/id457961485" target="_blank">DropTunes</a> - $0.99 - Stream music from your Dropbox account, if you're into that sort of stuff.</p>
<h3><strong>Note-Taking</strong></h3>
<p><strong>Mac</strong></p>
<p><a href="http://itunes.apple.com/app/evernote/id406056744" target="_blank">Evernote</a> - Free - Take notes/pictures/video/audio all in one. Tagging/categorizing/etc. So awesome.</p>
<p><a href="http://brettterpstra.com/project/nvalt/" target="_blank">nvAlt</a> - Free - A fork from <a href="http://notational.net/" target="_blank">Notational Velocity</a> that syncs with Dropbox and SimpleNote for simple note taking. Markup support = awesome in my book.</p>
<p><strong>iPhone</strong></p>
<p><a href="http://itunes.apple.com/us/app/evernote/id281796108?mt=8" target="_blank">Evernote</a> - Free - Take notes/pictures/video/audio but from your phone!</p>
<h3><strong>Utility</strong></h3>
<p><strong>Mac</strong></p>
<p><a href="http://itunes.apple.com/us/app/name-mangler/id402434720?mt=12" target="_blank">NameMangler</a> - $9.99 - For when you need to batch-rename files. I do this so often manually (aka renaming 100+ files one-by-one) that this was a must have. Pricey, but worth every penny.</p>
<p><a href="http://itunes.apple.com/us/app/bettersnaptool/id417375580?mt=12" target="_blank">BetterSnapTool</a> - $1.99 - Snap windows all around your Mac's screen. Similar to the functionality in Windows 7, but a bit more powerful.</p>
<p><a href="http://itunes.apple.com/us/app/cheatsheet/id529456740?mt=12" target="_blank">CheatSheet</a> - Free - See what key combinations you're using on your computer. Kind of handy when you accidentally press something and your computer wigs out.</p>
<p><a href="http://dockdropx.com/" target="_blank">DockDrop</a> - Free - Drop files on this dock icon and have it immediately upload any sized file to a personal server/WebDav/SCP/Flickr(pictures only). Super simple. Super awesome.</p>
<p>ScreenGrab - Free but no longer available (I have the .prefPane if you're interested) - Automatically upload screenshots to a personal server when you press Cmd+Shift+3 or Cmd+Shift+4 and place the URL on your clipboard.</p>
<p><a href="http://www.alfredapp.com/" target="_blank">Alfred</a> - Free - Quick Launch just about anything, do math, and much more all from a simple key command.</p>
<p><a href="http://onnati.net/apptrap/" target="_blank">AppTrap</a> - Free - Asks to delete associated files when uninstalling an application (dragging the app to the trash)</p>
<h3>Notifications</h3>
<p><strong>Mac</strong></p>
<p><a href="http://growl.info/" target="_blank">Growl</a> - Notifications for hundreds of applications.</p>
<p><a href="http://itunes.apple.com/us/app/nowplaying-for-mac/id413533448?mt=12" target="_blank">NowPlaying</a> - Free/$1.99 - Currently playing song in iTunes pops up as a Notification Center alert when a song starts. <a href="http://osxdaily.com/2012/08/13/show-now-playing-itunes-alert-notification-center-mac-os-x/" target="_blank">Get it free here?</a></p>
<p><strong>iPhone</strong></p>
<p><a href="http://www.prowlapp.com/" target="_blank">Prowl</a> - $2.99 - Basically, you can use this to get alerts for just about anything on your phone. It's pretty damn handy. I use it with wordpress to send updates when someone submits a post to <a href="http://www.destroythecyb.org/" target="_blank">DestroyTheCyb.org!</a></p>
<p><a href="https://pushover.net/" target="_blank">Pushover</a> - $3.99 - Similar to Prowl but with a much more complex system. <a href="http://ifttt.com">IFTTT</a> has this as an option to use, so I use it for various weather notifications.</p>
<p><a href="https://www.slice.com/iphone" target="_blank">Slice</a> - Free - Get notifications on any kind of delivery that provides updates (Amazon, UPS, etc.). You can even set it up to auto read from your inbox and pull UPS/FedEx/etc. from your incoming e-mails.</p>
<h3><strong>Misc</strong>.</h3>
<p><strong>iPhone</strong></p>
<p><a href="http://appcubby.com/gas-cubby/" target="_blank">Gas Cubby</a> - $2.99 - Track your MPG/usage/etc. for your car. Tune-ups too!</p>
<p><a href="http://itunes.apple.com/us/app/dayta/id354915346?mt=8" target="_blank">Dayta</a> - Free - Stats for anything you want. Requires you to input almost everything about what you want to track, but exporting and setup is pretty seamless.</p>
<p><a href="http://products.wolframalpha.com/mobile/" target="_blank">WolframAlpha</a> - $1.99 - Your favorite "solve everything" website is now on your phone. What more is there to say?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikerapin.com/blog/665/apps-to-live-by/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tomorrow, I go to Chicago</title>
		<link>http://www.mikerapin.com/blog/661/tomorrow-i-go-to-chicago/</link>
		<comments>http://www.mikerapin.com/blog/661/tomorrow-i-go-to-chicago/#comments</comments>
		<pubDate>Tue, 21 Aug 2012 03:00:01 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[update]]></category>
		<category><![CDATA[cis]]></category>
		<category><![CDATA[colorjar]]></category>
		<category><![CDATA[gvsu]]></category>
		<category><![CDATA[internship]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.mikerapin.com/blog/?p=661</guid>
		<description><![CDATA[Through hard work and maybe a bit of magic, I managed to create an internship out of my freelance job that I've had for the past two months. It's a totally legitimate internship doing what I love: developing/designing the web. The company? ColorJar. They're made up of a bunch of awesome guys and gals who [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.mikerapin.com/blog/wp-content/uploads/2012/08/image.png"><img class="alignright size-medium wp-image-662" title="image" src="http://www.mikerapin.com/blog/wp-content/uploads/2012/08/image-290x300.png" alt="" width="290" height="300" /></a>Through hard work and maybe a bit of magic, I managed to create an internship out of my freelance job that I've had for the past two months. It's a totally legitimate internship doing what I love: <em><strong>developing/designing the web</strong></em>.</p>
<p>The company? <a href="http://www.colorjar.com/"><strong>ColorJar</strong></a>. They're made up of a bunch of awesome guys and gals who work in and around Chicago, and are, apparently, very happy to have me working for them.</p>
<p>Last Friday, we figured out the details and GVSU's CIS internship coordinator approved it, and now I just need to get the proper documents signed and dated, then turn them all in. I cannot express how excited I am about this. Not only am I working for a fantastic company, but this is opening doors in my head for my future.</p>
<p>So, I'm heading to Chicago tomorrow night to stay with some friends, then working Wednesday with the guys at ColorJar.</p>
<p>This... this is quite amazing.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikerapin.com/blog/661/tomorrow-i-go-to-chicago/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eating a smaller lunch kind of rocked</title>
		<link>http://www.mikerapin.com/blog/652/eating-a-smaller-lunch-kind-of-rocked/</link>
		<comments>http://www.mikerapin.com/blog/652/eating-a-smaller-lunch-kind-of-rocked/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 15:26:34 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[random]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[quick]]></category>

		<guid isPermaLink="false">http://www.mikerapin.com/blog/?p=652</guid>
		<description><![CDATA[Typically, I find myself eating a pretty decent sized lunch during the week. With classes, work, an internship, and everything else bogging down, things get pretty dark and bitter in my mind if I don't eat something--small or large--but usually it's a pretty hefty lunch. I kind of made a habit out of it, and, [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.mikerapin.com/blog/wp-content/uploads/2012/03/tumblr_lte1yoe0Y21qbhnrvo1_500.png"><img class="alignright size-medium wp-image-656" style="border-style: initial; border-color: initial;" title="Food plate from the 90s." src="http://www.mikerapin.com/blog/wp-content/uploads/2012/03/tumblr_lte1yoe0Y21qbhnrvo1_500-300x169.png" alt="Food plate from the 90s." width="300" height="169" /></a>Typically, I find myself eating a pretty decent sized lunch during the week. With classes, work, an internship, and everything else bogging down, things get pretty dark and bitter in my mind if I don't eat something--small or large--but usually it's a pretty hefty lunch. I kind of made a habit out of it, and, despite noticing this effect, I usually get really... "food coma-y" afterwards which is never a good thing when you have two hours of classes ahead of you.</p>
<p>So today I decided to have a smaller lunch. Just a small six-inch sub from Subway in <a href="http://www.gvsu.edu/kirkhofcenter">Kirkhof</a>, and as I was finishing the sub, I realized I didn't feel like crap. I wasn't thinking "just eat the last two bites and you'll be good." No, I was thinking, "Oh, I'm done and I feel pretty full."</p>
<p>For some reason, I felt compelled to write about it. So now you know.</p>
<p>...</p>
<p>It was a pretty good sub...</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikerapin.com/blog/652/eating-a-smaller-lunch-kind-of-rocked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A new year, a new semester</title>
		<link>http://www.mikerapin.com/blog/644/a-new-year-a-new-semester/</link>
		<comments>http://www.mikerapin.com/blog/644/a-new-year-a-new-semester/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 19:35:52 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[classes]]></category>
		<category><![CDATA[gvtv]]></category>
		<category><![CDATA[keep calm]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[osl]]></category>
		<category><![CDATA[programming languages]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.mikerapin.com/blog/?p=644</guid>
		<description><![CDATA[It's 2012 and I didn't even do a "year-round-up" post. How sad. I had a weird thought about international phones over break, though. Specifically regarding what I would do if I ever travelled internationally. I know that O2 is a big proponent overseas and if I ever went to London or Bristol or something--dreams of [...]]]></description>
				<content:encoded><![CDATA[<p>It's 2012 and I didn't even do a "year-round-up" post. How sad.</p>
<p>I had a weird thought about international phones over break, though. Specifically regarding what I would do if I ever travelled internationally. I know that <a href="http://www.o2.co.uk/" target="_blank">O2</a> is a big proponent overseas and if I ever went to London or Bristol or something--dreams of mine--would I have to switch to someone like them to keep my iPhone working? The thought occurred to me as I travelled to Phoenix to visit my friend Russ and the constant on/off of my phone when on the plane has me going on and on in my head about why you have to turn you phone off... but that's neither here nor there.</p>
<p>And now the school year has started and my life is back on track to being "insanely all over the place," which I don't mind too much. It keeps me busy, keeps me driven, and keeps me on a schedule. Of course, the added stress of 12 credits (three 300-level courses and a grad course), 18-20 hours of work for the <a href="http://www.gvsu.edu/studentlife" target="_blank">OSL</a>, <a href="http://www.gvsu.edu/gvtv">GVTV</a>, and <a href="http://www.gvsu.edu/studentlife/stuey/organization.htm?organizationId=DA8A5F1B-A93B-83B7-4FE16835E7A2C095">Comic Book Club</a> is there, but it all means that I'm doing something. <em>All of the time.</em></p>
<p>One cool thing, I can say, is that this semester I don't hate any of my classes. Truly. I have a real interest in each class, which means I probably should kick some serious habits of putting off my homework all of the time because I actually <strong><em>do</em></strong> want to learn something.</p>
<p>Now onto something more... life altering: I graduate in December of this year. As in: I'll be done with my Bachelor's degree in Computer Science, which means I'll be getting a real job (or something that will pay for my life outside of student loans). Talk about something that is, obviously, scary and utterly exciting. Hell, in the last month, I've had two job offers on the phone, a friend of mine asking me about an internship/future job, and have gotten business cards from a handful of people who are generally interested in talking about jobs once I graduate. It's ridiculously overwhelming.</p>
<p>The reason for my anxiety being that despite knowing everything I already know, I have no choice but to expect that college is where my learning will end and that I will <strong>definitely</strong> need to learn more before I graduate. It's incredibly intimidating. Despite that, I am taking two courses this semester that will most definitely broaden my horizons on <a href="http://en.wikipedia.org/wiki/C_(programming_language)">C</a>, <a href="http://en.wikipedia.org/wiki/Ruby_(programming_language)">Ruby</a>, and <a href="http://en.wikipedia.org/wiki/LISP_(programming_language)">Lisp</a>--something I consider a step in the right direction.</p>
<p><em>sigh</em> It's only the first week of the semester, and there's already "a lot" on my plate. So, I've decided (just now) that I will, in the words of <a href="http://en.wikipedia.org/wiki/Keep_Calm_and_Carry_On" target="_blank">1939 Britain</a> (and <a href="http://www.yesnomaybe.co.uk/NewsDetail.aspx?idBlog=60" target="_blank">Rupert Grint</a>, I guess), "Keep Calm And Carry On."</p>
<div class="wp-caption aligncenter" style="width: 310px"><img src="http://i.imgur.com/W5eui.jpg" alt="Keep Calm and Carry On" width="300" height="449" /><p class="wp-caption-text">I know it&#39;s not WWII, but it works.</p></div>
<p><span style="font-size: 9px;"><em><br />
</em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikerapin.com/blog/644/a-new-year-a-new-semester/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meanwhile, there are a thousand things going on</title>
		<link>http://www.mikerapin.com/blog/641/meanwhile-there-are-a-thousand-things-going-on/</link>
		<comments>http://www.mikerapin.com/blog/641/meanwhile-there-are-a-thousand-things-going-on/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 21:03:20 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[random]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[some stuff]]></category>

		<guid isPermaLink="false">http://www.mikerapin.com/blog/?p=641</guid>
		<description><![CDATA[Christmas crackers. I have been busy. Not much more to say than that. I've gotten into the habit of creating what I call "Forever lists" via Wunderlist and it's helped me more than I can say. I typically start my week with 10-12 items, build up to 18-25 (depending on the week) and narrow the [...]]]></description>
				<content:encoded><![CDATA[<p>Christmas crackers. I have been busy. Not much more to say than that.</p>
<p>I've gotten into the habit of creating what I call "Forever lists" via <a href="http://wunderlist.com/" target="_blank">Wunderlist</a> and it's helped me more than I can say. I typically start my week with 10-12 items, build up to 18-25 (depending on the week) and narrow the list down to 5-8 by the end of the week. It's pretty damn nice, to say the least. The beauty of it is that I can use Wunderlist across every device I have.</p>
<p>And now I'm, for some crazy reason, running for <a href="http://www.gvsu.edu/gvtv/" target="_blank">GVTV</a> president at the end of the semester (aka a week and a day from today). So that's on my plate. Basically, I just want to clean the organization up and make things work... better. We'll see.</p>
<p>On the side, I'm writing a screenplay for a full length movie. It's a weird concept and I keep getting lines of dialog or small conversations and I keep jotting them down in <a href="http://www.evernote.com/" target="_blank">Evernote</a> in hopes that one day--maybe over break--I'll be able to piece together the vague plot I have and stick the dialog I have in there and make it all work. I'm aiming for like 100-120 page.<em> le sigh</em></p>
<p>All in all, though, things are pretty much fantastic so I really can't complain.</p>
<p>Plus I'm going to Arizona at the end of December. So there's that awesomeness.</p>
<p>Until next time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikerapin.com/blog/641/meanwhile-there-are-a-thousand-things-going-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who I am, How I Do Things &#124; September 2011</title>
		<link>http://www.mikerapin.com/blog/634/who-i-am-how-i-do-things-september-2011/</link>
		<comments>http://www.mikerapin.com/blog/634/who-i-am-how-i-do-things-september-2011/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 19:54:11 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[update]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[destroythecyb.org!]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.mikerapin.com/blog/?p=634</guid>
		<description><![CDATA[My name is Mike Rapin. I'm twenty-two years old, living in Allendale, Michigan. I attend Grand Valley State University and am in the (final) process of gaining a degree in Computer Science with a minor in Information Technology. I currently work part-time for GVSU's Office of Student Life as their Student Technology Manager and am [...]]]></description>
				<content:encoded><![CDATA[<p>My name is Mike Rapin. I'm twenty-two years old, living in Allendale, Michigan. I attend <a href="http://www.gvsu.edu/" target="_blank">Grand Valley State University</a> and am in the (final) process of gaining a degree in <a href="http://cis.gvsu.edu/degrees/cs" target="_blank">Computer Science</a> with a <a href="http://cis.gvsu.edu/degrees/itminor" target="_blank">minor in Information Technology</a>.</p>
<p>I currently work part-time for GVSU's <a href="http://www.gvsu.edu/studentlife/" target="_blank">Office of Student Life</a> as their Student Technology Manager and am a freelance web developer. I am also the Web Design intern for West Michigan's PBS/NPR affiliate, <a href="http://www.wgvu.org/" target="_blank">WGVU</a>. For free/cheap, I assist my friends and/or anyone who comes to me with computer issues.</p>
<p>I am the president of the <a href="http://gvsu.edu/studentlife/stuey/organization.htm?organizationId=DA8A5F1B-A93B-83B7-4FE16835E7A2C095" target="_blank">Comic Book Club</a> of Grand Valley and the New Media Director of GVSU's student-run television station, <a href="http://gvsu.edu/studentlife/stuey/organization.htm?organizationId=FFC931F4-EF70-D82F-5CE2681120BC6130" target="_blank">GVTV</a>. Both are elected positions I have held for over two school semesters.</p>
<p>I run and co-own a website, <strong><a href="http://www.destroythecyb.org/" target="_blank">DestroyTheCyb.org!</a></strong>, that posts reviews of comic books, movies, and music. As co-owner, I have been in charge of editing, advertisement, designing, and maintaining the site and it's content as well as hiring and keeping in contact with writers. As a site, we have been featured as small press at the <a href="http://www.comic-con.org/">San Diego Comic Convention</a>.</p>
<p>I have written two television shows for GVTV, <strong><a href="https://www.facebook.com/JeffAndMike" target="_blank">Jeff &amp; Mike Write A Comic Book</a></strong> and <strong><a href="https://www.facebook.com/mat42dr" target="_blank">mat42dr</a></strong>, as well as a handful of sketches for the GVTV sketch-show <a href="https://www.facebook.com/randomishgvtv" target="_blank">Randomish!</a>. I have directed a sketch on Randomish! ("Joe is sad"), starred in four episodes of Jeff &amp; Mike, and have directed seven episode of mat42dr--with plans to direct nine of the eleven (possibly twelve) episodes that remain.</p>
<p>As a writer, I have participated in <a href="http://www.nanowrimo.org/" target="_blank">NaNoWriMo</a>, <a href="http://www.scriptfrenzy.org/" target="_blank">Script Frenzy</a>, <a href="http://howto.destroythecyb.org/" target="_blank">52-52</a>, and have written my own zine. I am currently working on a new issue of my zine that should be released sometime this month.</p>
<p>I read comics like a fiend. Marvel and Image, for the most part--any X-Men, Invincible, Walking Dead.</p>
<p>I am an strong user of social media websites, particularly Twitter (<strong><a href="http://www.twitter.com/mikerapin" target="_blank">@mikerapin</a></strong>), Tumblr (<a href="http://tumblr.mikerapin.com/" target="_blank">tumblr.mikerapin</a>), foursquare, instagram, reddit, and facebook (<a href="http://www.facebook.com/mikerapin" target="_blank">mikerapin</a>). I am most easily reached on Twitter.</p>
<p>I am a Mac user, and I currently run <a href="http://support.apple.com/kb/DL1437" target="_blank">10.7.1 Lion</a> on my black Macbook (<a href="http://www.everymac.com/systems/apple/macbook/stats/macbook-core-2-duo-2.4-black-13-early-2008-penryn-specs.html" target="_blank">circa 2008</a>). As a web developer, I use <a href="http://panic.com/coda" target="_blank">Coda</a> and the OS X Terminal for any and all programming. Image editing is normally done by me in <a href="http://www.adobe.com/products/creativesuite/design.html" target="_blank">Adobe Photoshop CS5.5</a>. I manage the music I have through <a href="http://apple.com/itunes/" target="_blank">iTunes</a>, with <a href="http://bowtieapp.com/" target="_blank">Bowtie</a> as an assistant. I use <a href="http://www.dropbox.com/" target="_blank">Dropbox</a> on a daily basis, and the <a href="http://itunes.apple.com/us/app/twitter/id333903271?mt=8" target="_blank">official Twitter application</a> as well. I check my e-mail through <a href="http://sparrowmailapp.com/" target="_blank">Sparrow</a> and launch application with <a href="http://www.alfredapp.com/" target="_blank">Alfred</a>. For writing (zine/non-scripts), I use the Mac OS X application <a href="http://support.apple.com/kb/ht2523" target="_blank">TextEdit</a> (in plain-text mode), and <a href="http://celtx.com/" target="_blank">Celtx</a> for scripts.</p>
<p>I own an iPhone 4 running the <a href="http://www.apple.com/ios/ios5/" target="_blank">iOS 5</a> beta 7. I update the twittersphere using <a href="http://tapbots.com/software/tweetbot/" target="_blank">Tweetbot</a>, check into foursquare with the official <a href="http://itunes.com/app/foursquare" target="_blank">foursquare app</a> (occasionally <a href="http://eightbit.me/" target="_blank">EightBit</a> or <a href="http://foreca.st/" target="_blank">Forecast</a>), post to Tumblr with the <a href="http://itunes.apple.com/us/app/tumblr/id305343404?mt=8" target="_blank">official Tumblr app</a>, IM others with the <a href="http://itunes.apple.com/us/app/imo-instant-messenger/id336435697?mt=8" target="_blank">imo.im app</a>, chat Facebook friends with the <a href="https://www.facebook.com/mobile/messenger" target="_blank">official Messenger app</a>, and post what I'm listening to using <a href="http://itunes.apple.com/us/app/tweetmusic/id326649534?mt=8" target="_blank">TweetMusic</a> and/or <a href="http://soundtracking.com/" target="_blank">soundtracking</a>. I use <strong><a href="http://itunes.apple.com/us/app/cartunes-music-player/id415408192?mt=8" target="_blank">CarTunes</a></strong> to listen to music when driving, manage files with <a href="http://www.dropbox.com/iphoneapp" target="_blank">Dropbox</a>, edit scripts with <a href="http://celtx.com/mobile.html">Celtx</a>, read books with <a href="http://itunes.apple.com/us/app/ibooks/id364709193?mt=8" target="_blank">iBooks</a>, check my bills with <a href="http://www.pageonce.com/app" target="_blank">Pageonce</a>, stream music through <strong><a href="http://8tracks.com/iphone" target="_blank">8tracks</a></strong>/<a href="http://itunes.apple.com/us/app/droptunes/id457961485?mt=8" target="_blank">DropTunes</a>/<a href="http://www.audiogalaxy.com/" target="_blank">Audiogalaxy</a>, picture myself using <a href="http://everyday-app.com/" target="_blank">Everyday</a>, receive periodic notifications with <strong><a href="http://www.prowlapp.com/" target="_blank">Prowl</a></strong> and <a href="http://boxcar.io/" target="_blank">Boxcar</a>, edit and take pictures with <strong><a href="http://campl.us/" target="_blank">Camera+</a> </strong>and <a href="http://instagr.am/" target="_blank">Instagram</a>, take notes with <a href="http://www.hogbaysoftware.com/products/plaintext" target="_blank">PlainText</a>, control my computer with <a href="http://hipporemote.com/lite" target="_blank">HippoRemote LITE</a> and <a href="http://www.mochasoft.dk/iphone_vnc.htm" target="_blank">MochaVNC</a>, and manage my calendar with <a href="http://www.utilitap.com/weekcalendar/" target="_blank">Week Cal</a>. Occassionally, I play <a href="http://www.dropzap2.com/" target="_blank">DropZap 2</a> and <a href="http://www.wordswithfriends.com/" target="_blank">Words With Friends</a>.</p>
<p>I can be contacted through e-mail at <a href="mailto:rapin.michael@gmail.com">rapin.michael@gmail.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikerapin.com/blog/634/who-i-am-how-i-do-things-september-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anonymity and Reputation</title>
		<link>http://www.mikerapin.com/blog/627/anonymity-and-reputation/</link>
		<comments>http://www.mikerapin.com/blog/627/anonymity-and-reputation/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 16:05:57 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[4chan]]></category>
		<category><![CDATA[anonymity]]></category>
		<category><![CDATA[anonymous]]></category>
		<category><![CDATA[computer science]]></category>
		<category><![CDATA[nerds]]></category>
		<category><![CDATA[reddit]]></category>
		<category><![CDATA[reputation]]></category>
		<category><![CDATA[your rights online]]></category>

		<guid isPermaLink="false">http://www.mikerapin.com/blog/?p=627</guid>
		<description><![CDATA[There was an interesting discussion in one of my CIS classes this morning regarding anonymity on the web and it brought up some heated debate. I've gauged that half or more of my class is familiar/have been on 4chan and/or are users of Reddit. To a point, this is good to hear as they're avid [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.mikerapin.com/blog/wp-content/uploads/2011/04/anonymous.jpg"><img class="alignright size-medium wp-image-628" title="anonymous" src="http://www.mikerapin.com/blog/wp-content/uploads/2011/04/anonymous-254x300.jpg" alt="" width="152" height="180" /></a>There was an interesting discussion in one of my CIS classes this morning regarding anonymity on the web and it brought up some heated debate. I've gauged that half or more of my class is familiar/have been on 4chan and/or are users of Reddit. To a point, this is good to hear as they're avid internet users who probably hold some of the same values as I do regarding the web, coding, everything that 4chan/Reddit can instill on a person.</p>
<p>Strangely, though, there was a debate on anonymity. More specific, this debate was on anonymity being the same as cowardice.</p>
<p><span id="more-627"></span>Typically in class, I don't speak up too much unless I've become comfortable with a large chunk of my classmates. When it comes to Computer Science classes, this is rarely the case. Why? Well, when you're in a room full of people who are as arrogant as I am when it comes to computers, rather than speak up and try to make a point, I'd much prefer to simply get straight A's and hack their mainframes before they realize it... okay that doesn't happen, but I keep my mouth shut because my classes are full of very arrogant, outspoken nerds who think they're always right. It's much easier to get by learning what you need to learn, participating when you know the quick answers, and get a good grade than if I gave into arguing semantics in coding (such as tab size, editor color schemes, or the proper way to write JavaScript so it appears indented correctly in the browser).</p>
<p>Today, however, I couldn't sit idly by.</p>
<p>My professor brought up the interconnectivity between social media sites and their implications when it comes to how social media sites are used on other sites (such as blogs, forums, etc.). Right away, strong opinions about Twitter and Facebook were brought up: "Who cares what you just had to eat?" "No one wants to know what you're doing," "Facebook is ridiculously insecure." Things of that nature. My professor looked pleased at how much we all were speaking at 9am, when normally he has to beat participation out of us with a stick.</p>
<p>I was half-listening to the debate up until this point. I was busy browsing Twitter and Reddit to really pay attention, but when I heard that last phrase, my ears perked up because what happened next set things off.</p>
<p>So, he pressed us with this: "Say you have a blog Would you rather allow people to comment anonymously or with e-mail verification or with Facebook integration?" The class went apeshit, yet still managed to discuss this topic with intelligence. One guy in my class, we'll call him Chris, began ranting about how anyone can create a Gmail address and how it might as well all be anonymous, save Facebook, because anonymous posts allow people to be as honest as they want.</p>
<p>Here's where the firestorm began.</p>
<p>Another guy in my class (oh, did I mention my CIS class is all guys, save one girl?), we'll call him Dan, turned to the first guy and started talking about how anonymous posting online is cowardly because there are no consequences. Chris tried responding but it was something along the same lines of what he originally said (see above). Dan responded again with more talk of cowardice, and this is when I spoke up.</p>
<p>In a moment of silence where it looked like my professor was waiting for someone else to speak up, I calmly said to Dan, "I completely disagree with you," and he turned around. "Think of it this way: you're the CEO of Google--a major company with huge stakes and investors--but you have a radical view on a hot button topic. Do you jeopardize your company's reputation by speaking out radically and making your investors angry because they don't agree with you, or do you have intelligent debate on an anonymous medium?"</p>
<p>Dan looked at me for a moment and responded that if the radical opinions were actually what I felt, I would have no need to hide them behind anonymity. I responded to him that despite the truth to what he said, speaking radically can ruin your reputation (something I've felt first hand) and as likely as people are to abuse the power of anonymity--Chris cut in by saying "trolling"--speaking anonymously can lead to intelligent, well-informed discussion.</p>
<p>Again, Dan looked at me for a moment, then Chris took the ball again. This time he was talking to the professor about a completely different portion of the topic regarding creating anonymous profiles online.</p>
<p>The discussion ceased there, but it was interesting to see the various viewpoints on it all (well, the two--mine and Dan's). I had a quick moment of reflection on past mistakes of posting things online with my name attached--you know, losing job(s) because of it. I mean, think of your reputation in life and how it's tied to your online world. Would you say your Twitter or Facebook accounts represent you well? Would you rather that some of the things you've said online weren't attached to your name?</p>
<p>All of this has been swirling in my head since this morning. Just thought I'd share.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikerapin.com/blog/627/anonymity-and-reputation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zine Fest &#8212; Really quick</title>
		<link>http://www.mikerapin.com/blog/620/zine-fest-really-quick/</link>
		<comments>http://www.mikerapin.com/blog/620/zine-fest-really-quick/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 20:01:05 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[random]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[burgers]]></category>
		<category><![CDATA[chicago]]></category>
		<category><![CDATA[chicago zine fest]]></category>
		<category><![CDATA[kuma's corner]]></category>
		<category><![CDATA[love]]></category>
		<category><![CDATA[zine]]></category>

		<guid isPermaLink="false">http://www.mikerapin.com/blog/?p=620</guid>
		<description><![CDATA[Just a few words about the Chicago Zine Fest I kind of went to but didn't: Chicago is awesome. I can't get over it. I spent two and a half days there and thoroughly enjoyed myself. Zinesters are the most interesting bunch of people you could ever meet. I managed to give out 12/30 of [...]]]></description>
				<content:encoded><![CDATA[<p>Just a few words about the <a href="http://chicagozinefest.org/" target="_blank">Chicago Zine Fest</a> I kind of went to but didn't:</p>
<ol>
<li>Chicago is awesome. I can't get over it. I spent two and a half days there and thoroughly enjoyed myself.</li>
<li>Zinesters are the most interesting bunch of people you could ever meet.</li>
<li>I managed to give out 12/30 of my zines to people I doubt I will ever see again, and I'm almost jumping with joy because of that. And I managed to do that without making it to the actual zine fest on Saturday, but instead to the awesome after party.</li>
<li>There were five more people than I expected (expectation: 0) who walked dogs for a living and had a serious passion for it.</li>
<li><a title="\m/ METAL \m/" href="http://www.kumascorner.com/" target="_blank">Kuma's Corner</a> is totally worth an hour and a half wait.</li>
<li>Getting lost in Chicago strengthen's your knowledge of the <a href="http://www.transitchicago.com/" target="_blank">public transportation system</a>.</li>
<li>Google Maps lies to you and smiles about it<a href="http://i.imgur.com/Rtxms.gif" target="_blank">.</a></li>
<li>Sometimes, bars play Adult Swim TV shows (read: Robot Chicken) <a href="http://campl.us/LiJ" target="_blank">on their big screens</a> which means they get a better tip.</li>
<li>Amanda Stevenson and I <a href="https://twitter.com/#!/MikeRapin/status/51400676382740480" target="_blank">have</a> no <a href="https://twitter.com/#!/MikeRapin/status/52172886789734400">sense</a> of direction... ever.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.mikerapin.com/blog/620/zine-fest-really-quick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zine Fest and some procrastination</title>
		<link>http://www.mikerapin.com/blog/614/zine-fest-and-some-procrastination/</link>
		<comments>http://www.mikerapin.com/blog/614/zine-fest-and-some-procrastination/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 13:42:27 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[update]]></category>
		<category><![CDATA[c2e2]]></category>
		<category><![CDATA[chicago zine fest]]></category>
		<category><![CDATA[destroythecyb.org!]]></category>
		<category><![CDATA[lethargy]]></category>
		<category><![CDATA[weekly writings]]></category>
		<category><![CDATA[writing]]></category>
		<category><![CDATA[zine]]></category>

		<guid isPermaLink="false">http://www.mikerapin.com/blog/?p=614</guid>
		<description><![CDATA[C2E2 was last weekend. It was pretty fantastic. I'm just being lethargic about writing a post on DestroyTheCyb.org! about it. I may get around to it this afternoon when I have some free time. My good friend Amanda Stevenson performed some magic and got my zine printed at a super discounted price for this upcoming [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.c2e2.com/">C2E2</a> was last weekend. It was pretty fantastic. I'm just being lethargic about writing a post on <a href="http://www.destroythecyb.org/">DestroyTheCyb.org!</a> about it. I may get around to it this afternoon when I have some free time.</p>
<p>My good friend <a href="http://www.awanderingdream.blogspot.com/">Amanda Stevenson</a> performed some magic and got my zine printed at a super discounted price for this upcoming weekend--<a href="http://chicagozinefest.org/">The Chicago Zine Fest</a>. I have yet to staple the 30ish copies, but they're sitting in a pile in my bedroom staring at me. I'm starting to realize that all of the emotion and angst I put into that little booklet is now in print and maybe, just maybe, someone is going to read it. It's a bit intimidating.<br />
<span id="more-614"></span><br />
I went on a writing spree last night before bed for about 30 minutes and I think it's the start to issue #2 of my zine. It will most definitely be less angry and more of a self-observation and/or random observations with some snarky tidbits here and there. I'm not aiming for a general theme, but then again I wasn't for my last zine and somehow it was centralized around stress/sleep/sadness. I feel the next issue will be a bit happier or more positive in general.</p>
<p>I've been lacking on <a href="http://howto.destroythecyb.org/">Weekly Writings</a>. A combination of going to Phoenix, being at C2E2, homework, and being just plain busy has put me two weeks behind. But I'm not giving up. I have a handful of story ideas in the mix, I just need to extract them from my head and put them on paper (or into some kind of digital text document). A mix of sci-fi and suspense is what I've come up with so far, but I want to push myself to get away from death-themed stories--if you've read anything on the site by me so far, you'll get what I mean. I may take some stories I've heard from friends and fictionalize them... there's a few good ones I have somewhere in the attic of my mind.</p>
<p>So... procrastination seems to be my issue. Damn TV shows and lethargy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikerapin.com/blog/614/zine-fest-and-some-procrastination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
