<?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>jmv.me &#187; Academia</title>
	<atom:link href="http://jmv.me/topic/academia/feed/" rel="self" type="application/rss+xml" />
	<link>http://jmv.me</link>
	<description>Just because.</description>
	<lastBuildDate>Mon, 19 Jul 2010 20:34:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Distraction: Modular Exponentiation</title>
		<link>http://jmv.me/1321/</link>
		<comments>http://jmv.me/1321/#comments</comments>
		<pubDate>Tue, 18 May 2010 05:07:35 +0000</pubDate>
		<dc:creator>Julia Van Cleve</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Sci/Tech]]></category>
		<category><![CDATA[Tips/Tricks]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://jmv.me/?p=1321</guid>
		<description><![CDATA[While reviewing modular exponentiation, I got bored and decided to write this program instead. I have not yet finished writing my bigInt calculator I started working on a while back, so, my program only works for numbers smaller than 2^64 bits. Related posts:Distraction: Euclid&#8217;s Algorithm Mini-project: PeeweeGen New knowledge base implemented at campus newspaper


Related posts:<ol><li><a href='http://jmv.me/1291/' rel='bookmark' title='Permanent Link: Distraction: Euclid&#8217;s Algorithm'>Distraction: Euclid&#8217;s Algorithm</a></li>
<li><a href='http://jmv.me/1330/' rel='bookmark' title='Permanent Link: Mini-project: PeeweeGen'>Mini-project: PeeweeGen</a></li>
<li><a href='http://jmv.me/276/' rel='bookmark' title='Permanent Link: New knowledge base implemented at campus newspaper'>New knowledge base implemented at campus newspaper</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>While reviewing modular exponentiation, I got bored and decided to write this program instead. I have not yet finished writing my bigInt calculator I started working on a while back, so, my program only works for numbers smaller than 2^64 bits.</p>

Note: There is a file embedded within this post, please visit this post to download the file.
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save" onclick="pageTracker._trackPageview('/outgoing/www.addtoany.com/share_save?referer=');"><img src="http://jmv.me/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://jmv.me/1291/' rel='bookmark' title='Permanent Link: Distraction: Euclid&#8217;s Algorithm'>Distraction: Euclid&#8217;s Algorithm</a></li>
<li><a href='http://jmv.me/1330/' rel='bookmark' title='Permanent Link: Mini-project: PeeweeGen'>Mini-project: PeeweeGen</a></li>
<li><a href='http://jmv.me/276/' rel='bookmark' title='Permanent Link: New knowledge base implemented at campus newspaper'>New knowledge base implemented at campus newspaper</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://jmv.me/1321/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distraction: Euclid&#8217;s Algorithm</title>
		<link>http://jmv.me/1291/</link>
		<comments>http://jmv.me/1291/#comments</comments>
		<pubDate>Fri, 14 May 2010 06:55:11 +0000</pubDate>
		<dc:creator>Julia Van Cleve</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Sci/Tech]]></category>
		<category><![CDATA[Tips/Tricks]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://jmv.me/?p=1291</guid>
		<description><![CDATA[While studying for my Introduction to Algorithms final, I decided I wanted to take a break and write a simple program in C++ to calculate the GCD of two numbers using Euclid&#8217;s Algorithm. Related posts:Distraction: Modular Exponentiation Mini-project: PeeweeGen


Related posts:<ol><li><a href='http://jmv.me/1321/' rel='bookmark' title='Permanent Link: Distraction: Modular Exponentiation'>Distraction: Modular Exponentiation</a></li>
<li><a href='http://jmv.me/1330/' rel='bookmark' title='Permanent Link: Mini-project: PeeweeGen'>Mini-project: PeeweeGen</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>While studying for my Introduction to Algorithms final, I decided I wanted to take a break and write a simple program in C++ to calculate the GCD of two numbers using Euclid&#8217;s Algorithm.</p>

Note: There is a file embedded within this post, please visit this post to download the file.
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save" onclick="pageTracker._trackPageview('/outgoing/www.addtoany.com/share_save?referer=');"><img src="http://jmv.me/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://jmv.me/1321/' rel='bookmark' title='Permanent Link: Distraction: Modular Exponentiation'>Distraction: Modular Exponentiation</a></li>
<li><a href='http://jmv.me/1330/' rel='bookmark' title='Permanent Link: Mini-project: PeeweeGen'>Mini-project: PeeweeGen</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://jmv.me/1291/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RPI student government elections 2010</title>
		<link>http://jmv.me/1276/</link>
		<comments>http://jmv.me/1276/#comments</comments>
		<pubDate>Mon, 03 May 2010 08:09:46 +0000</pubDate>
		<dc:creator>Julia Van Cleve</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Apathy]]></category>
		<category><![CDATA[Care]]></category>
		<category><![CDATA[Election]]></category>
		<category><![CDATA[Frustration]]></category>
		<category><![CDATA[Grand Marshal]]></category>
		<category><![CDATA[Indifference]]></category>
		<category><![CDATA[President of the Union]]></category>
		<category><![CDATA[RPI]]></category>
		<category><![CDATA[Rules and Elections Committee]]></category>
		<category><![CDATA[Student Government]]></category>

		<guid isPermaLink="false">http://jmv.me/?p=1276</guid>
		<description><![CDATA[In the past I haven&#8217;t particularly cared for the Grand Marshal elections that RPI has. However, the drama in this year&#8217;s election left me curious as to what all the hullabaloo was about. The fun wore off, though. Here&#8217;s a general time line of the main events (I won&#8217;t go into detail because that would [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>In the past I haven&#8217;t particularly cared for the Grand Marshal elections that RPI has. However, the drama in this year&#8217;s election left me curious as to what all the hullabaloo was about. The fun wore off, though. Here&#8217;s a general time line of the main events (I won&#8217;t go into detail because that would require lots and lots of <a href="http://elections.union.rpi.edu/" onclick="pageTracker._trackPageview('/outgoing/elections.union.rpi.edu/?referer=');">explaining</a>).</p>

<ol>
<li>Primary elections for GM and President of the Union are held (April 12, 2010)</li>
<li>Primary elections for PU completed, GM primaries are nullified. (April 13, 2010)</li>
<li>Final elections for PU are held, GM primaries are redone. (April 15, 2010)</li>
<li>PU final results are released, GM primary results are released (Michael Zwack &#8217;11 and Ben Hunt &#8217;10 move onto the final election). (April 17, 2010)</li>
<li>GM final elections commence. (April 22, 2010)</li>
<li>GM final elections are counted.</li>
<li>GM final elections are nullified.</li>
<li>Plans for another GM final elections are announced&#8212;scheduled for May 4.</li>
<li>Judicial Board states that the Rules and Elections Committee were wrong to nullify the election and that the results must be announced. (April 30, 2010)</li>
<li>Hunt is announced as the new GM (May 1, 2010)</li>
<li>RNE claims they don&#8217;t certify the results of this election.</li>
</ol>

<p>It was interesting to be a part of all this, but, overall, it has brought back the apathy that I temporarily rid myself of. However, the cause of the apathy is different. It&#8217;s no longer caused by indifference. It&#8217;s now caused by shear frustration which led to me not wanting to care anymore. Perhaps it&#8217;ll change in a year when the next GM election rolls around. Till then, good luck to everyone involved.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save" onclick="pageTracker._trackPageview('/outgoing/www.addtoany.com/share_save?referer=');"><img src="http://jmv.me/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://jmv.me/1276/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RPISEC pwns at NYU-Poly&#8217;s CSAW</title>
		<link>http://jmv.me/800/</link>
		<comments>http://jmv.me/800/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 06:50:15 +0000</pubDate>
		<dc:creator>Julia Van Cleve</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Sci/Tech]]></category>
		<category><![CDATA[Computer Security]]></category>
		<category><![CDATA[CSAW]]></category>
		<category><![CDATA[Cyber Security Awareness Week]]></category>
		<category><![CDATA[New York City]]></category>
		<category><![CDATA[Polytechnic Institute of New York University]]></category>
		<category><![CDATA[Rensselaer Polytechnic Institute]]></category>
		<category><![CDATA[RPI Computer Security Club]]></category>
		<category><![CDATA[RPISEC]]></category>

		<guid isPermaLink="false">http://jmv.me/?p=800</guid>
		<description><![CDATA[RPI&#8217;s Computer Security Club, RPISEC, traveled to New York this past Friday to participate in NYU-Poly&#8217;s Cyber Security Awareness Week, placing second in Application Security Capture the Flag, and both first and second in the security quiz. CSAW is a computer security competition where students from around the US participate in team challenges involving computer [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>RPI&#8217;s Computer Security Club, <a href="http://rpisec.net/" onclick="pageTracker._trackPageview('/outgoing/rpisec.net/?referer=');">RPISEC</a>, traveled to New York this past Friday to participate in <a href="http://www.poly.edu/csaw" onclick="pageTracker._trackPageview('/outgoing/www.poly.edu/csaw?referer=');">NYU-Poly&#8217;s Cyber Security Awareness Week</a>, placing second in <a href="http://www.poly.edu/csaw-CTF" onclick="pageTracker._trackPageview('/outgoing/www.poly.edu/csaw-CTF?referer=');">Application Security Capture the Flag</a>, and both first and second in the <a href="http://www.poly.edu/csaw-quiz" onclick="pageTracker._trackPageview('/outgoing/www.poly.edu/csaw-quiz?referer=');">security quiz</a>.</p>

<p>CSAW is a computer security competition where students from around the US participate in team challenges involving computer security. Cash prizes were bestowed upon those in first, second, and third place, scholarships were granted to NYU students, and travel grants were given to those who qualified.</p>

<p>Other events at CSAW included:</p>

<ul>
<li><a href="http://www.poly.edu/csaw-forensics" onclick="pageTracker._trackPageview('/outgoing/www.poly.edu/csaw-forensics?referer=');">Cyber Forensics Challenge</a> (for high school students only)</li>
<li><a href="http://www.poly.edu/csaw-embedded" onclick="pageTracker._trackPageview('/outgoing/www.poly.edu/csaw-embedded?referer=');">Embedded Systems Challenge</a></li>
<li><a href="http://www.poly.edu/csaw-research" onclick="pageTracker._trackPageview('/outgoing/www.poly.edu/csaw-research?referer=');">Research Award</a></li>
<li><a href="http://www.poly.edu/csaw-poster" onclick="pageTracker._trackPageview('/outgoing/www.poly.edu/csaw-poster?referer=');">Security Awareness Poster Competition</a></li>
</ul>

<p><a href="http://www.poly.edu/csaw-CTF#graduate" onclick="pageTracker._trackPageview('/outgoing/www.poly.edu/csaw-CTF_graduate?referer=');">International students</a> were also free to compete online, however, students were only eligible for final rounds and prizes if they were from the contiguous US.</p>

<div class="wp-caption aligncenter" style="width: 229px"><a href="http://www.facebook.com/#/pages/CSAW-Cyber-Security-Awareness-Week-of-NYUPOLY/120611727207?ref=search&amp;sid=536947250.3664904757..1" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/_/pages/CSAW-Cyber-Security-Awareness-Week-of-NYUPOLY/120611727207?ref=search_amp_sid=536947250.3664904757..1&amp;referer=');"><img style="border: 1px solid black;" title="CSAW Quiz Tournament" src="http://jmv.me/files/csawquiz.jpg" alt="Courtesy of CSAW NYU-Poly" width="219" height="299" /></a><p class="wp-caption-text">Courtesy of CSAW NYU-Poly</p></div>

<h3>In Photo:</h3>

<p>Alex Rad &#8217;11 and <a href="http://rgov.org/" onclick="pageTracker._trackPageview('/outgoing/rgov.org/?referer=');">Ryan Govostes &#8217;11</a> competed in the CSAW Quiz Tournament where they were asked about cryptography, security trivia, the history of security, and other topics.</p>

<p>More photos at:
<a href="http://research.poly.edu/~resourcespace/?c=11&amp;k=da4171899c" onclick="pageTracker._trackPageview('/outgoing/research.poly.edu/_resourcespace/?c=11_amp_k=da4171899c&amp;referer=');">http://research.poly.edu/</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save" onclick="pageTracker._trackPageview('/outgoing/www.addtoany.com/share_save?referer=');"><img src="http://jmv.me/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://jmv.me/800/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New knowledge base implemented at campus newspaper</title>
		<link>http://jmv.me/276/</link>
		<comments>http://jmv.me/276/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 04:57:59 +0000</pubDate>
		<dc:creator>Julia Van Cleve</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Sci/Tech]]></category>
		<category><![CDATA[Polytechnipedia]]></category>
		<category><![CDATA[The Polytechnic]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wiki]]></category>

		<guid isPermaLink="false">http://www.cahooted.com/?p=276</guid>
		<description><![CDATA[After working at The Polytechnic, I found that one of the main concerns of its members (besides the unnervingly late section closing times) is that once senior members of The Poly have graduated, layout, style, and other rules and guidelines will leave with them. Without a reliable and organized system in place, new members are constantly [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<div id="attachment_281" class="wp-caption alignleft" style="width: 220px"><a href="http://jmv.me/files/polytechnipedia.jpg"><img class="size-medium wp-image-281  " title="polytechnipedia" src="http://jmv.me/files/polytechnipedia.jpg" alt="Courtesy of Polytechnipedia" width="210" height="122" /></a><p class="wp-caption-text">Courtesy of Polytechnipedia</p></div>

<p>After working at <a href="http://poly.rpi.edu/" onclick="pageTracker._trackPageview('/outgoing/poly.rpi.edu/?referer=');"><em>The Polytechnic</em></a>, I found that one of the main concerns of its members (besides the unnervingly late section closing times) is that once senior members of <em>The Poly</em> have graduated, layout, style, and other rules and guidelines will leave with them. Without a reliable and organized system in place, new members are constantly needing to &#8220;recreate&#8221; their role.</p>

<p><a href="http://rgov.org/" onclick="pageTracker._trackPageview('/outgoing/rgov.org/?referer=');">Ryan Govostes &#8217;11</a>, Spring 2009 Managing Editor of <em>The Poly</em>, has decided that it is time to change how <em>The Poly</em> manages its style guide. He has created Polytechnipedia, a <a href="http://www.mediawiki.org/wiki/MediaWiki" onclick="pageTracker._trackPageview('/outgoing/www.mediawiki.org/wiki/MediaWiki?referer=');">Wiki-based</a> web page, only available to <em>Poly</em> members, which will be the new archive for <em>Poly</em>-style rules.</p>

<p>Some progress has been made. A few members have started entering some style rules from <em>The Great &amp; Marvelous Book of Arbitrary Style</em> and the Polytechnic <em>Style Guide</em>. So far it is working great, aside from a few Wiki-styling kinks that need to be ironed out. All that&#8217;s really needed now, is a workshop of some sort, to jumpstart all the <em>Poly</em> members into using Polytechnipedia.</p>

<p>Some other suggestions made, regarding the development of Polytechnipedia, are making the Wiki available to <em>Poly</em> members when outside of the <em>Poly</em> office. This would allow them to view the Wiki while they are writing their articles or laying out their sections, improving the quality of the article before it has even reached Copy.</p>

<p>Polytechnipedia has been needed for some time. Style rules and job duties will be accessible, and the time spent searching and questioning what needs to be done for a job will be dramatically reduced. Hopefully, everything works out, so the members of <em>The Poly</em> can finally get some sleep.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save" onclick="pageTracker._trackPageview('/outgoing/www.addtoany.com/share_save?referer=');"><img src="http://jmv.me/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://jmv.me/276/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Financial aid lacks reliability</title>
		<link>http://jmv.me/145/</link>
		<comments>http://jmv.me/145/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 09:57:06 +0000</pubDate>
		<dc:creator>Julia Van Cleve</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Finances]]></category>
		<category><![CDATA[Banking]]></category>
		<category><![CDATA[Financial Aid]]></category>
		<category><![CDATA[Key Bank]]></category>
		<category><![CDATA[Stafford Loan]]></category>

		<guid isPermaLink="false">http://cahooted.wordpress.com/?p=145</guid>
		<description><![CDATA[It’s almost time to register for next semester and I have a hold on my account. Apparently I owe roughly $4,000 plus a $175 late fee. I do have Stafford Loans, which I thought I took care of last semester, but for some reason they are still “pending.” The Bursar will usually tell you to just [...]


Related posts:<ol><li><a href='http://jmv.me/73/' rel='bookmark' title='Permanent Link: Search for suitable financial management software'>Search for suitable financial management software</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It’s almost time to register for next semester and I have a hold on my account. Apparently I owe roughly $4,000 plus a $175 late fee. I do have Stafford Loans, which I thought I took care of last semester, but for some reason they are still “pending.” The Bursar will usually tell you to just deduct a pending loan from the total amount that you owe. Of course, after a while if the loan is still “pending,” they get all mean and start yelling at you.</p>

<p>About a week ago I got an e-mail saying, “Please be aware that you have a Bursar hold on your account. This hold will prevent you from accessing many things on [the Student Information System] but, most importantly, will prevent you from being able to register for Fall 2009.” That’s very nice of them, punishing me for their own incompetence.</p>

<p>I e-mailed and called <a href="https://www.key.com/html/education-financing.html?sqkl=educate" onclick="pageTracker._trackPageview('/outgoing/www.key.com/html/education-financing.html?sqkl=educate&amp;referer=');">Key Bank&#8217;s Education Resources</a> (twice) and even paid a visit to RPI&#8217;s Financial Aid Office, after sending them a sweet but angry e-mail about the hold. Financial Aid told me that things were currently being taken care of and that it should all be settled by the end of the week. It’s now the end of the week and the hold is still there.</p>

<p>So, now I’m just waiting for RPI to send the loan certification to Key Bank (something they should have done a long time ago) to basically let Key Bank know that I wasn&#8217;t lying when I said I was a student. Once this is all fixed, I then plan to <em>nicely</em> ask the Bursar to give back the $175 they charged me.</p>

<p>I can’t wait till next semester, when I get to do this <em>all</em> again.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save" onclick="pageTracker._trackPageview('/outgoing/www.addtoany.com/share_save?referer=');"><img src="http://jmv.me/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://jmv.me/73/' rel='bookmark' title='Permanent Link: Search for suitable financial management software'>Search for suitable financial management software</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://jmv.me/145/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
