<?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>asdf</title>
	<atom:link href="http://asdf.personallog.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://asdf.personallog.org</link>
	<description>...</description>
	<lastBuildDate>Fri, 10 Jul 2009 21:59:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mandelbrot Set in Java</title>
		<link>http://asdf.personallog.org/2009/05/03/mandelbrot-set-in-java/</link>
		<comments>http://asdf.personallog.org/2009/05/03/mandelbrot-set-in-java/#comments</comments>
		<pubDate>Sun, 03 May 2009 21:09:46 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asdf.personallog.org/?p=220</guid>
		<description><![CDATA[Links: video, image 1, image 2
The Mandelbrot set is defined as the set of all complex numbers for which the sequence Z(n) as n nears infinity is unbounded, where Z(n+1) is defined as Z(n)^2 + c, Z(0) = c, and c is the number that is being checked. For example, using 1 + i as [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 480px"><img src="http://content.screencast.com/users/weasel707/folders/Jing/media/ad2c00f2-9958-4d7a-9632-01707f7d8295/2009-05-03_1704.png" alt="Screenshot of Mandelbrot program" width="470" height="399" /><p class="wp-caption-text">Screenshot of Mandelbrot program</p></div>
<p>Links: <a href="http://www.screencast.com/users/weasel707/folders/Jing/media/fba9c649-25bd-4e7f-ab24-c85254491e56">video</a>, <a href="http://content.screencast.com/users/weasel707/folders/Jing/media/0b2e15b8-810b-4f2d-9abc-353977d5790c/2009-04-25_1634.png">image 1</a>, <a href="http://content.screencast.com/users/weasel707/folders/Jing/media/3ab93c78-c9b9-4f05-832e-9a58aac7fdab/2009-04-24_2353.png">image 2</a></p>
<p>The Mandelbrot set is defined as the set of all complex numbers for which the sequence Z(n) as n nears infinity is unbounded, where Z(n+1) is defined as Z(n)^2 + c, Z(0) = c, and c is the number that is being checked. For example, using 1 + i as c will result in (1 + i), (1 + 3i), (-7 + 7i), (1 + 99i), ... You can see that this sequence is unbounded as the magnitude -- or absolute value -- of the number will forever increase. If, however, i is used as the number c, then the resulting sequence is i, -1 + i, -i, -1 + i, ... Since this sequence remains bounded, it is within the Mandelbrot set. The pictures of the Mandelbrot set that are generated are essentially complex numbers plotted on a Cartesian plane -- with the a (real) value on the y axis, and the b (imaginary) value on the x axis. For the calculations, the real and imaginary parts are represented as separate doubles, and are converted to screen coordinates when rendering.</p>
<p>The controls are arrow keys to move, '[' and ']' to increase/decrease number of max iterations (high number is better when zoomed in a lot, as precision is lost otherwise), minus to zoom out, click and drag to zoom in to a specific area on the screen.</p>
<p>I use two threads to render the fractal -- one for each half of the screen, as I wanted to make use of my dual-core to make rendering faster. The colours are based on the number of iterations it took to determine that the point is not within the set. If the iteration count reached the maximum iteration limit, then the number is in the set. Otherwise, the higher the iteration count, the brighter the colour. The more iterations, the more accurate the drawing (and obviously takes longer to draw), so as you increase max iterations you will see that there is less and less black (as some of the numbers on the outside edges of the black parts that were originally determined as being in the set turn out not to be in the set when going through more iterations).</p>
<p>If you want to try running it yourself, here's a JAR file: <a href="http://www.rohitab.com/discuss/index.php?act=attach&amp;type=post&amp;id=2680">link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://asdf.personallog.org/2009/05/03/mandelbrot-set-in-java/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox Logo in Illustrator</title>
		<link>http://asdf.personallog.org/2009/05/03/firefox-logo-in-illustrator/</link>
		<comments>http://asdf.personallog.org/2009/05/03/firefox-logo-in-illustrator/#comments</comments>
		<pubDate>Sun, 03 May 2009 20:57:27 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asdf.personallog.org/?p=217</guid>
		<description><![CDATA[CS4 is so cool.
]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 493px"><a href="http://content.screencast.com/users/weasel707/folders/Jing%20-%2022-04-2009/media/b65fea4e-6dcf-423c-93c0-d5d94d320e0a/2009-04-01_2344.png"><img src="http://content.screencast.com/users/weasel707/folders/Jing/media/66e5a92d-90ee-456f-aee3-57419eaa15de/2009-05-03_1654.png" alt="" width="483" height="345" /></a><p class="wp-caption-text">Illustrator CS4 screenshot. Bottom image is the original, top image is the vector one that I traced over the original.</p></div>
<p>CS4 is so cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://asdf.personallog.org/2009/05/03/firefox-logo-in-illustrator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AP Maths</title>
		<link>http://asdf.personallog.org/2009/02/28/ap-maths/</link>
		<comments>http://asdf.personallog.org/2009/02/28/ap-maths/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 00:23:02 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asdf.personallog.org/?p=212</guid>
		<description><![CDATA[So apparently our school not only wants not to run AP Calc next year, but they're thinking of not running MCR3U2. And the reasoning behind it is, to put it bluntly, retarded.
They want the people who would otherwise take AP Functions to take the U course in order to increase the U course's averages. Because, [...]]]></description>
			<content:encoded><![CDATA[<p>So apparently our school not only wants not to run AP Calc next year, but they're thinking of <strong>not running MCR3U2</strong>. And the reasoning behind it is, to put it bluntly, retarded.</p>
<p>They want the people who would otherwise take AP Functions to take the U course in order to increase the U course's averages. Because, of course, averages are EVERYTHING, and what the students themselves want has absolutely no importance. What the hell! They're limiting our knowledge and achievement potential by making us be a part of a program that is of a lower standard. I mean, if you want high averages, you might as well make the whole school take COLLEGE math! People  who take AP take it because they WANT the enriched program it offers; they WANT the challenges it provides. The administration is ignoring the real reason why the U averages are low -- that is, people taking the U course who <em>should</em> be taking the M or C course. Make THEM take the lower level course, not the gifties.</p>
<p>I, for one, am going to do two things: 1) complain to Eschle about it (being a gifted teacher, I'm sure he wouldn't be indifferent to something like this, and he has way more influence than any of us), and 2) get my parents to call the school and complain. I suggest EVERYONE do that, because they're way more likely to listen to our parents than they are to listen to us. Also, we should like organize a day where everybody goes to complain to the principal during their lunch, to the point of annoying them. Or make a petition, or something. And go join the facebook group; too lazy to find the link but balh. AGH you can tell I'm really pissed -______-.</p>
<p><span><strong><br />
</strong></p>
<h2><strong>update: YAY so apparently there WILL be a MCR3U2 course if enough people take it..... but no brar(?!)</h2>
<p></strong></p>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://asdf.personallog.org/2009/02/28/ap-maths/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>&#8220;How much would you pay for a ;-)?&#8221;</title>
		<link>http://asdf.personallog.org/2008/12/12/how-much-would-you-pay-for-a/</link>
		<comments>http://asdf.personallog.org/2008/12/12/how-much-would-you-pay-for-a/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 04:26:48 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asdf.personallog.org/?p=204</guid>
		<description><![CDATA[This is stupid.
"A Russian businessman has trademarked the emoticon — or combination of punctuation marks — used to convey a wink in text messages and e-mail."
http://www.google.com/hostednews/ap/article/ALeqM5gE4Zc6sqIDqyfBQ1WlTKBf5GdInwD950NQ680
http://mnweekly.ru/business/20081211/55360588.html
]]></description>
			<content:encoded><![CDATA[<p>This is stupid.</p>
<p><em>"A Russian businessman has trademarked the emoticon — or combination of punctuation marks — used to convey a wink in text messages and e-mail.</em><em>"</em></p>
<p><a href="http://www.google.com/hostednews/ap/article/ALeqM5gE4Zc6sqIDqyfBQ1WlTKBf5GdInwD950NQ680">http://www.google.com/hostednews/ap/article/ALeqM5gE4Zc6sqIDqyfBQ1WlTKBf5GdInwD950NQ680</a></p>
<p><a href="http://mnweekly.ru/business/20081211/55360588.html">http://mnweekly.ru/business/20081211/55360588.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://asdf.personallog.org/2008/12/12/how-much-would-you-pay-for-a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apophysis</title>
		<link>http://asdf.personallog.org/2008/11/23/apophysis/</link>
		<comments>http://asdf.personallog.org/2008/11/23/apophysis/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 19:22:53 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asdf.personallog.org/?p=199</guid>
		<description><![CDATA[http://www.apophysis.org/ - "Freeware fractal flame editor for Windows"
This is fun. here are a few I made:




Takes about 10 minutes (on my 1.8GHz dual-core) to render each of these at a res of 1680x1050 at 1000 quality, but w/e, they make cool wallpapers  
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apophysis.org/">http://www.apophysis.org/</a> - "<em>Freeware fractal flame editor for Windows</em>"</p>
<p>This is fun. here are a few I made:</p>
<p><a title="Apophysis-081122-901 by weasel707, on Flickr" href="http://www.flickr.com/photos/weasel707/3053813392/sizes/l/"><img src="http://farm4.static.flickr.com/3195/3053813392_cb77859c09.jpg" alt="Apophysis-081122-901" width="500" height="313" /></a></p>
<p><a title="Apophysis-081122-604~2 by weasel707, on Flickr" href="http://flickr.com/photos/weasel707/3052979077/sizes/l/"><img src="http://farm4.static.flickr.com/3194/3052979077_2c67738fac.jpg" alt="Apophysis-081122-604~2" width="500" height="313" /></a></p>
<p><a title="Apophysis-081121-403~1 by weasel707, on Flickr" href="http://flickr.com/photos/weasel707/3049702292/sizes/l/"><img src="http://farm4.static.flickr.com/3279/3049702292_701c6b6d87.jpg" alt="Apophysis-081121-403~1" width="500" height="313" /></a></p>
<p><a title="Apophysis-081121-207 by weasel707, on Flickr" href="http://flickr.com/photos/weasel707/3049468736/sizes/l/"><img src="http://farm4.static.flickr.com/3205/3049468736_e72ea58f88.jpg" alt="Apophysis-081121-207" width="500" height="313" /></a></p>
<p>Takes about 10 minutes (on my 1.8GHz dual-core) to render each of these at a res of 1680x1050 at 1000 quality, but w/e, they make cool wallpapers <img src='http://asdf.personallog.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://asdf.personallog.org/2008/11/23/apophysis/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>HP6 Trailer</title>
		<link>http://asdf.personallog.org/2008/11/16/hp6-trailer/</link>
		<comments>http://asdf.personallog.org/2008/11/16/hp6-trailer/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 00:24:52 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asdf.personallog.org/?p=194</guid>
		<description><![CDATA[OMG YAY!@~
http://www.mugglenet.com/app/news/full_story/1973
Watch the high res one. It's really AWEOSMEE!
]]></description>
			<content:encoded><![CDATA[<p>OMG YAY!@~</p>
<p><a href="http://www.mugglenet.com/app/news/full_story/1973">http://www.mugglenet.com/app/news/full_story/1973</a></p>
<p>Watch the <a href="http://pdl.warnerbros.com/wbmovies/halfbloodprince/trailer/Champion_D_720.wmv.zip">high res one</a>. It's really AWEOSMEE!</p>
]]></content:encoded>
			<wfw:commentRss>http://asdf.personallog.org/2008/11/16/hp6-trailer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sarah Palin fail</title>
		<link>http://asdf.personallog.org/2008/11/01/sarah-palin-fail/</link>
		<comments>http://asdf.personallog.org/2008/11/01/sarah-palin-fail/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 23:40:17 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asdf.personallog.org/?p=189</guid>
		<description><![CDATA[LOL wow.
http://www.theglobeandmail.com/servlet/story/RTGAM.20081101.wpalintranscript1011/BNStory/usElection2008/home?cid=al_gam_mostemail
]]></description>
			<content:encoded><![CDATA[<p>LOL wow.</p>
<p><a href="http://www.theglobeandmail.com/servlet/story/RTGAM.20081101.wpalintranscript1011/BNStory/usElection2008/home?cid=al_gam_mostemail">http://www.theglobeandmail.com/servlet/story/RTGAM.20081101.wpalintranscript1011/BNStory/usElection2008/home?cid=al_gam_mostemail</a></p>
]]></content:encoded>
			<wfw:commentRss>http://asdf.personallog.org/2008/11/01/sarah-palin-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>yay new monitor</title>
		<link>http://asdf.personallog.org/2008/10/31/yay-new-monitor/</link>
		<comments>http://asdf.personallog.org/2008/10/31/yay-new-monitor/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 02:30:20 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asdf.personallog.org/?p=183</guid>
		<description><![CDATA[
It's a 22-inch Dell E228WFP. Not actually from Dell though, got it at Future Shop for the same price. I didn't bother trying to do a dual-screen thing with my laptop 'cause the laptop's screen is too small and it takes too much effort looking from one to the other. The new monitor runs at [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://i159.photobucket.com/albums/t141/sovietweasel/DSC_5601.jpg"><img class="alignnone" src="http://i159.photobucket.com/albums/t141/sovietweasel/DSC_5601.jpg" alt="" width="434" height="289" /></a></p>
<p>It's a 22-inch <a href="http://accessories.dell.com/sna/products/Displays/productdetail.aspx?c=ca&amp;l=en&amp;cs=cadhs1&amp;sku=320-5205"><span class="para">Dell E228WFP</span></a>. Not actually from Dell though, got it at Future Shop for the same price. I didn't bother trying to do a dual-screen thing with my laptop 'cause the laptop's screen is too small and it takes too much effort looking from one to the other. The new monitor runs at 1680x1050 while the laptop is 1440x900 (the laptop screen is 14-ish inches btw. I think. Actually it might be 15. Whatever, who cares.)<span class="para"> </span></p>
]]></content:encoded>
			<wfw:commentRss>http://asdf.personallog.org/2008/10/31/yay-new-monitor/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Single-Exposure HDR with Photomatix &#8211; View of Eiger, Monch, and Jungfrau from Mannlichen</title>
		<link>http://asdf.personallog.org/2008/10/11/single-exposure-hdr-with-photomatix-view-of-eiger-monch-and-jungfrau-from-mannlichen/</link>
		<comments>http://asdf.personallog.org/2008/10/11/single-exposure-hdr-with-photomatix-view-of-eiger-monch-and-jungfrau-from-mannlichen/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 18:14:26 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[hdr]]></category>
		<category><![CDATA[jungfraujoch]]></category>
		<category><![CDATA[mannlichen]]></category>
		<category><![CDATA[photomatix]]></category>
		<category><![CDATA[swiss alps]]></category>
		<category><![CDATA[switzerland]]></category>

		<guid isPermaLink="false">http://asdf.personallog.org/?p=157</guid>
		<description><![CDATA[
In a previous post I showed how you can make an HDR image from 3 exposures - which is considered the "proper" way to do it. However, I also mentioned that this is possible using only one exposure. This is done using the RAW file created by the camera (you usually need to enable a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/weasel707/2819839022/" title="View of Eiger, Monch, and Jungfrau from Mannlichen / HDR by weasel707, on Flickr"><img src="http://farm4.static.flickr.com/3241/2819839022_da68dcd8cb_m.jpg" width="240" height="161" alt="View of Eiger, Monch, and Jungfrau from Mannlichen / HDR" /></a></p>
<p>In a previous post I showed how you can make an HDR image from 3 exposures - which is considered the "proper" way to do it. However, I also mentioned that this is possible using only one exposure. This is done using the RAW file created by the camera (you usually need to enable a setting to make it do that). The reason for this is that a RAW file stores much much more colour information (hence the larger size, usually 3x that of the JPG for the same photo). A JPG can only store a limited amount of colour information (24 bits is around 16 million colours). Now, if you don't intend on doing anything with the image, then keeping only the JPG file is just fine - since computer monitors can't display more colours than that anyways. However, with good cameras, the light sensor is actually a lot more sensitive and captures more detailed colour information than that which can be described by a JPG file (ie. 16 bits per channel rather than 8). Using the additional colour information available in a RAW file, it is possible to recreate conditions necessary to make an HDR image.<br />
<span id="more-157"></span></p>
<p>To my knowledge, Photoshop cannot do this, but Photomatix can. You just 'drag-and-drop' the RAW file (extensions vary, btw. My dad's Nikon makes them .NEF, Canon I think does .CRW) into Photomatix, and it informs you that it has converted your RAW file into a pseudo-HDR image, and that using more exposures is recommended. Following that you take the same steps as you would have if you had been making a multiple-exposure HDR. Click "Tone Mapping", and adjust stuff until you like it. Here is the result from one of mine:</p>
<div class="wp-caption alignnone" style="width: 500px"><a href="http://flickr.com/photos/weasel707/2818994505/in/photostream/"><img src="http://farm4.static.flickr.com/3270/2818994505_bf5ddfb5f8.jpg?v=0" alt="Original Image" width="490" height="328" /></a><p class="wp-caption-text">Original Image (ISO: 250, Shutter speed: 1/250s, Aperture: f/8)</p></div>
<div class="wp-caption alignnone" style="width: 501px"><a href="http://flickr.com/photos/weasel707/2819839022/in/photostream/"><img src="http://farm4.static.flickr.com/3241/2819839022_da68dcd8cb.jpg?v=0" alt="View of Eiger, Monch, and Jungfrau from Mannlichen / HDR" width="491" height="330" /></a><p class="wp-caption-text">View of Eiger, Monch, and Jungfrau from Mannlichen / HDR with Photomatix</p></div>
<p>You can see that the original image is slightly overexposed. The sky and mountains are too light and appear sort of hazy and faded. In the HDR one however you can see that the colours are more saturated and the mountains and sky are more detailed and visible.</p>
<p>Here's how it turned out with 2 exposures:</p>
<div class="modcaption" style="margin: 5px auto">
<div class="wp-caption alignnone" style="width: 170px"><a href="http://i159.photobucket.com/albums/t141/sovietweasel/DSC_4891.jpg"><img src="http://s159.photobucket.com/albums/t141/sovietweasel/th_DSC_4891.jpg" alt="Original Exposure #1" width="160" height="107" /></a><p class="wp-caption-text">Original Exposure #1 (ISO: 250, Shutter speed: 1/250s, Aperture: f/8, 0.00 EV)</p></div>
<div class="wp-caption alignnone" style="width: 170px"><a href="http://i159.photobucket.com/albums/t141/sovietweasel/DSC_4893.jpg"><img src="http://s159.photobucket.com/albums/t141/sovietweasel/th_DSC_4893.jpg" alt="Original Exposure #2" width="160" height="107" /></a><p class="wp-caption-text">Original Exposure #2 (ISO: 250, Shutter speed: 1/500, Aperture: f/11, -2.00 EV)</p></div>
</div>
<div class="wp-caption alignnone" style="width: 382px"><a href="http://flickr.com/photos/weasel707/2819227317/" target="_blank"><img style="border: 0pt none" src="http://farm4.static.flickr.com/3180/2819227317_912a195b42.jpg?v=0-2.jpg" border="0" alt="Photobucket" width="372" height="245" /></a><p class="wp-caption-text">HDR from 2 Exposures</p></div>
<p>Maybe it's just my opinion, but I like the first result much more (using one exposure only). The multiple-exposure one seems kind of.. flat, and too yellow.</p>
<p>Anyway, since I'm posting this, I might as well talk about the .. place this was taken, in general, cause it was really awesome there and it was probably my favourite day in Switzerland. Here's a map:</p>
<div class="wp-caption alignnone" style="width: 170px"><a href="http://i159.photobucket.com/albums/t141/sovietweasel/jungfrau-map_large.jpg"><img src="http://s159.photobucket.com/albums/t141/sovietweasel/th_jungfrau-map_large.jpg" alt="Jungfrau Region Map" width="160" height="113" /></a><p class="wp-caption-text">Jungfrau Region Map</p></div>
<p>The yellow circle is Mannlichen, where the above photos were taken from. The blue circle is Kleine Scheidegg, the town (if you can call it that) to which we walked from Mannlichen. This whole region has a privately-operated railway network (Jungfraubahnen), which one can use to get around between the places worth seeing. Of course, the major tourist attraction here is Jungfraujoch (the blue circle on the above map), which is the highest train station in Europe at 3471m. A round-trip ticket from Interlaken to Jungfraujoch and back costs about $160 per person (discounts if you have a Eurail Pass or a Swiss Pass). It's expensive, but worth it.</p>
<p>Something else I noticed when I was looking through the photos is you can see Mannlichen (where these were taken from) on another photo taken from Jungfraujoch.</p>
<div class="wp-caption alignnone" style="width: 476px"><a href="http://flickr.com/photos/weasel707/2819107261/in/set-72157607062247556/"><img src="http://farm4.static.flickr.com/3232/2819107261_ce159911ba.jpg?v=0" alt="View from Jungfraujoch, Switzerland (click to see where Mannlichen is labeled)" width="466" height="311" /></a><p class="wp-caption-text">View from Jungfraujoch, Switzerland (click and then mouse-over the image on the Flickr page to see where Mannlichen is labeled)</p></div>
<p>Anyway, that's everything for now.</p>
<p>[Edit]: I also changed the background on this site to that image cause I was getting bored of the old one.</p>
]]></content:encoded>
			<wfw:commentRss>http://asdf.personallog.org/2008/10/11/single-exposure-hdr-with-photomatix-view-of-eiger-monch-and-jungfrau-from-mannlichen/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Viva Strike</title>
		<link>http://asdf.personallog.org/2008/10/06/viva-strike/</link>
		<comments>http://asdf.personallog.org/2008/10/06/viva-strike/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 01:12:29 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[News/Current Events]]></category>
		<category><![CDATA[viva strike]]></category>

		<guid isPermaLink="false">http://asdf.personallog.org/?p=127</guid>
		<description><![CDATA[Is anybody else as annoyed with the recent Viva strike as I am? Transport service frequency along the Viva routes has gone down from a convenient every ten minutes to every half hour, with only YRT services running. Today is the 11th day of the strike, which started on September 25th, 2008.

I blame this all [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://farm1.static.flickr.com/41/75920020_80b2fe726c.jpg" alt="" width="162" height="107" />Is anybody else as annoyed with the recent Viva strike as I am? Transport service frequency along the Viva routes has gone down from a convenient every ten minutes to every half hour, with only YRT services running. Today is the <strong>11th day</strong> of the strike, which started on September 25th, 2008.<br />
<span id="more-127"></span></p>
<p>I blame this all on workers' unions. Let's first clarify what one is. <em>"A <strong>trade union</strong> or <strong>labour union</strong> is an organization of workers who have banded together to achieve common goals in key areas such as wages, hours, and working conditions, forming a cartel of labor. The trade union, through its leadership, bargains with the employer on behalf of union members and negotiates labor contracts with employers."</em></p>
<p>Basically, a labour union is an evil organisation which makes an agreement with the employers to represent the "rights" of the empoyees. There are several UN legislations which recognize the rights of labour unions and their members. One is Article 23 of the Universal Declaration of Human Rights which <em>"identifies the ability to organise trade unions as a fundamental human right"</em> and another is the Declaration on Fundamental Principles and Rights at Work, which defines the <em>"freedom of association and the effective recognition of the right to collective bargaining as an essential right of workers."</em></p>
<p>The most important reason for my disapproval of unions is the increase in prices of everyday commodities. In this case, <strong>bus tickets.</strong> Let's look at the reasons for this strike. The Toronto Star quoted the leader of Amalgamated Transit Union Local 113 (the labour union which represents Viva bus drivers),  Bob Kinnear, as saying that "drivers are looking for paid sick leave, more consistent scheduling and a pay increase of 3 per cent in each year of a three-year agreement." The employer evidently doesn't want to go along with this price increase, so the union members decided to go on strike. And there is nothing anybody can do about it, as human rights legislations and labour laws seem to do nothing to prohibit strikes.</p>
<p>Think about how this situation would play out if it weren't for unions. A number of people who are unhappy with the employer's conditions refuse to work and go on strike - the employer fires them. The others learn from example and go back to work. However, the agreements made between the union and the employer don't let the employer do anything about it, and neither does law. What will usually end up happening is that the employer will accept the union's terms and raise the wage of the bus drivers. And how does this affect everybody else? The employer needs to make additional money to be able to pay the drivers more, so <strong>bus ticket prices go up</strong>. Not too long ago an adult ticket cost only $2.50, or even less than that. Now it's $2.75 or $3.00, I don't even remember.</p>
<p>The Toronto Star article also mentions another interesting piece of information - <em>"The union proposal would put that rate up to $21.37, slightly more than the drivers at York Region’s three other contracted bus operators."</em> Yes, York Region Transit has more than one contractor working for them. Different operators run YRT and Viva services. So, if Viva drivers are making more all of a sudden, what will the YRT drivers think? Will they not react in much the same way? And will the employer not give in to the demands the same way? And then think about the TTC. Did they not also have a strike recently? Well, if Viva drivers will be making a few cents more than them, who's to say they won't want to make more $ than them? Accepting the union's proposal would be another step in the already existing loop that pushes our transit prices higher and higher.</p>
<p>However, I do have some hope in the screwed up system in which we live. There was an incident where TTC drivers went on strike until the provincial government ordered them back to work. I just hope the same thing will happen here, and that the employers will not give in to the union's demands.</p>
]]></content:encoded>
			<wfw:commentRss>http://asdf.personallog.org/2008/10/06/viva-strike/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
