<?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>Booberfish.com &#187; School</title>
	<atom:link href="http://www.booberfish.com/blog/category/school/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.booberfish.com</link>
	<description>From physics to philosophy</description>
	<lastBuildDate>Fri, 03 Feb 2012 19:37:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>This is my life right now</title>
		<link>http://www.booberfish.com/blog/2012/01/this-is-my-life-right-now/</link>
		<comments>http://www.booberfish.com/blog/2012/01/this-is-my-life-right-now/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 18:38:21 +0000</pubDate>
		<dc:creator>GP</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[School]]></category>

		<guid isPermaLink="false">http://www.booberfish.com/?p=1028</guid>
		<description><![CDATA[Let&#8217;s say someone has designed an strategy to pick stocks or some other financial product that, according to my forecasts, will provide a return of 20%. So you give them a million dollars and put me to work. They start following the strategy they devised and spend a lot of time buying and selling as [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say someone has designed an strategy to pick stocks or some other financial product that, according to my forecasts, will provide a return of 20%. So you give them a million dollars and put me to work. They start following the strategy they devised and spend a lot of time buying and selling as it dictates.</p>
<p>Then let&#8217;s say a few months down the line they&#8217;ve decided to change their strategy, having come up with a new idea about what will really get the best return, this time forecasting they&#8217;ll do even better based on the models they made before. So now they want more money to put into this new strategy.</p>
<p>Oh, but now they think they want to change strategies again, maybe even to something that&#8217;s actually opposite of what they were doing before in some ways. Let&#8217;s put more money into that!</p>
<p>All this while they&#8217;re so busy buying and selling and adjusting the models based on various hunches they have, they haven&#8217;t actually paid much attention to how much the portfolio is actually worth.</p>
<p>When you ask how the changes they&#8217;ve been making have impacted the portfolio, and whether anything they&#8217;ve done is actually getting to that 20% goal, they say they haven&#8217;t really paid much attention to it because they know the new models are going to be even better. Are you going to give them another million?</p>
<img src="http://www.booberfish.com/?ak_action=api_record_view&id=1028&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.booberfish.com/blog/2012/01/this-is-my-life-right-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Astrophysical Pokemon</title>
		<link>http://www.booberfish.com/blog/2009/02/astrophysical-pokemon/</link>
		<comments>http://www.booberfish.com/blog/2009/02/astrophysical-pokemon/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 05:29:18 +0000</pubDate>
		<dc:creator>GP</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[astrophysics]]></category>
		<category><![CDATA[computing cluster]]></category>
		<category><![CDATA[debugger]]></category>
		<category><![CDATA[gdb]]></category>
		<category><![CDATA[pokemon]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[segmentation fault]]></category>
		<category><![CDATA[video games]]></category>

		<guid isPermaLink="false">http://www.booberfish.com/?p=780</guid>
		<description><![CDATA[I&#8217;ve spent a lot of the last few months working on some research that mostly amounts to running lots of black-box type computer code. I spent weeks just getting the stuff to compile, then weeks getting all the data files positioned in the right places so the programs could find them. This stuff is all [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent a lot of the last few months working on some research that mostly amounts to running lots of black-box type computer code. I spent weeks just getting the stuff to compile, then weeks getting all the data files positioned in the right places so the programs could find them. This stuff is all home-brewed, hacked together a lot of the time without comments and in unintuitive structures. The priority was being able to put data in one end and get something out the other, not user-friendliness. The only documentation that exists is the brain of the post-doc and her supervisor in the offices down the hall.</p>
<p>So, when we try to improve one of these programs, you can count on a lot of debugging before anything gets fixed. Often the things just won&#8217;t compile, or there&#8217;s a typo so it looks for the wrong input file. Recently one of these programs was rewritten, and was tested a little to see that it actually worked. On a small scale it worked fine, but when we started submitting jobs with it on our big computing cluster, 100 gigabytes of data would go in and exactly 0 bytes would come out. Segmentation fault.</p>
<p>It was not the size of the data we were putting through that caused the segmentation fault, but the number of processes we were running. It turned out the segmentation fault was not repeatable when running one copy fo the program at once, but when you run dozens of copies simultaneously, when one fails they all die.</p>
<p>The only way I could really deal with this was run the program in a debugger and just hope to catch the fault. For about a week I had a terminal window open with gdb running my program. Every few hours I would check to see that it succeeded in its job and then would run it again, hoping for that elusive seg fault. Days went by. Program exited successfully. Program exited successfully. Program exited successfully. My supervisor would ask if I had solved the program yet. I would look at him and say, &#8220;Program exited successfully.&#8221;</p>
<p>Until finally I decided to give up. I told my supervisor, &#8220;If this run doesn&#8217;t die, then I&#8217;m giving up and going back to the old code.&#8221; Within two minutes of that conversation&#8230;. segmentation fault! Like the rarest of pokemon in an Ultra Ball, my debugger had finally succeeded in capturing the bug in my program.</p>
<p>And that, children, is why playing video games will help you do well in school. All the time my boyfriend made me play pokemon with him back in senior year of undergrad was well spent after all.</p>
<img src="http://www.booberfish.com/?ak_action=api_record_view&id=780&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.booberfish.com/blog/2009/02/astrophysical-pokemon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crap!</title>
		<link>http://www.booberfish.com/blog/2008/10/crap/</link>
		<comments>http://www.booberfish.com/blog/2008/10/crap/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 18:33:41 +0000</pubDate>
		<dc:creator>GP</dc:creator>
				<category><![CDATA[Daily Life]]></category>
		<category><![CDATA[Rowing]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[procrastination]]></category>
		<category><![CDATA[time management]]></category>

		<guid isPermaLink="false">http://www.booberfish.com/?p=772</guid>
		<description><![CDATA[I admit, I&#8217;m mostly writing this because I would hate to have not blogged this entire month. (Sure, it&#8217;s technically been over a month since my last entry, but let&#8217;s not get technical.) I realised what the problem is. I still have ideas of things I want to write about, but I don&#8217;t have the [...]]]></description>
			<content:encoded><![CDATA[<p>I admit, I&#8217;m mostly writing this because I would hate to have not blogged this entire month. (Sure, it&#8217;s technically been over a month since my last entry, but let&#8217;s not get technical.)</p>
<p>I realised what the problem is. I still have ideas of things I want to write about, but I don&#8217;t have the same opportunity to procrastinate that I once did. For various reasons, I decided that I would not blog while at school. Or at least, not using my office computer. Unfortunately, between rowing and school, I&#8217;m only actually at home with my own computer for a couple hours a day. And those hours are typically spent eating, watching TV, and generally zoning out&#8212;not the kind of activities I need to procrastinate from (i.e., not the kind of hours I&#8217;d rather spend blogging). The same as been true even on weekends.</p>
<p>I wonder if that will change when the rowing season ends next week. The big finale actually coincides with two other major deadlines in my academic life as well, so I&#8217;m definitely looking forward to the weekend after, when I won&#8217;t have all this same sense of impending doom&#8230;</p>
<p>&#8230; which is of course the other reason why I&#8217;m writing this! With four (well, practically only three now that it&#8217;s well into the afternoon) working days left before going off to the national championships for five days, and three major projects to work on, I can&#8217;t really justify taking Sunday afternoon off. And so I spend it blogging instead!</p>
<p>At this rate, I wonder what the chances of me participating in NaNoWriMo this year are&#8230;</p>
<img src="http://www.booberfish.com/?ak_action=api_record_view&id=772&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.booberfish.com/blog/2008/10/crap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five years down, twelve hours to go</title>
		<link>http://www.booberfish.com/blog/2008/05/five-years-down/</link>
		<comments>http://www.booberfish.com/blog/2008/05/five-years-down/#comments</comments>
		<pubDate>Sun, 11 May 2008 03:27:50 +0000</pubDate>
		<dc:creator>GP</dc:creator>
				<category><![CDATA[Montreal]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[graduation]]></category>
		<category><![CDATA[moving]]></category>
		<category><![CDATA[packing]]></category>

		<guid isPermaLink="false">http://www.booberfish.com/?p=736</guid>
		<description><![CDATA[By tomorrow afternoon I will no longer be a Montrealer. My transcript doesn&#8217;t quite say &#8220;graduated&#8221; yet, or whatever it is transcripts are supposed to say at this point, but all the appropriate boxes under the &#8220;Recommendations&#8221; heading say &#8220;yes&#8221; and faculty approval is pending. It&#8217;s as good as done. Never mind the fact that [...]]]></description>
			<content:encoded><![CDATA[<p>By tomorrow afternoon I will no longer be a Montrealer. My transcript doesn&#8217;t quite say &#8220;graduated&#8221; yet, or whatever it is transcripts are supposed to say at this point, but all the appropriate boxes under the &#8220;Recommendations&#8221; heading say &#8220;yes&#8221; and faculty approval is pending. It&#8217;s as good as done. Never mind the fact that I got my grad school acceptances months ago&#8230;</p>
<p>The fact that I&#8217;m moving didn&#8217;t settle in until I took all the art, posters, and calendars off the walls. While half the floor is two or three feet deep in junk, everything at about eye level is boring blank white. That was the trigger. This doesn&#8217;t feel like my home anymore.</p>
<p>The rest of the job has just been rearranging the junk on the floor into more manageable piles. It was funny how simply dumping out a full drawer and rearranging everything would suddenly free up half the space. Everything could be laid out nicely in its place, in roughly a single layer along the bottom no less. &#8220;Nice&#8221;, I thought, &#8220;now I&#8217;ll actually be able to find stuff in there&#8221;. But then it occurred to me that with all that extra space, I could just cram more stuff in. Which is exactly what I did. So now the drawer is just as full but twice as heavy, and solidly packed so you can&#8217;t actually move anything aside to get at something underneath.</p>
<p>I also put all my textbooks into the same box.</p>
<p>Now at the same time this doesn&#8217;t feel different from any other May. I&#8217;ve never spent the summer in Montreal, so packing up my stuff at the end of the winter semester is nothing new. I wonder if moving to grad school will feel any different from coming back to McGill. A new school, sure, but functionally I don&#8217;t know if much will change. More of the part I like, at least, and less of the stuff I don&#8217;t. That&#8217;s really all I can ask. That&#8217;s really all I&#8217;m aiming for.</p>
<img src="http://www.booberfish.com/?ak_action=api_record_view&id=736&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.booberfish.com/blog/2008/05/five-years-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secondary meanings and First Day of My Life</title>
		<link>http://www.booberfish.com/blog/2008/01/secondary-meanings-and-first-day-of-my-life/</link>
		<comments>http://www.booberfish.com/blog/2008/01/secondary-meanings-and-first-day-of-my-life/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 04:02:59 +0000</pubDate>
		<dc:creator>GP</dc:creator>
				<category><![CDATA[Media]]></category>
		<category><![CDATA[School]]></category>

		<guid isPermaLink="false">http://www.booberfish.com/blog/2008/01/secondary-meanings-and-first-day-of-my-life/</guid>
		<description><![CDATA[I started looking over vocabulary lists for the GRE general test (a graduate school version of the SATs). My prep book breaks down words into certain types with tips on how to study each. Here are the types I&#8217;ve found: Words I&#8217;ve never head before Words I will use in sentence but can&#8217;t actually define [...]]]></description>
			<content:encoded><![CDATA[<p>I started looking over vocabulary lists for the GRE general test (a graduate school version of the SATs). My prep book breaks down words into certain types with tips on how to study each. Here are the types I&#8217;ve found:</p>
<ol>
<li>Words I&#8217;ve never head before</li>
<li>Words I will use in sentence but can&#8217;t actually define</li>
<li>Words whose meaning is actually the exact opposite of what I thought it was</li>
</ol>
<p>While they tell you to watch out for secondary meanings&#8212;I knew the verb &#8220;flag&#8221; means to mark or signal, but it also means to sag or decline&#8212;there are a surprising number of words that fall in category 3. These aren&#8217;t just cases of a word being used in a different or new way, but actually complete misunderstandings on my part. Apparently &#8220;equivocate&#8221; doesn&#8217;t mean to get the point across by being very precise (cf. &#8220;explicit&#8221;), but to use ambiguous language to deceive. And &#8220;urbane&#8221; doesn&#8217;t mean run-of-the-mill or low class (cf. &#8220;pedestrian&#8221;), but sophisticated and refined. I&#8217;m going to have to replay entire conversations in my head to make sure I haven&#8217;t completely made an idiot of myself.</p>
<p>What really brought this up again, though, was listening to the song &#8220;First Day of my Life&#8221; by Bright Eyes. It comes across as a really nice and cute love song with <a href="http://www.youtube.com/watch?v=o5rhhQbyYV0">a nice and cute video</a>. (I especially love the clips where one person looks at the other without the other seeing. Psychoanalyse that.) So, as I do with all such songs, I played it through a few times and wrote out the lyrics so that I might sing along. As it turns out, it seems not to be a simple profession of love, but an apology.</p>
<blockquote><p>This is the first day of my life<br />
I swear I was born right in the doorway<br />
I went out in the rain, suddenly everything changed<br />
They were spreading blankets on the beach<br />
Your&#8217;s is the first face that I saw<br />
Think I was blind before I met you</p></blockquote>
<p>The singer describes a times when he and the other were together, happy, and utterly in love. At the sight of the other&#8217;s face, &#8220;everything changed&#8221;, as if they had never seen another person before and had not lived until that moment. But, something has been lost.</p>
<blockquote><p>I don&#8217;t know where I am I don&#8217;t know where I&#8217;ve been<br />
But I know where I want to go<br />
And so I thought I&#8217;d let you know<br />
That these things take forever<br />
I especially am slow<br />
But I realise that I need you<br />
And I wondered if I could come home</p></blockquote>
<p>The two are not together anymore. What happened, we don&#8217;t know. All we have to go on is that the singer still loves the other, and wants to be together again. He continues, reminding the other that they felt the same way once.</p>
<blockquote><p>Remember the time you drove all night<br />
Just to meet me in the morning<br />
And I thought it was strange you said everything changed<br />
You felt as if you just woke up<br />
And you said this is the first day of my life<br />
I&#8217;m glad I didn&#8217;t die before I met you</p></blockquote>
<p>How sincere can this be? Is this really a love that was meant to be?</p>
<blockquote><p>But now I don&#8217;t care I could go anywhere with you<br />
And I&#8217;d probably be happy<br />
So if you wanna be with me<br />
With these things there&#8217;s no telling<br />
We just have to wait and see</p></blockquote>
<p>Something more was lost than just being together. Maybe something happened that can&#8217;t be forgiven, maybe they&#8217;ve just grown apart. The singer clearly wants to believe that that love is still there, but on some level it sounds like he knows something will always be missing.</p>
<blockquote><p>But I&#8217;d rather be working for a paycheck<br />
Than waiting to win the lottery<br />
Besides maybe this time it&#8217;s different<br />
I mean I really think you liked me</p></blockquote>
<p><!--adsense-->This love is like a steady job, but it&#8217;s no lottery. He&#8217;s hopeful that they can work on whatever they have, that it might grow into something it&#8217;s not. It makes me sad, in a similar sort of way, that what I thought was a great love song is actually flawed and hurt and hopeful and yearning for something more. In a sense this is a secondary meaning that most people will probably miss.</p>
<img src="http://www.booberfish.com/?ak_action=api_record_view&id=649&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.booberfish.com/blog/2008/01/secondary-meanings-and-first-day-of-my-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aesthetics in the last semester</title>
		<link>http://www.booberfish.com/blog/2008/01/aesthetics-in-the-last-semester/</link>
		<comments>http://www.booberfish.com/blog/2008/01/aesthetics-in-the-last-semester/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 20:45:30 +0000</pubDate>
		<dc:creator>GP</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[food]]></category>

		<guid isPermaLink="false">http://www.booberfish.com/blog/2008/01/aesthetics-in-the-last-semester/</guid>
		<description><![CDATA[I&#8217;m in my last semester of my undergraduate career. With but three required classes left to take and probably about a dozen to choose from, plus the freedom of an elective under the Satisfactory/Unsatisfactory option instead of a regular letter grade, setting my schedule has become an exercise more in aesthetics than anything else. I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in my last semester of my undergraduate career. With but three required classes left to take and probably about a dozen to choose from, plus the freedom of an elective under the Satisfactory/Unsatisfactory option instead of a regular letter grade, setting my schedule has become an exercise more in aesthetics than anything else. I noticed, coincidentally, that the philosophy department&#8217;s class in aesthetics is not offered this year. Turns out I don&#8217;t need it. I&#8217;m having no problem seeing things as I want.</p>
<p><!--adsense-->I&#8217;m conscious that I&#8217;m going to be applying to grad school in the next few weeks. I&#8217;ve already taken an extra year here and I don&#8217;t want the admissions committees thinking that I&#8217;m just screwing around with the extra time. &#8220;The Art of Listening&#8221; was thus the first cut from the list of possible electives. And frankly, I&#8217;m more interested in taking a harder but more interesting course than a bird course like that anyway. Still, interesting courses that would have been fine in my first or second years in Anthropology, Sociology, and Religion, among others, stick out a fair bit after so much solid physics, math, and philosophy.</p>
<p>I sat in on a philosophy class that certainly <em>looks</em> like a perfect elective&#8212;it fits well with my minor and compliments the study of physics very well. Plus the description talked about all those sorts of questions that come up while sitting around waiting for code to compile or atoms to decay but never get properly answered. Unfortunately, twenty minutes in I was wishing for it to be over. I had this intense feeling that it must be July, and I realised it must have been because the only other time I&#8217;ve wanted to leave a classroom so badly has been because it was a warm, bright, sunny afternoon outside. So despite how nicely it would fit in on my trasncript, this particular class had to be cut.</p>
<p>The second philosophy class was one chosen because it seemed the least terrible of the required options given. The History and Philosophy of Ancient Science. I guess that sounds like it compliments physics as well. Little did I know how perfect it would be&#8212;this year the class focuses on Ancient Greek Mechanics, which, though completely different from its modern cousins, would have sounded great coming in the semesters after Classical Mechanics and Quantum Mechanics. Even better, the professor was one of these rare characters who speaks like she&#8217;s telling a story, not merely regurgitating information. She would run her hands through her hair, making it point in all directions, and sounded almost giddy at the prospect that someone might build little mechanical toys for their final project. I could have been Marshall with a man-crush on Gael. This class could stay.</p>
<p>Right or not (probably not), I&#8217;ve also realised that I&#8217;m beginning to consider how nicely the required textbook for a class will fit on my bookshelf. This is largely an after affect of clearing the thing out, trying to keep only one text in each main area. I found myself reluctant to give up my Schaum&#8217;s Outlines not because I ever used them but because they make a nice matching set. In my particle physics class, I&#8217;m tempted to skip the required text (a graphic blue paperback monster) in favour of the one by Griffiths, first because it is by Griffiths and also because it&#8217;s nicely bound. If only it wasn&#8217;t twenty years old. Dare I buy the new edition coming out in a few months, just for the aesthetics of it sitting on me shelf? Though clearly I&#8217;d have to buy a real copy of the EM text as well to match. Meanwhile, I&#8217;m highly motivated to stick with Optics not because I want to take the class (I do) but because the textbook is of the same series as my Relativity text from last year. I was even secretly considering buying the particles book in the same series because they&#8217;re just so damn sexy. Through in the cosmology text, for no class in particular, as well while I&#8217;m at it. Or maybe I should just get a grip and worry more about doing the readings instead of what the readings look like.</p>
<p>I should say, I also bought myself a big furry toque with big floppy ear flaps. I was feeling really quite fantastic on this day of courses, textbooks, and winter headgear. The only downside to the day was that when I arrived home Ponyboy was no longer asleep on my couch to experience what an awesome boyfriend I was, having left to go meet a friend visiting from out of town. Oh well. Twice as much food for me.</p>
<img src="http://www.booberfish.com/?ak_action=api_record_view&id=644&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.booberfish.com/blog/2008/01/aesthetics-in-the-last-semester/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The plight of the Martlet</title>
		<link>http://www.booberfish.com/blog/2007/12/the-plight-of-the-martlet/</link>
		<comments>http://www.booberfish.com/blog/2007/12/the-plight-of-the-martlet/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 04:52:27 +0000</pubDate>
		<dc:creator>GP</dc:creator>
				<category><![CDATA[School]]></category>

		<guid isPermaLink="false">http://www.booberfish.com/blog/2007/12/the-plight-of-the-martlet/</guid>
		<description><![CDATA[The following was distilled down from a facebook conversation I had with my sister while sitting in the Burnside computer labs typing up my take home final tonight. Me: We have libraries that are 24 hours at this time of year. McGillers are a bunch of studious nerds. Sister: 24 hour libraries?! That&#8217;s ridiculous. Nobody [...]]]></description>
			<content:encoded><![CDATA[<p><em>The following was distilled down from a facebook conversation I had with my sister while sitting in the Burnside computer labs typing up my take home final tonight.</em></p>
<p><em>Me:</em> We have libraries that are 24 hours at this time of year. McGillers are a bunch of studious nerds.</p>
<p><em>Sister:</em> 24 hour libraries?! That&#8217;s ridiculous. Nobody should be at a library past like 10pm, that&#8217;s what I think. Are McGill students actually called McGillers or did you just make that up? What&#8217;s your mascot anyway?</p>
<p><em>Me:</em> Well, McGillers is a common term. We&#8217;re technically &#8220;red birds&#8221; now. Though, it used to be &#8220;red men&#8221; for the men&#8217;s athletic teams and &#8220;martlets&#8221; for the women. Our mascot is really a martlet.</p>
<p><em>Sister:</em> I&#8217;ve never even heard of a martlet. It doesn&#8217;t sound very threatening. Is it at least some sort of vulture or other big scary bird? Because it sounds like a song bird to me.</p>
<p><!--adsense--><em>Me:</em> Martlets are definitely closer to songbirds than vultures&#8230; they&#8217;re from some kind of greek myth, which is why nobody has heard of them. They&#8217;re birds with no legs, so they can only fly higher and higher (like&#8230; higher education&#8230; or something inspiringly metaphorical like that&#8230; though I don&#8217;t see why the little guys can&#8217;t just stop flapping their wings, fall to the ground a bit, then start flapping again.)</p>
<p><em>Sister:</em> What kind of bird doesn&#8217;t have legs? This is all very interesting. I think if such a bird actually existed, it would do exactly what you said it would. It wouldn&#8217;t be able to just keep flying forever, it would die of exhaustion. </p>
<p><em>Me:</em> Let&#8217;s see. We have 24 hour libraries that people actually use for 24 hours during exam period, and our school mascot, if it actually existed, would die of exhaustion before just sitting down for a bit. Coincidence? I think not.</p>
<img src="http://www.booberfish.com/?ak_action=api_record_view&id=641&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.booberfish.com/blog/2007/12/the-plight-of-the-martlet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This is a post worth posting, I swear</title>
		<link>http://www.booberfish.com/blog/2007/12/this-is-a-post-worth-posting-i-swear/</link>
		<comments>http://www.booberfish.com/blog/2007/12/this-is-a-post-worth-posting-i-swear/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 03:14:28 +0000</pubDate>
		<dc:creator>GP</dc:creator>
				<category><![CDATA[Daily Life]]></category>
		<category><![CDATA[School]]></category>

		<guid isPermaLink="false">http://www.booberfish.com/blog/2007/12/this-is-a-post-worth-posting-i-swear/</guid>
		<description><![CDATA[Theoretically I&#8217;m in the midst of writing my philosophy take home exam. In actuality I&#8217;m looking to procrastinate. At least I&#8217;m in the computer lab. And I&#8217;ve even printed off about a dozen astrophysics articles for that other paper I&#8217;m writing. I may not have read them yet, but it just looking them up in [...]]]></description>
			<content:encoded><![CDATA[<p>Theoretically I&#8217;m in the midst of writing my philosophy take home exam. In actuality I&#8217;m looking to procrastinate. At least I&#8217;m in the computer lab. And I&#8217;ve even printed off about a dozen astrophysics articles for that other paper I&#8217;m writing. I may not have read them yet, but it just looking them up in the first place counts as research. After a few nice diagrams, a respectable list of references, and fiddling with the margins a bit, I&#8217;ll have at least 15 pages in no time, right? At least that&#8217;s what the professor told us.</p>
<p>In the interests of making sure this post is actually about something somebody might want to read, I give you this tidbit: <em>If you buy twelve cookies at Subway restaurants, it counts as groceries and you don&#8217;t have to pay taxes.</em></p>
<p>Also, I&#8217;ve developed a mild obsession with Mario games, so if anybody wants to buy me a Wii or a DS, that&#8217;d be awesome. But then again, maybe it&#8217;s just this strong desire to procrastinate that&#8217;s movitating me with that one.</p>
<p>Ok, ok, back to the grindstone&#8230;</p>
<img src="http://www.booberfish.com/?ak_action=api_record_view&id=640&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.booberfish.com/blog/2007/12/this-is-a-post-worth-posting-i-swear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nausea</title>
		<link>http://www.booberfish.com/blog/2007/12/nausea/</link>
		<comments>http://www.booberfish.com/blog/2007/12/nausea/#comments</comments>
		<pubDate>Sat, 08 Dec 2007 22:03:59 +0000</pubDate>
		<dc:creator>GP</dc:creator>
				<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Camus]]></category>
		<category><![CDATA[Jean-Paul Sartre]]></category>
		<category><![CDATA[Tim Hortons]]></category>

		<guid isPermaLink="false">http://www.booberfish.com/blog/2007/12/nausea/</guid>
		<description><![CDATA[Three o&#8217;clock. Three o&#8217;clock is always too late or too early for anything you want to do. An off moment in the afternoon. Today it is intolerable. &#8211; from Nausea, by Jean-Paul Sartre How true it is. This afternoon at three o&#8217;clock I was definitely not doing anything I wanted to do&#8212;that was about the [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Three o&#8217;clock. Three o&#8217;clock is always too late or too early for anything you want to do. An off moment in the afternoon. Today it is intolerable.</p>
<p><cite>&#8211; from <em>Nausea</em>, by Jean-Paul Sartre</cite></p></blockquote>
<p>How true it is. This afternoon at three o&#8217;clock I was definitely not doing anything I wanted to do&#8212;that was about the time I hit the 30 minute mark in the Hour of Power, which from that point forward became the worst erg piece I&#8217;ve ever pulled. Though that&#8217;s not quite the same feeling of Nausea that Sartre was talking about.</p>
<p>I think my Existentialism professor would be, not disappointed, but slightly uncomfortable, with how I&#8217;ve taken to the class. No, I haven&#8217;t latched on to everything said by Sartre, Heidegger, de Beauvoir, Fanon, or Camus, but a lot of what existentialism talks about is very seductive. I&#8217;ve written that already. The evidence is that, when having conversations that start to draw on philosophy, I start to draw on arguments made by those philosophers. It happened the other day standing in line at Tim Hortons, when the topic turned to racism, and I found myself referencing Fanon. When discussing sexual identity, I tend to think of bad faith. I&#8217;ve even used the term &#8220;bad faith&#8221; in a conversation by accident, and ended up accomplishing nothing but confusing the other person. Oh dear.</p>
<p>Though I must admit, it&#8217;s been happening with my other philosophy class as well. Logic and mathematics. Alarm bells still go on whenever someone says &#8220;concept&#8221;, and I&#8217;m getting very particular about defining what exactly the assumptions going into a problem are.</p>
<p>We&#8217;re now four days into the exam period. My first and only exam isn&#8217;t until the 19th, though in the meantime I have one take home exam (which is much like a 10 page paper) and an astrophysics paper to write. One of these days I&#8217;ll start working on them. With proper time management, there&#8217;s no reason for me to be in any stress at all this month. Yet, I still always find myself at three o&#8217;clock, too late to still be sitting around in pajamas. Too early for the evening workout. Too little time in between to do any work. Hopefully monday, when 7 AM workouts become part of the schedule again, I&#8217;ll be able to handle that particular form of nausea a little better.</p>
<img src="http://www.booberfish.com/?ak_action=api_record_view&id=638&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.booberfish.com/blog/2007/12/nausea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now I&#8217;m just imagining things</title>
		<link>http://www.booberfish.com/blog/2007/10/now-im-just-imagining-things/</link>
		<comments>http://www.booberfish.com/blog/2007/10/now-im-just-imagining-things/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 01:32:47 +0000</pubDate>
		<dc:creator>GP</dc:creator>
				<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[Rowing]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Jean-Paul Sartre]]></category>

		<guid isPermaLink="false">http://www.booberfish.com/blog/2007/10/now-im-just-imagining-things/</guid>
		<description><![CDATA[The situation is this: I am writing a paper, at the last minute of course, for my class on existentialism. At the same time, I have been rowing almost every day for seven weeks or so in preparation for a regatta this weekend. As I write the paper, I am conscious of the fact that [...]]]></description>
			<content:encoded><![CDATA[<p>The situation is this: I am writing a paper, at the last minute of course, for my class on existentialism. At the same time, I have been rowing almost every day for seven weeks or so in preparation for a regatta this weekend. As I write the paper, I am conscious of the fact that it&#8217;s far past my bedtime, and if I have any hope of being able to get up and go to crew practice at 5 am tomorrow, I need to wrap things up and go to bed. With about half the paper left to write, I&#8217;m starting to get desperate for material, so I turn back to the text and start reading:</p>
<blockquote><p>The empirical image which may best symbolize Heidegger&#8217;s intuition is not that of a conflict but rather a <em>crew</em>&#8230; It is the mute existence in common of one member of the crew with his fellows, that existence which the rhythm of the oars or the regular movements of the coxswain will render sensible to the rowers and which <em>will be made manifest</em> to them by the common goal to be attained, the boat or yacht to be overtaken, and the entire world (spectators, performance, etc.) which is profiled on the horizon.</p></blockquote>
<p>I swear, when I read this paragraph from Jean-Paul Sartre&#8217;s <em>Being and Nothingness</em>, I actually thought I was hallucinating.</p>
<img src="http://www.booberfish.com/?ak_action=api_record_view&id=632&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.booberfish.com/blog/2007/10/now-im-just-imagining-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

