<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>this here thing shall serve as my development blog, my professional ramblings, my scratchpad… a well for my dying sanity.

welcome aboard.</description><title>//inconclusive.insanity</title><generator>Tumblr (3.0; @inconclusiveinsanity)</generator><link>http://inconclusiveinsanity.tumblr.com/</link><item><title>I'm so used to using text editors to type up my thoughts and math...</title><description>&lt;p&gt;but DAMN is it so much easier to just write it down by hand. :P&lt;/p&gt;</description><link>http://inconclusiveinsanity.tumblr.com/post/13581337435</link><guid>http://inconclusiveinsanity.tumblr.com/post/13581337435</guid><pubDate>Wed, 30 Nov 2011 23:19:09 -0700</pubDate></item><item><title>Hrm... is 15MBs too much for DOS? :P</title><link>http://inconclusiveinsanity.tumblr.com/post/13561228837</link><guid>http://inconclusiveinsanity.tumblr.com/post/13561228837</guid><pubDate>Wed, 30 Nov 2011 15:21:48 -0700</pubDate></item><item><title>Making a Minecraft launcher [for GNOME, using Fedora]</title><description>&lt;p&gt;So. :D I just created a Minecraft launcher for Linux (for all users).&lt;/p&gt;
&lt;p&gt;A small feat, sure, but it&amp;#8217;s progress! I&amp;#8217;M LEARNING THINGS!&lt;/p&gt;
&lt;p&gt;(if you&amp;#8217;re interested, read on for a &lt;strike&gt;quick&lt;/strike&gt; excessively wordy, but simple tutorial on how)&lt;!-- more --&gt;&lt;/p&gt;
&lt;p&gt;First and foremost, you&amp;#8217;ll need to download the latest minecraft.jar from &lt;a href="http://www.minecraft.net/download" title="Minecraft - Download Page" target="_blank"&gt;here&lt;/a&gt;. You can place it anywhere, since we&amp;#8217;re about to move it, so I just left it to download to the default Downloads directory (in your home folder).&lt;/p&gt;
&lt;p&gt;Now, either crack into the .jar and find the Minecraft icon (which I can&amp;#8217;t), or just go online and download one. &lt;a href="http://browse.deviantart.com/?qh=&amp;amp;section=&amp;amp;global=1&amp;amp;q=minecraft+icon" title="DeviantArt - Minecraft Icons [Search]" target="_blank"&gt;Here&lt;/a&gt;&amp;#8217;s a good place to look.&lt;/p&gt;
&lt;p&gt;[Protip, when you download an icon, make sure to save it as something like minecrafticon.png, so it&amp;#8217;s easier to find than, say, mine-cr23430-12zx34fe24234.png64x64x100billymays.png. Also, I don&amp;#8217;t know if any file format other than .png will work (.svg might), so try to find one of those. ALSO, try to get one that&amp;#8217;s 256x256x32&amp;#8230; always better to scale up. BUT, figure out what your Desktop Environment uses&amp;#8230; I&amp;#8217;m using GNOME 3, which uses full-size 256x256 icons, hence my decision there. Point is, just be smart, adapt this tutorial to your needs.]&lt;/p&gt;
&lt;p&gt;Now, got all that ready?&lt;/p&gt;
&lt;p&gt;At this point, you&amp;#8217;ll need sudo/root permissions. If you don&amp;#8217;t have access to these&amp;#8230; go figure that problem out yourself and come back later. :D&lt;/p&gt;
&lt;p&gt;First things first! Let&amp;#8217;s move that icon to the icons directory! Typically, this is found on &lt;strong&gt;/usr/share/icons&lt;/strong&gt;, and is where I found mine, but if you aren&amp;#8217;t sure, open a terminal and type:&lt;/p&gt;
&lt;pre&gt;whereis icons&lt;/pre&gt;
&lt;p&gt;This should show you which directory your icons folder is located. If so, let&amp;#8217;s get moving! Using the copy (or move) command, let&amp;#8217;s get that Minecraft icon where it needs to be&amp;#8230; in the public icons folder! (And, if you aren&amp;#8217;t root (which you shouldn&amp;#8217;t be), you might as well switch over to root with the substitute user command for the remainder of this tutorial)&lt;/p&gt;
&lt;pre&gt;su&lt;br/&gt;[root password]&lt;br/&gt;cp /home/your-name-here/downloads/minecrafticon.png /usr/share/icons/minecraft.png&lt;/pre&gt;
&lt;p&gt;Tada! You should now see your brand-spanking new icon in the public icons folder!&lt;/p&gt;
&lt;p&gt;Now, we&amp;#8217;ll want to go ahead and move our minecraft.jar to it&amp;#8217;s appropriate folder. (By the way, I prefer copying over moving, since if something goes wrong, you still have the original in a safe location.) I moved it to the /opt/ directory, since I noticed all my other 3rd-party installed games and packages ended up there. So&amp;#8230;&lt;/p&gt;
&lt;pre&gt;cd /opt&lt;br/&gt;mkdir minecraft&lt;br/&gt;cp /home/your-name-here/downloads/minecraft.jar /opt/minecraft/minecraft.jar&lt;br/&gt;&lt;/pre&gt;
&lt;p&gt;&amp;#8230;aaaaand blam-o! You just switched to the /opt directory, created the minecraft directory, and copied the minecraft.jar into a publicly accessible program directory! Go you! :D&lt;/p&gt;
&lt;p&gt;Now, finally&amp;#8230; to put it all together. You&amp;#8217;ll need to find your application launcher folder, so unless it&amp;#8217;s not in &lt;strong&gt;/usr/share/applications&lt;/strong&gt;, bust out the whereis again and see if you can&amp;#8217;t find it. If you&amp;#8217;ve still no luck, just do a filesystem search for &lt;a href="http://library.gnome.org/admin/system-admin-guide/stable/menustructure-desktopentry.html.en" title=".desktop File Structure" target="_blank"&gt;foo.desktop&lt;/a&gt; files (you&amp;#8217;re looking for the folder that has a bunch of them in there). &amp;#171;Sidenote, click that link for a glimpse at what .desktop files are supposed to look like. You should have no reason to see this, but it&amp;#8217;s a handy link, and is more for my reference anyway :D&amp;#187;&lt;/p&gt;
&lt;p&gt;Once you get there, you have two options. One, you can either copy another .desktop file, open the new file, and edit it to your content, or you can just make a new file and add the appropriate values. If you&amp;#8217;re going to copy a file (like I did), try to find a game or something similar&amp;#8230; though any will do.&lt;/p&gt;
&lt;pre&gt;cp /usr/share/applications/pick-any-file-here.desktop /usr/share/applications/minecraft.desktop&lt;/pre&gt;
&lt;p&gt;Once you&amp;#8217;ve got that down&amp;#8230; time to bust open vi :D (note, you can use this next command for making a new file named minecraft.desktop too)&lt;/p&gt;
&lt;pre&gt;vi /usr/share/applications/minecraft.desktop&lt;/pre&gt;
&lt;p&gt;Once here, you&amp;#8217;ll either see a file with lots of values that look similar to the one below, or you&amp;#8217;ll see nothing. Either way, you want to make your file look something like this:&lt;/p&gt;
&lt;pre&gt;[Desktop Entry]&lt;br/&gt;Categories=Game;ActionGame;AdventureGame;&lt;br/&gt;Exec=java -cp /opt/minecraft/minecraft.jar net.minecraft.LauncherFrame&lt;br/&gt;Path=/opt/minecraft/&lt;br/&gt;Icon=minecraft&lt;br/&gt;Terminal=false&lt;br/&gt;Type=Application&lt;br/&gt;Name=Minecraft&lt;br/&gt;Comment=The world's most exciting block simulator!&lt;br/&gt;&lt;/pre&gt;
&lt;p&gt;(If you&amp;#8217;ve never used vi before, try hitting the &amp;#8220;I&amp;#8221; key. I think any letter does it, but once you hit a key and start typing, it enters Insert mode, which lets you change things. When you&amp;#8217;re all done with that, hit the Esc key to exit editing mode, then type:&lt;/p&gt;
&lt;pre&gt;:wq&lt;/pre&gt;
&lt;p&gt;&amp;#8221;:&amp;#8221; sends commands to vi (I think?), &amp;#8220;w&amp;#8221; stands for write (same as save), and &amp;#8220;q&amp;#8221; stands for quit.)&lt;/p&gt;
&lt;p&gt;Tada! Your launcher should be working now! (If not, try running the command you&amp;#8217;ve got listed under &amp;#8220;Exec&amp;#8221; in a separate terminal&amp;#8230; if that works, your Path might be wrong (I accidentally had &amp;#8220;minecraft.jar&amp;#8221; as part of my Path variable). If it doesn&amp;#8217;t work, either java isn&amp;#8217;t working properly or you did something wrong).&lt;/p&gt;
&lt;p&gt;Aaaaaaaaaaaaaaaaaaaaaaand&amp;#8230; let the magic begin. :D&lt;/p&gt;</description><link>http://inconclusiveinsanity.tumblr.com/post/12755644357</link><guid>http://inconclusiveinsanity.tumblr.com/post/12755644357</guid><pubDate>Sun, 13 Nov 2011 14:37:00 -0700</pubDate><category>tutorial</category><category>linux</category><category>launcher</category><category>minecraft</category><category>notes</category></item><item><title>libpcre.so.3 == libpcre.so.0.0.1</title><description>&lt;p&gt;If you try to install &amp;lt;things requiring libpcre.so.3&amp;gt; on Fedora, you  might get an error about &lt;strong&gt;libpcre.so.3&lt;/strong&gt; not being found.  To correct  this, just symlink your /lib/libpcre.so.0 to libpcre.so.3, like this:&lt;/p&gt;
&lt;blockquote&gt;
&lt;pre&gt;ln -s /lib/libpcre.so.0.0.1 /lib/libpcre.so.3&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;p&gt;And reload your libraries with:&lt;/p&gt;
&lt;blockquote&gt;
&lt;pre&gt;ldconfig -v&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;p&gt;You  don&amp;#8217;t have to download that Debian version of libpcre, they just  unilaterally chose to rename libpcre as version 3 for some reason, and  because so many people use Ubuntu, it&amp;#8217;s starting to creep into common  usage.&lt;/p&gt;</description><link>http://inconclusiveinsanity.tumblr.com/post/12632708655</link><guid>http://inconclusiveinsanity.tumblr.com/post/12632708655</guid><pubDate>Thu, 10 Nov 2011 23:19:00 -0700</pubDate><category>linux</category><category>notes</category><category>tweaks</category><category>help</category></item><item><title>Photo</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_ltsionn8qw1qi5850o1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;</description><link>http://inconclusiveinsanity.tumblr.com/post/12152198652</link><guid>http://inconclusiveinsanity.tumblr.com/post/12152198652</guid><pubDate>Sun, 30 Oct 2011 23:48:24 -0600</pubDate></item><item><title>suitep:

Binta and her cubs, Joco and Zari, sniff a suspicious...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_ltsbfqHHQ61qz7t8to1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://suitep.tumblr.com/post/12035818344/binta-and-her-cubs-joco-and-zari-sniff-a" target="_blank"&gt;suitep&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Binta and her cubs, Joco and Zari, sniff a suspicious pumpkin filled with meat before tearing it to pieces at the zoo in Hanover, Germany.&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://inconclusiveinsanity.tumblr.com/post/12090076124</link><guid>http://inconclusiveinsanity.tumblr.com/post/12090076124</guid><pubDate>Sat, 29 Oct 2011 16:05:05 -0600</pubDate><category>awesome</category></item><item><title>thenextweb:

DocScan for iOS will turn photos you’ve already...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_ltubk9DFfF1qejjfeo1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://thenextweb.tumblr.com/post/12081719628/docscan-for-ios-will-turn-photos-youve-already" target="_blank"&gt;thenextweb&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://itunes.apple.com/us/app/docscan/id453312964?mt=8" target="_blank"&gt;DocScan&lt;/a&gt;&lt;span&gt; for iOS will turn photos you’ve already taken or new ones, and turn them into a worthwhile and professional scan in PDF format.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Once you’ve scanned your image, you can then save it as a PDF with &lt;a href="http://itunes.apple.com/us/app/docscan/id453312964?mt=8" target="_blank"&gt;DocScan&lt;/a&gt;. Saving them items lets you easily bring them back up again to email, upload to Google Docs, or post on Facebook. The easy upload to Google Docs feature alone makes DocScan worth the download.&lt;/p&gt;
&lt;p&gt;(via &lt;a href="http://thenextweb.com/apps/2011/10/28/docscan-is-your-mobile-document-scanner-for-ios/" target="_blank"&gt;DocScan is your mobile document scanner for iOS - The Next Web&lt;/a&gt;)&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://inconclusiveinsanity.tumblr.com/post/12082552493</link><guid>http://inconclusiveinsanity.tumblr.com/post/12082552493</guid><pubDate>Sat, 29 Oct 2011 12:55:00 -0600</pubDate><category>gadget</category><category>technology</category></item><item><title>nerdology:

This is insane. Ok, let’s get into it. K represents...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_ltk63hAsqQ1qztitko1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://nerdology.tumblr.com/post/11856889012" target="_blank"&gt;nerdology&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;This is insane. Ok, let’s get into it. K represents potassium on the periodic table, and v is most likely velocity…&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://inconclusiveinsanity.tumblr.com/post/12019166997</link><guid>http://inconclusiveinsanity.tumblr.com/post/12019166997</guid><pubDate>Thu, 27 Oct 2011 21:09:56 -0600</pubDate><category>nerdy</category><category>lol</category></item><item><title>Photo</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_ltgw0g839z1qccqe9o1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;</description><link>http://inconclusiveinsanity.tumblr.com/post/12018934247</link><guid>http://inconclusiveinsanity.tumblr.com/post/12018934247</guid><pubDate>Thu, 27 Oct 2011 21:03:48 -0600</pubDate><category>research</category><category>social</category><category>user</category><category>web</category></item><item><title>Almost done formatting... :D</title><description>&lt;p&gt;&amp;#8230;&lt;/p&gt;
&lt;p&gt;&amp;#8230;&lt;/p&gt;
&lt;p&gt;&amp;#8230;YAY! :D :D :D&lt;/p&gt;
&lt;p&gt;aaaaaaaand, now to format the partition I&amp;#8217;m &lt;em&gt;actually&lt;/em&gt; going to be using. (silly installer).&lt;/p&gt;
&lt;p&gt;Anyway, hi! I&amp;#8217;m Rob. I&amp;#8217;m a digital citizen (read: addicted to the internet), a gamer, a tinkerer, and a lover of all things. Oddly, as much as I love (and am addicted to) electronics and technology in general, I frequently go on walks through the forest and pretend life as we know it doesn&amp;#8217;t exist yet. I despise capitalism, but am looking to climb my way up the ladder. And, I love the benefits of a well-thought out plan&amp;#8230; but I love throwing it all to the wind just as much. :D&lt;/p&gt;
&lt;p&gt;Now, why does this blog exist? Well, simply enough, the other day, a few friends and I were talking our typical banter, chatting, discussing, debating, and creating&amp;#8230; when suddenly, one topic WILDLY led to another, and a billion-dollar idea was formed. Call me cocky&amp;#8230; but I&amp;#8217;m certain that if we see this through to the end, we could become the next big name in consumer electronics and entertainment. :D&lt;/p&gt;
&lt;p&gt;But, don&amp;#8217;t get me wrong&amp;#8230; while money is definitely one of our motivating factors, we&amp;#8217;re not necessarily looking to get rich. We simply had an awesome idea, and we want to see it happen. That&amp;#8230; and there&amp;#8217;s a few regular practices in our specific industry that we just don&amp;#8217;t agree with. Armed with our ideas, we believe we can cast our product into the murky seas of money-making and reform the industry to work the way it should be: focused on entertainment.&lt;/p&gt;
&lt;p&gt;Over the course of the next few months, you&amp;#8217;ll probably see me rant about the industry (which I&amp;#8217;m intentionally leaving out, for now at least, until we gain a better idea of what we&amp;#8217;re allowed to say), go on tirades about technology that won&amp;#8217;t agree with me (when I probably just skipped over a simple option, hah), and sketch out notes for myself (and possibly even you!).&lt;/p&gt;
&lt;p&gt;If you know me, please, feel free to follow me! Don&amp;#8217;t know me? Follow me anyway! :D However, just know that once my server is all set up (the very thing that&amp;#8217;s reformatting right now), I maaay be migrating this blog to over there. I&amp;#8217;ll post a link once it gets to that point, though. :]&lt;/p&gt;
&lt;p&gt;[&amp;#8230;aaaaaaagh, ONLY 7%? this&amp;#8217;ll be a while&amp;#8230; time for some quality gaming time? :D]&lt;/p&gt;
&lt;p&gt;Ummm&amp;#8230; yeah! Thanks for reading, and I&amp;#8217;ll catch ya soon :)&lt;/p&gt;</description><link>http://inconclusiveinsanity.tumblr.com/post/12017779941</link><guid>http://inconclusiveinsanity.tumblr.com/post/12017779941</guid><pubDate>Thu, 27 Oct 2011 20:34:00 -0600</pubDate><category>dev</category><category>status</category><category>update</category></item></channel></rss>
