<?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>Reel Geek</title>
	<atom:link href="http://reelgeek.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://reelgeek.co.uk/blog</link>
	<description>in an adventure in coding</description>
	<lastBuildDate>Fri, 11 May 2012 18:34:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Graham&#8217;s Scan</title>
		<link>http://reelgeek.co.uk/blog/2012/05/11/grahams-scan/</link>
		<comments>http://reelgeek.co.uk/blog/2012/05/11/grahams-scan/#comments</comments>
		<pubDate>Fri, 11 May 2012 18:34:59 +0000</pubDate>
		<dc:creator>Luthi</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[Applied Algorithms]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[computational geometry]]></category>

		<guid isPermaLink="false">http://reelgeek.co.uk/blog/?p=1278</guid>
		<description><![CDATA[Last Friday I attempted my implementation of Graham&#8217;s Scan. My C++ is a bit rusty since I haven&#8217;t used it since the fall. Last term was all C, but we were doing with it was different enough to make me a bit rusty. The project isn&#8217;t due until this Monday so the plan was to [...]]]></description>
			<content:encoded><![CDATA[<p>Last Friday I attempted my implementation of Graham&#8217;s Scan.  My C++ is a bit rusty since I haven&#8217;t used it since the fall.  Last term was all C, but we were doing with it was different enough to make me a bit rusty.  The project isn&#8217;t due until this Monday so the plan was to get the following coded:</p>
<p>1.  Write the point class for holding the coords and the doing the math needed &#8211; mostly cross product and distance.</p>
<p>2. Input the points coords from the given files &#8211; we were given 6 different sets.  To make it easier on the grader, I made a switch statement so all they have to do is type the # of the file and it passes the file name to the input function.  I&#8217;m nice like that.</p>
<p>3.  Write and test the function that finds Point 0 &#8211; the point with the smallest Y coord.  And if there is a tie, to choose the one with the smallest X. </p>
<p>4.  Write and test a merge sort that sorts the remaining points by polar axis to P0 by calculating the cross product (the vector of P0Pi x the vector of P0Pj).  If positive Pi goes first and if negative Pj goes first. </p>
<p>Midnight.  This is where I hit a brick wall.  Or more specifically this part of my notes: if two points have the same polar angle, throw out the one with the shortest distance to P0.  Fuck.  I was using an array of point objects.  Doing it in the merge sort might have worked by just ignoring it and not copying, but not if it was the last element and then you have issues with the size.  I might have gotten it to work correctly, but it seemed more trouble than it was worth.  </p>
<p>So which container to use instead?  A vector would be the easiest to implement, but will it work?  A linked list would be a lot more complicated, but would work better.  I opened a new project and started over using a linked list.  </p>
<p>1am: eff this.  I need to sleep on it.  I have an assignment due this week that I haven&#8217;t even looked at yet.  Not to mention personal obligations.  There really are only so many times a person can not show up to social events before people stop asking.  </p>
<p>8am: I should just try a vector.  Just to see what happens.  By 1pm I had a fully working version including the merge sort!  Which left enough time to go to the market, stuff some strawberries and go to the cinco de mayo party.    </p>
<p>Would a link list be better?  Yeah.  But I think it would have been overkill for the assignment.  There are only 18 set of points in the largest file, so the copying of merge sort isn&#8217;t a big deal.  It also doesn&#8217;t matter if I rearrange the points since the only thing I&#8217;m doing with them is this.  Using a vector is the most efficient way to go in this case.</p>
<p>All I have left to do this weekend is the graham&#8217;s scan function.  Should be fine.  </p>
]]></content:encoded>
			<wfw:commentRss>http://reelgeek.co.uk/blog/2012/05/11/grahams-scan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Applied Algorithms</title>
		<link>http://reelgeek.co.uk/blog/2012/05/05/applied-algorithms/</link>
		<comments>http://reelgeek.co.uk/blog/2012/05/05/applied-algorithms/#comments</comments>
		<pubDate>Sat, 05 May 2012 01:57:56 +0000</pubDate>
		<dc:creator>Luthi</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[Applied Algorithms]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[class]]></category>

		<guid isPermaLink="false">http://reelgeek.co.uk/blog/?p=1241</guid>
		<description><![CDATA[This class is turning out to be a mix of not as terrible as I thought it would be, yet really effing difficult. A long time ago I was really good a math. Then they stopped making me take it after geometry in middle school. That was 20 years ago. Art school? That was so [...]]]></description>
			<content:encoded><![CDATA[<p>This class is turning out to be a mix of not as terrible as I thought it would be, yet really effing difficult.  </p>
<p>A long time ago I was really good a math.  Then they stopped making me take it after geometry in middle school.  That was 20 years ago.  Art school?  That was so basic and I tested out of it.  Last year I took a data structures class that touched on algorithms that had me exponentially lost in figuring out run-times.  The book was even worse.  It was as if they were all speaking a completely different language.    </p>
<p>This class?  Now I finally understand what they were talking about before.  Well&#8230; I think so.  My algebra is still rusty, but I&#8217;m following the math part just fine.  Mostly fine.  </p>
<p>After spending the better part of 2 years thinking in C++, now I <del datetime="2012-05-04T18:10:42+00:00">have</del> get to force myself to push all of that aside.  The point of the class is to think of the big ideas, not syntax and code details.  Write an algorithm that does something specific and prove the run-time without thinking about syntax.  Without thinking in code.  Write it in English pseudocode.  </p>
<p>I follow everything pretty well in class, even the math which is really rusty.  But my head keeps getting stuck at &#8220;you left out so much of the implementation!&#8221;  &#8220;But you have to link the nodes to&#8230;.&#8221;  Damnit.</p>
<p>The first homework assignment question?  I paced my apartment for the better part of 4 hours.  Then I had 8 more left.  </p>
<p><strong>Midterm: </strong><br />
I&#8217;m a really horrible test taker.  Or at least now I am.  Which is kind of odd given that I have a scary good memory.  What happens is this: my hands start shaking, a migraine sets in from teeth grinding and my mind goes blank.  It&#8217;s partly due to going back to school, changing careers, and not being completely sure I&#8217;m capable of using the other side of my brain after so many years focusing on art.  Which should have gone away now due to how well I&#8217;ve been doing.  </p>
<p>It has gotten better though.  What really helps is a mini meditation right before.  I&#8217;m a Buddhist (Zen) and one of the teachings is a short breathing exercise to calm down, focus, and bring yourself into the moment.  </p>
<p>Luckily the midterm wasn&#8217;t so bad.  For the most part was following algorithms we went over in class at each step given the input.  Merge sort, binary search, coin change, longest common sub-sequence, etc.  The issue happened at the end when I came to:</p>
<p>Design an algorithm that given an array where you don&#8217;t know the length&#8230;.  Hold on.  If I don&#8217;t know where the end is, how can I do anything without it possibly blowing up for accessing memory outside of the bounds of the array?  And that is where my brain stayed.  Based on the asked for running time, I knew which search algorithm I needed to modify.  But I kept getting stuck on the implementation of it.  I eventually got it, but it was still frustrating.<br />
<strong><br />
Programming Assignment:</strong><br />
All of the work so far has been the higher level thought.  This is the one project that we will actually be implementing something.  Yay!  C++ how I missed you!  </p>
<p>The project is to implement the graham&#8217;s scan algorithm: computing the convex hull of a set of points with a time complexity O(nlgn).  Let&#8217;s see how far I can get.  </p>
]]></content:encoded>
			<wfw:commentRss>http://reelgeek.co.uk/blog/2012/05/05/applied-algorithms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C2E2</title>
		<link>http://reelgeek.co.uk/blog/2012/05/04/c2e2/</link>
		<comments>http://reelgeek.co.uk/blog/2012/05/04/c2e2/#comments</comments>
		<pubDate>Fri, 04 May 2012 18:34:46 +0000</pubDate>
		<dc:creator>Luthi</dc:creator>
				<category><![CDATA[Cons]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[c2e2]]></category>
		<category><![CDATA[comic con]]></category>
		<category><![CDATA[comics]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://reelgeek.co.uk/blog/?p=1248</guid>
		<description><![CDATA[A couple of weeks ago was C2E2 (Chicago Comic Con and Entertainment Expo). I was going to go for just an afternoon since I&#8217;m not all that big into comics anymore&#8230; who has the time for that? The last series I read was Y: The Last Man. A day to wander around the show room [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago was C2E2 (Chicago Comic Con and Entertainment Expo).  I was going to go for just an afternoon since I&#8217;m not all that big into comics anymore&#8230; who has the time for that?  The last series I read was <a href="http://en.wikipedia.org/wiki/Y:_The_Last_Man">Y: The Last Man.</a>  </p>
<p>A day to wander around the show room and just geek out for a bit should be enough, right?  That&#8217;s what I thought until I looked at the panel line up.  A few video game panels including one with Coach Tony&#8217;s son, Taylor.  Did I forget to mention that my Kung Fu coach is Kung Lao (Mortal Kombat 2 and 3) and his son is Kung Lao in the 2011 version?  They are both awesome.  And oddly it means the gym is filled with nerds.  <a href="http://www.ekfmartialarts.com/">EKF</a>!!!</p>
<p>My plan was to go by myself.  Whenever I go to cons with other people, I don&#8217;t meet anyone new and I spend far too much of my time coordinating schedules and finding people.  This time around I was going to do whatever I wanted and not care about what other people thought of it.  Best decision ever.  I met so many different people.  Had all sorts of different conversations.  Comics/art/games/kung fu/school/Buddhism/coding/tech/tattoos/etc.  It was bloody brilliant.</p>
<p><strong>Friday:   </strong> </p>
<p>I spent a good portion of my day just wandering around the show room.  What I really mean by that is artist alley.  Everything else was just kind of&#8230; meh.  Like I said, I don&#8217;t really read comics anymore.  I sometimes flirt with getting back into it, but I don&#8217;t know where I&#8217;d find the time.  I&#8217;m already stretched pretty thin.  Plus I always read trades and I didn&#8217;t see many of them for sale, in my really brief walk through.  The tees were over priced and only 1 thing jumped out at me&#8230; something about gamer girls not being suitable for normal guys.  However it was only available in girl sizes where even the large cut off circulation in the arms for someone who&#8217;s done martial arts for 27 years.  </p>
<p>What I think is hilarious is that I never once ran into the guys from EKF.  How did I miss 5 guys walking around with wushu weapons?  </p>
<p>I had a blast in artist&#8217;s alley.  Where else can you have an in depth conversation about xkcd with artists?  I was constantly getting stopped about my tattoos, my xkcd tee (I&#8217;m not slacking off, my code is compiling), and the more shocking to me the Buddhist beads I wear.  The thing about wandering about alone, you are far more approachable.  I think in a few short hours, I filled my talking to people quota.  Plus I got to look at awesome art.  </p>
<p><strong>The Geek Girl and the Artist: Women&#8217;s Perspectives on Geek Culture, Gender Identity and Art/Media:</strong><br />
The only panel I went to on Friday.  I&#8217;m really going to try and not get all angry feminist on this blog, so bear with me.  There are real issues with girls and sexism in geekdom and it was nice to see this panel available.  Plus the amount of turnout of the male gender.  A lot of points got brought up, but I think it might have been glossed over a bit.  Meaning the panelists were a bit too far on the positive side.    </p>
<p>For instance, one said that being a geek helped her fit in with her co-workers in her techy job.  But I don&#8217;t remember anything mentioned that as women we have to prove that we aren&#8217;t a <a href="http://www.themarysue.com/on-the-fake-geek-girl/">fake geek</a>, especially more now thanks to hipsters.  They do exist, I&#8217;ve met several, and all have been hipsters.  Being someone who gets confused as a hipster (black rim glasses, tattoos, piercings, nerdy tees, cycling, and crazy hair), I do actually end up spending quite a bit of time justifying my reasons for being a nerd (seriously?) and ya know.. proving my history of it.  For the record, I don&#8217;t like apple products, I&#8217;m not opinionated about music, I don&#8217;t go out much and every hipster I&#8217;ve met I&#8217;ve found pretty douchy.  </p>
<p>I think they also barely touched on the overly sexualized nature of geekdom and the sexual harassment we do have to endure.  Especially in video games.  You know because we are all <a href="http://fatuglyorslutty.com/">fat, ugly or slutty</a>.    </p>
<p>On a logical standpoint, I completely understand why they tried to keep it positive.  1.  It scares off women who are trying out geekdom to see if they like it.  Keeping it positive, mitigates that hesitation.    2.  Whenever a woman starts talking about these kinds of issues, we get labeled overreacting and feminist.  Proof?  Read the comments on this <a href="http://arstechnica.com/gadgets/news/2012/03/does-this-smartphone-make-me-look-stupid-meet-the-ladyphones.ars">ars post</a>.  Constantly undermining our viewpoint based on being an over-sensitive female, sadly makes us second guess ourselves.  Or at least hesitate when talking about it.</p>
<p>I tried.  I really did.</p>
<p>The free shuttle stopped at 8pm but my panel didn&#8217;t get out until 8:30.  Boo!  So I split a cab to the loop with a bunch of strangers, who turned out to be very interesting and we went out for burritos and beer.  Oh that was so needed.  </p>
<p><strong>Saturday:</strong></p>
<p><strong>Bringing Video Games to Life: The Men Behind the Motion</strong><br />
Really huge turn out for this.  It was really weird watching guys I&#8217;ve seen fall on their face in class demo on stage in front of a crowd.  Wushu: if don&#8217;t fall or hit yourself with your weapon, you aren&#8217;t trying hard enough.  <a href="http://www.youtube.com/user/luthiify/videos">Just watch the vids I took</a>.</p>
<p>After that I ran around with the ekf people until my next panel&#8230;</p>
<p><strong>Behind the Graphics: a Video Game Industry Round Table</strong><br />
The majority of the talk was interesting.  They had a programmer, technical artist, art director, animator and a programmer/everything else really indie guy.  For the most part it was pretty basic things of who they are, where they work, and how they got into the industry.  </p>
<p>The thing that really struck a chord with me was when 2 of them stressed pretty heavily how you have to be the best of the best in order to get a job.  I understand how you&#8217;d be able to tell the difference with say artists, but how exactly do you gauge that with programming?  How about technical artist?  The more I learn about the role of a technical artist, the more I see it as a fit.  However there is a time and a place for these kinds of discussions.  It really didn&#8217;t fit into the lighthearted feeling of the rest of it and it never really got expanded.    </p>
<p>I&#8217;m not a fan of our current culture of praising mediocrity, because it does seriously reduce effort put in.  Or that everyone can do anything they want as long as they try, because people are different and excel at different things.  I can&#8217;t draw myself out of a box and that&#8217;s OK.  I have a really good eye for photography, but my execution is&#8230;decent.  I was a really good editor, but I didn&#8217;t have the personality for it.  I&#8217;m too much of an introvert to be constantly networking with people I have little in common with.  The majority of the work is contract based and the constant looking for a job was really frustrating.  Then I fucked up my wrist.  No more motion graphics = death of an editor.</p>
<p>I met up with the ekf guys again for a bit until I had to run off to another panel.  This post is already a wall of text so, I&#8217;m going to leave it at that.</p>
<p><strong>Sunday:</strong></p>
<p><strong>Chicago Exists! The Games Industry in Chicago</strong><br />
This was an extremely positive experience.  While there isn&#8217;t all that much of a big industry in Chicago, supposedly the community is really good less about competition.  More open and helpful.  </p>
<p>They talked quite a bit about <a href="http://igdachicago.com/">IDGA Chicago</a> and that it is open to students.  Another was brought up called indie city games.  I was going to ask when students should be getting involved, but from everything else they said it seemed like the answer was right away.  But&#8230; I can&#8217;t make even make something other than text come up on the screen.  Complex algorithms?  Sure.  Data structures of c++?  Yep.  I wrote a ray tracing renderer in the fall, but not how to use it.  Yeah.  That makes no sense to me either.  Basically we did the math/computational geometry/etc for it to show up on screen but not the show up on screen part.      </p>
<p>I guess it&#8217;s time to put the excuses away and just start showing up to meetings and talking to people.  </p>
<p><strong>final thoughts:</strong><br />
I bought a lot of geek art and that was worth it alone.  I also have a bit more of a direction to focus on other than just the classes and assignments.  Now I really can&#8217;t wait for PAX Prime in the fall.  </p>
]]></content:encoded>
			<wfw:commentRss>http://reelgeek.co.uk/blog/2012/05/04/c2e2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tech news weirdness</title>
		<link>http://reelgeek.co.uk/blog/2012/04/22/tech-news-weirdness/</link>
		<comments>http://reelgeek.co.uk/blog/2012/04/22/tech-news-weirdness/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 02:55:09 +0000</pubDate>
		<dc:creator>Luthi</dc:creator>
				<category><![CDATA[Randomness]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[faffing]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[patents]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://reelgeek.co.uk/blog/?p=1247</guid>
		<description><![CDATA[Here we go.. another night of procrastinating homework. It&#8217;s Saturday night.. which isn&#8217;t so lame since it&#8217;s technically my Sunday because I work tomorrow. Anyways.. I spent most of the day cleaning and at kung fu, so applied algorithms isn&#8217;t really something I want to do at the moment. Now I have 1 screen of [...]]]></description>
			<content:encoded><![CDATA[<p>Here we go.. another night of procrastinating homework.  It&#8217;s Saturday night.. which isn&#8217;t so lame since it&#8217;s technically my Sunday because I work tomorrow.  Anyways.. I spent most of the day cleaning and at kung fu, so applied algorithms isn&#8217;t really something I want to do at the moment.  Now I have 1 screen of catching up on The Guild and Zero Punctuation and the blog on the other.  I&#8217;m such a good multitasking faffer.  It&#8217;ll get done, done correctly and on time.  </p>
<p>A long time ago when my focus was art/film/animation/whatever I had stopped reading tech news.  I recently got back into it and all I can say is what the hell is going on?  </p>
<p>The patent wars?  Seriously?  Patents have no place in the tech field.  Copyright?  Yes.  Patents?  No.  The problem with patents as a non-lawyer sees it, is that they are far too broad which stifles innovation.  1 person makes something cool, patents it, and no one else can take the idea and improve on it.  That&#8217;s how the tech industry has worked since the beginning.  You can&#8217;t really call foul this late in the game, especially when your company has done the exact same thing.  *cough* apple *cough*.</p>
<p>ebook price fixing?  Apple: hey publishers, if you want to sell ebooks for our shiny new ipad (please don&#8217;t laugh at the name) that everyone is going to want cause we are apple and we are the hippest shit out there, you have to agree to our terms. Set whatever price you want unlike that evil empire Amazon.  We are going to take 30% of every single sale for no reason other than we can, so add that to your price.  Oh and <strong>you can&#8217;t sell them cheaper anywhere else.</strong></p>
<p>See that last part there?  That&#8217;s against the law.  Oops.  Enter in the DoJ, European Commission, 16 states and a few class action law suits from Canada.  What I don&#8217;t understand is where Apple is getting the balls to actually fight this.  The line they are trying to stand on is that they were trying to break the monopoly held by amazon and it&#8217;s better for the consumer.  </p>
<p>I&#8217;m a kindle consumer.  I don&#8217;t want to read a book on a backlit screen, sorry apple.  I <3 my kindle.  Hard.  It is hands down my favourite gadget.  I can carry around programming and personal books without killing my back and decide which I want to read during my daily hour long train commute.  If I finish a book while on the train?  No big deal, hop onto my amazon wish list.  I could buy them at 50% off.  In comes apple and now books are almost the same price.  Fuck you, apple.  How is that good for me?  I give up being able to lend out books to friends, sell them back, use during open book tests, read during parts of flights, and flip through for reference; and yet I now get to pay roughly the same price?  All because you want to take 30% of the sales for your customers.  </p>
<p>What they should have done is just opened their ebook store and let their customers overpay.  They are used to it anyways.  And like everything else, they would have happily bent over and asked for more.  </p>
]]></content:encoded>
			<wfw:commentRss>http://reelgeek.co.uk/blog/2012/04/22/tech-news-weirdness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>chicken parmigiana in pseudo-code format</title>
		<link>http://reelgeek.co.uk/blog/2012/03/10/chicken-parmigiana-in-pseudo-code-format/</link>
		<comments>http://reelgeek.co.uk/blog/2012/03/10/chicken-parmigiana-in-pseudo-code-format/#comments</comments>
		<pubDate>Sat, 10 Mar 2012 06:03:03 +0000</pubDate>
		<dc:creator>Luthi</dc:creator>
				<category><![CDATA[recipes]]></category>
		<category><![CDATA[pseudo-code]]></category>

		<guid isPermaLink="false">http://reelgeek.co.uk/blog/?p=1226</guid>
		<description><![CDATA[During my first class (C++ 1), I made a recipe book for a coder who is a disaster in the kitchen. It was his birthday and I wanted to do something cheeky. I thought it was quite nice and clever at the time. I got the idea when the professor was explaining things based on [...]]]></description>
			<content:encoded><![CDATA[<p>During my first class (C++ 1), I made a recipe book for a coder who is a disaster in the kitchen.  It was his birthday and I wanted to do something cheeky.  I thought it was quite nice and clever at the time.</p>
<p>I got the idea when the professor was explaining things based on recipes.  Ingredients go first (variables and function prototypes) and then the instructions.  That comment stuck with me.      </p>
<p>I could have written it more accurate in the code part, but it was more of a cheeky and silly project.  As in the instructions could have been the actual functions instead of the prototype + comments, but I wanted to keep it simple and under a page long.</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #666666;">//Chicken Parmigiana</span>
&nbsp;
<span style="color: #0000ff;">int</span> main<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span>
<span style="color: #008000;">&#123;</span>
	<span style="color: #0000ff;">int</span> eggs <span style="color: #008000;">&#40;</span><span style="color: #0000dd;">2</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
	<span style="color: #0000ff;">int</span> chicken <span style="color: #008000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #008000;">&#41;</span>, shredded_mozzarella <span style="color: #008000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #008000;">&#41;</span>, marinara <span style="color: #008000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #008000;">&#41;</span>, 
        grated_parmesan <span style="color: #008000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span> <span style="color: #666666;">//packages</span>
	<span style="color: #0000ff;">int</span> dry_bread_crumbs<span style="color: #008080;">;</span>
	<span style="color: #0000ff;">int</span> crisco<span style="color: #008080;">;</span>
&nbsp;
	<span style="color: #0000ff;">void</span> prep<span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> crisco<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
	<span style="color: #666666;">//preheat oven to 350 degrees</span>
	<span style="color: #666666;">//lightly grease baking sheet</span>
&nbsp;
	<span style="color: #0000ff;">void</span> chicken_prep<span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span><span style="color: #000040;">&amp;</span> chicken, <span style="color: #0000ff;">int</span> eggs, 
        <span style="color: #0000ff;">int</span> dry_bread_crumbs<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
	<span style="color: #666666;">//cut chicken into smaller strips</span>
	<span style="color: #666666;">//place eggs into a bowl</span>
	<span style="color: #666666;">//put bread crumbs into another bowl</span>
	<span style="color: #666666;">//dip chicken into egg, then crumbs, and put on baking sheet</span>
	<span style="color: #666666;">//bake 40 mins.</span>
&nbsp;
	<span style="color: #0000ff;">void</span> combine<span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span><span style="color: #000040;">&amp;</span> chicken, <span style="color: #0000ff;">int</span> sauce, <span style="color: #0000ff;">int</span> shredded_mozzarella,
        <span style="color: #0000ff;">int</span> grated_parmesan<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
	<span style="color: #666666;">//pour 1/2 the sauce into a baking dish</span>
	<span style="color: #666666;">//place chicken over sauce</span>
	<span style="color: #666666;">//cover with sauce</span>
	<span style="color: #666666;">//sprinkle with cheese</span>
&nbsp;
	<span style="color: #0000ff;">void</span> cook<span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span><span style="color: #000040;">&amp;</span> chicken<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
	<span style="color: #666666;">//start pasta now</span>
	<span style="color: #666666;">//cook chicken for another 20mins</span>
&nbsp;
	<span style="color: #0000ff;">return</span> <span style="color: #0000dd;">0</span><span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://reelgeek.co.uk/blog/2012/03/10/chicken-parmigiana-in-pseudo-code-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>begins anew</title>
		<link>http://reelgeek.co.uk/blog/2012/03/10/begins-anew/</link>
		<comments>http://reelgeek.co.uk/blog/2012/03/10/begins-anew/#comments</comments>
		<pubDate>Sat, 10 Mar 2012 05:30:14 +0000</pubDate>
		<dc:creator>Luthi</dc:creator>
				<category><![CDATA[Randomness]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[Computer Systems 2]]></category>

		<guid isPermaLink="false">http://reelgeek.co.uk/blog/?p=1214</guid>
		<description><![CDATA[I&#8217;m a procrastinator. I&#8217;m supposed to be studying for an exam next week for my current class: Computer Systems 2. &#8220;Linking, processes, virtual memory, dynamic memory allocation, system level I/O, networking and network programming, concurrent servers and web services.&#8221; I prefer to call it Linux System Programming. Or at the very least working on the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a procrastinator.  I&#8217;m supposed to be studying for an exam next week for my current class: Computer Systems 2.  &#8220;Linking, processes, virtual memory, dynamic memory allocation, system level I/O, networking and network programming, concurrent servers and web services.&#8221;  I prefer to call it Linux System Programming.  </p>
<p>Or at the very least working on the homework project that is due after the final &#8211; an online pac-man game.  Yes.  It&#8217;s due a week after the final.  I&#8217;m not certain how that works.  So much for a week off.  </p>
<p>Instead I get a bug up my ass last night to delete my 6 year old blog and do this to it.  Whatever it is.  </p>
<p>Not only am I procrastinating school work for this blog, I started procrastinating this blog to do some research on making droid apps.  That&#8217;s my summer plan.  Learn Java and the Droid SDK.  I certainly know how to have a good time, don&#8217;t I?  So I have this final, a homework, and another full term of classes; yet I&#8217;m preoccupied momentarily for getting that planned out.    </p>
<p>Be that as it may, I&#8217;m actually a good student.  Everything in on time and working correctly.  Mostly A&#8217;s.  Comes to find out that taking an accelerated summer class on Assembly (B+) isn&#8217;t the best idea in the world.  Nor is Calculus (B) taken at the same time as Math For Game Programming (A).  Sorry.  Building a ray-tracing renderer from scratch in C++ was far more interesting than derivatives.  </p>
<p>The initial plan for this is my adventure in coding.  We&#8217;ll see what happens&#8230;</p>
<p>Cheers<br />
Luthi</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #666666;">//testing the plugin for code</span>
<span style="color: #0000ff;">int</span> main<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span>
<span style="color: #008000;">&#123;</span>
    <span style="color: #0000ff;">int</span> test <span style="color: #000080;">=</span> <span style="color: #0000dd;">10</span><span style="color: #008080;">;</span>
    <span style="color: #0000ff;">for</span><span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> i <span style="color: #000080;">=</span> <span style="color: #0000dd;">0</span><span style="color: #008080;">;</span> i <span style="color: #000080;">&lt;</span> test<span style="color: #008080;">;</span> i<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
        function<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
    <span style="color: #0000ff;">if</span><span style="color: #008000;">&#40;</span>snark<span style="color: #008000;">&#41;</span>
        luthi.<span style="color: #007788;">laughs</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
    <span style="color: #0000dd;">cout</span> <span style="color: #000080;">&lt;&lt;</span> <span style="color: #FF0000;">&quot;oh hey look it works&quot;</span> <span style="color: #000080;">&lt;&lt;</span> endl<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span>
<span style="color: #666666;">//yes I know this code is lame and doesn't work.</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://reelgeek.co.uk/blog/2012/03/10/begins-anew/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>so long and thanks for all the fish</title>
		<link>http://reelgeek.co.uk/blog/2011/06/11/so-long-and-thanks-for-all-the-fish-2/</link>
		<comments>http://reelgeek.co.uk/blog/2011/06/11/so-long-and-thanks-for-all-the-fish-2/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 23:07:23 +0000</pubDate>
		<dc:creator>Luthi</dc:creator>
				<category><![CDATA[Second Life]]></category>

		<guid isPermaLink="false">http://reelgeek.co.uk/blog/?p=900</guid>
		<description><![CDATA[Login failed. Despite our best efforts, something unexpected has gone wrong. Absolutely brilliant. Rather fitting that when I try to log in for the first time in almost a year, this is the message I get. The short version: - Due to school/work/kung fu/life I haven&#8217;t had the time in almost a year to log [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Login failed.  Despite our best efforts, something unexpected has gone wrong.</p></blockquote>
<p>Absolutely brilliant.  Rather fitting that when I try to log in for the first time in almost a year, this is the message I get.  </p>
<p><strong>The short version:</strong><br />
- Due to school/work/kung fu/life I haven&#8217;t had the time in almost a year to log in.  Let alone make anything.<br />
- Dropped all prices by 1/2.<br />
- My store will be around until it no longer pays for the sim.<br />
- If anyone is looking for 3/4 of a $195/month sim to rent, let me know. </p>
<p><strong>Prices:</strong><br />
They dropped by 1/2.  No real reason other than I no longer take L$ out, it all goes towards paying the sim.  It messed up my taxes last year &#8211; something about being self employed and not being able to get the big tax breaks for being a student &#8211; so in Jan I started to let it accumulate for the sim.  </p>
<p><strong>The store/sim:</strong><br />
I honestly don&#8217;t know if I&#8217;ll ever make any more poses.  I don&#8217;t know if I&#8217;ll ever log in after today.  I may still want to dink around if I ever get the time, but who knows.  At this point in time, I&#8217;d rent the sim at cost if I could keep a small shop and workspace on the off chance I&#8217;d want to.  </p>
<p>If not, I&#8217;ll either sell it or just give it up once the L$ runs out.  </p>
<p><strong>The personal bits:</strong><br />
Last fall, I took a full time job in the graphics department of an ad agency.  As well as starting a graduate degree in game development.  Lack of time and just a general disinterest in anything SL related ended up with me just not logging in since.  </p>
<p>My first year of school was completed yesterday and I have a week until summer session begins to get things in order.  I&#8217;m going from part-time to full-time so I&#8217;m going from almost no extra time to defiantly no time.  Classes are oddly fun and a bit of a challenge, but I&#8217;m really enjoying programming.  It&#8217;s nice to think mostly with the other side of my brain.</p>
<p>I had been thinking about this for a while now, but since I&#8217;ve been waiting all day for my new computer parts to arrive (hurry up UPS) I decided to go ahead.  I suppose this way I won&#8217;t have to install SL.  </p>
<p>Creating for SL was a big part of my life for 6 years.  It was fun, thrilling, frustrating and annoying usually all at the same time.  It was great to see SL grow and change over the years, but I think my time here is over.  </p>
<p>Thank you all for the support.  </p>
<p>Cheers<br />
Luth  </p>
]]></content:encoded>
			<wfw:commentRss>http://reelgeek.co.uk/blog/2011/06/11/so-long-and-thanks-for-all-the-fish-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

