<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Strange Blog</title>
	
	<link>http://j.strane.net/wp</link>
	<description>Programming, Music, Mac, Game, ...</description>
	<lastBuildDate>Thu, 05 Jan 2012 17:07:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/jstrane_blog" /><feedburner:info uri="jstrane_blog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><feedburner:emailServiceId>jstrane_blog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><feedburner:feedFlare href="http://add.my.yahoo.com/rss?url=http%3A%2F%2Ffeeds.feedburner.com%2Fjstrane_blog" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif">Subscribe with My Yahoo!</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2Fjstrane_blog" src="http://www.newsgator.com/images/ngsub1.gif">Subscribe with NewsGator</feedburner:feedFlare><feedburner:feedFlare href="http://www.bloglines.com/sub/http://feeds.feedburner.com/jstrane_blog" src="http://www.bloglines.com/images/sub_modern11.gif">Subscribe with Bloglines</feedburner:feedFlare><feedburner:feedFlare href="http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2Fjstrane_blog" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><feedburner:feedFlare href="http://www.live.com/?add=http%3A%2F%2Ffeeds.feedburner.com%2Fjstrane_blog" src="http://tkfiles.storage.msn.com/x1piYkpqHC_35nIp1gLE68-wvzLZO8iXl_JMledmJQXP-XTBOLfmQv4zhj4MhcWEJh_GtoBIiAl1Mjh-ndp9k47If7hTaFno0mxW9_i3p_5qQw">Subscribe with Live.com</feedburner:feedFlare><feedburner:feedFlare href="http://www.hanrss.com/add_sub.qst?url=http%3A%2F%2Ffeeds.feedburner.com%2Fjstrane_blog" src="http://static.hanrss.com/images/add_to_hanrss3.gif">Subscribe with HanRSS</feedburner:feedFlare><item>
		<title>How to use SCons in building a PDF (LaTeX)</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/94vuFp-4sw4/1292</link>
		<comments>http://j.strane.net/wp/archives/1292#comments</comments>
		<pubDate>Wed, 19 Oct 2011 15:40:13 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[SCons]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=1292</guid>
		<description><![CDATA[Most of the LaTeX users, especially who use pdflatex, keep a PDF viewer running to see changes while editing and compiling a LaTeX file. Also, they often use Make or SCons to automate the compile process.
In my case, I use SCons and it works well in Linux and Mac OS X. However, in Windows, SCons [...]]]></description>
			<content:encoded><![CDATA[<p>Most of the <a href="http://www.latex-project.org/">LaTeX</a> users, especially who use <a href="http://www.math.rug.nl/~trentelman/jacob/pdflatex/pdflatex.html">pdflatex</a>, keep a <acronym title="Portable Document Format">PDF</acronym> viewer running to see changes while editing and compiling a LaTeX file. Also, they often use Make or <a href="http://scons.org/">SCons</a> to automate the compile process.</p>
<p>In my case, I use SCons and it works well in Linux and Mac <acronym title="Operating System">OS</acronym> X. However, in Windows, <strong>SCons produces an error and is failed to update the <acronym title="Portable Document Format">PDF</acronym> file when it is already opened</strong> by a <acronym title="Portable Document Format">PDF</acronym> viewer. This is because most <acronym title="Portable Document Format">PDF</acronym> viewers for Windows set a read-only attribute on an opened file and SCons removes a target file before build it as default. In other words, SCons would stop because it is simply failed to remove the locked file.</p>
<p>Other SCons users already experienced the same issue. Luckily, I find this &#8220;<a href="http://scons.tigris.org/ds/viewMessage.do?dsForumId=1272&#038;dsMessageId=2448348">[scons-users] pdflatex preview on windows &#8211; file locking</a>&#8221; thread. They examined an exact cause of this issue and suggested a very useful soultion using SCons&#8217;s <a href="http://scons.org/doc/HTML/scons-user/c3120.html">the Precious Function</a> which prevents target files from being removed.</p>
<p>Here is my wrap-up and solution to this issue.</p>
<pre class="brush: python; highlight: [6]; title: SConstruct; notranslate">import os
env=Environment()
# Look in standard directory ~/texmf for .sty files
env['ENV']['TEXMFHOME'] = os.path.join(os.environ['HOME'],'texmf')
env.PDF(target = 'main.pdf', source = 'main.tex')
env.Precious('main.pdf')</pre>
<p><sup><a href="http://j.strane.net/wp/archives/1292#footnote_0_1292" id="identifier_0_1292" class="footnote-link footnote-identifier-link" title="LatexSupport &amp;#8211; SCons Wiki">1</a></sup></p>
<p>Lastly, I have an advice in choosing a <acronym title="Portable Document Format">PDF</acronym> viewer. Do not use Adobe Reader. It prevents opened files from changing, so it ends up causing an error. At least, you need to use <a href="http://www.foxitsoftware.com/Secure_PDF_Reader/">Foxit Reader</a>, <a href="http://blog.kowalczyk.info/software/sumatrapdf/free-pdf-reader.html">Sumatra <acronym title="Portable Document Format">PDF</acronym></a>, <a href="http://projects.gnome.org/evince/?guid=ON">Evince</a> or so on. I prefer to <a href="http://blog.kowalczyk.info/software/sumatrapdf/free-pdf-reader.html">Sumatra <acronym title="Portable Document Format">PDF</acronym></a> because it reloads automatically when it detects a file changed.</p>
<p>Happy LaTeXing! <img src='http://j.strane.net/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p><hr /><ol class="footnotes"><li id="footnote_0_1292" class="footnote"><a href="http://www.scons.org/wiki/LatexSupport">LatexSupport &#8211; SCons Wiki</a></li></ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=94vuFp-4sw4:m69SEovB6RI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=94vuFp-4sw4:m69SEovB6RI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=94vuFp-4sw4:m69SEovB6RI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=94vuFp-4sw4:m69SEovB6RI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=94vuFp-4sw4:m69SEovB6RI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=94vuFp-4sw4:m69SEovB6RI:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/94vuFp-4sw4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/1292/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/1292</feedburner:origLink></item>
		<item>
		<title>Remembering Steve Jobs: One of the “Crazy Ones”</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/RBLcGuX3fRc/1242</link>
		<comments>http://j.strane.net/wp/archives/1242#comments</comments>
		<pubDate>Thu, 06 Oct 2011 04:59:09 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Steve Jobs]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=1242</guid>
		<description><![CDATA[당신은 스티브 잡스를 인용할 수도, 그의 의견에 반대할 수도, 그를 찬양하거나 혹은 비난할 수도 있다. 하지만 당신이 할 수 없는 단 한 가지는, 바로 그와 그의 창조물을 못 본 척 무시하는 것이다. 왜냐하면 그는 기존의 것을 전혀 새롭게 바꿨고 앞으로 가야 할 새 지평을 열었으며 그 결과 인류의 진보를 앞당겼기 때문이다. 그는 미친 사람이었지만, 동시에 [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1243" class="wp-caption aligncenter" style="width: 310px"><a href="http://j.strane.net/wp/wp-content/uploads/2011/10/t_hero.png" rel="lightbox[1242]"><img class="size-medium wp-image-1243" title="Steve Jobs (1955-2011)" src="http://j.strane.net/wp/wp-content/uploads/2011/10/t_hero-300x273.png" alt="Steve Jobs (1955-2011)" width="300" height="273" /></a><p class="wp-caption-text">Steve Jobs (1955-2011)</p></div>
<p>당신은 스티브 잡스를 인용할 수도, 그의 의견에 반대할 수도, 그를 찬양하거나 혹은 비난할 수도 있다. 하지만 당신이 할 수 없는 단 한 가지는, 바로 <strong>그와 그의 창조물을 못 본 척 무시하는 것</strong>이다. 왜냐하면 그는 기존의 것을 전혀 새롭게 바꿨고 앞으로 가야 할 새 지평을 열었으며 그 결과 인류의 진보를 앞당겼기 때문이다. 그는 미친 사람이었지만, 동시에 천재였다. 스스로 세상을 바꿀 수 있다고 믿을 만큼 미쳤던 이 사람이 결국 세상을 바꿨고, 이제 그는 더 이상 우리 곁에 없다. 그를 기억한다.<sup><a href="http://j.strane.net/wp/archives/1242#footnote_0_1242" id="identifier_0_1242" class="footnote-link footnote-identifier-link" title="이 글은 아래 Think Different 광고의 내용을 번역 및 조금 각색한 것이다.">1</a></sup></p>
<p style="text-align: center;"><strong><a href="http://www.apple.com/stevejobs/">R.I.P. Steve Jobs (1955-2011)</a></strong><sup><a href="http://j.strane.net/wp/archives/1242#footnote_1_1242" id="identifier_1_1242" class="footnote-link footnote-identifier-link" title="애플 홈페이지에서 위 사진을 가져오는데 파일명을 보니 t_hero.png 였다. 자기 회사의 창업자이자 전 CEO의 사진을 올리면서 파일명을 hero라고 네이밍하던 디자이너의 마음을 조금은 알 수 있을 것 같다.">2</a></sup></p>
<p>&nbsp;</p>
<h3>관련 동영상들</h3>
<p>CNN에서 만든 &#8220;Apple&#8217;s passionate pitchman&#8221; 동영상이다. 실제로 지켜본 키노트들인데, 이렇게 다시 정리해서 보니 iPod Nano 발표 때 Nano를 코인 포켓에서 꺼냈을 때의 충격도 iPhone 발표 때는 &#8220;과연 컴퓨터 회사가&#8230;&#8221; 라고 회의적으로 생각했던 것도 새록새록 기억나면서 매우 감동적이다.</p>
<p><object id="ep" width="416" height="374" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="wmode" value="transparent" /><param name="src" value="http://i.cdn.turner.com/cnn/.element/apps/cvp/3.0/swf/cnn_416x234_embed.swf?context=embed_edition&amp;videoId=us/2011/08/24/bts.steve.jobs.apple.timeline.cnn" /><embed id="ep" width="416" height="374" type="application/x-shockwave-flash" src="http://i.cdn.turner.com/cnn/.element/apps/cvp/3.0/swf/cnn_416x234_embed.swf?context=embed_edition&amp;videoId=us/2011/08/24/bts.steve.jobs.apple.timeline.cnn" allowfullscreen="true" allowscriptaccess="always" wmode="transparent" /></object></p>
<p>&nbsp;</p>
<p>그리고 내가 번역 및 각색한 글의 원본인 Apple의 Think Different 광고이다. 실제 방송된 버전이 아닌 스티브 잡스가 직접 나레이션을 녹음한 버전이다.</p>
<p><object width="500" height="375"><param name="movie" value="http://www.youtube.com/v/8rwsuXHA7RA?version=3&#038;feature=oembed"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8rwsuXHA7RA?version=3&#038;feature=oembed" type="application/x-shockwave-flash" width="500" height="375" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<blockquote><p>“Here’s to the crazy ones. The misfits. The rebels. The troublemakers. The round pegs in the square holes. The ones who see things differently. They’re not fond of rules. And they have no respect for the status quo. You can quote them, disagree with them, glorify or vilify them. About the only thing you can’t do is ignore them. Because they change things. They push the human race forward. And while some may see them as the crazy ones, we see genius. Because the people who are crazy enough to think they can change the world, are the ones who do.”</p></blockquote>
<p>페이스북 창업자 <a href="http://www.facebook.com/zuck/posts/10100100934727791">Mark Zuckerberg의 추도문</a>이다. 여기 달린 리플에 따르면 스티브 잡스는 iCloud를 설치하러 올라갔다고 한다.</p>
<p>가수 비와 춤 대결을 펼쳤던 걸로 국내에 유명한 스티븐 콜베어의 &#8220;콜베어 리포트 &#8211; 스티브 잡스 헌정&#8221; 영상이다. 늘 그렇듯이 시종일관 재밌지만, 마지막 장면은 정말 짠하다.</p>
<div style="background-color:#000000;width:520px;">
<div style="padding:4px;"><embed src="http://media.mtvnservices.com/mgid:cms:video:colbertnation.com:399182" width="512" height="288" type="application/x-shockwave-flash" allowFullScreen="true" allowScriptAccess="always" base="." flashVars=""></embed><p style="text-align:left;background-color:#FFFFFF;padding:4px;margin-top:4px;margin-bottom:0px;font-family:Arial, Helvetica, sans-serif;font-size:12px;"><b><a href="http://www.colbertnation.com/the-colbert-report-videos/399182/october-06-2011/tribute-to-steve-jobs">The Colbert Report</a></b><br/>Get More: <a href='http://www.colbertnation.com/full-episodes/'>Colbert Report Full Episodes</a>,<a href='http://www.indecisionforever.com/'>Political Humor &#038; Satire Blog</a>,<a href='http://www.colbertnation.com/video'>Video Archive</a></p>
</div>
</div>
<p align="center"><strong>&#8220;나도 마찬가지예요. 그동안 고마웠어요.<br />
(Right back at &#8216;cha. Thanks for everything.)&#8221;</strong></p>
<p><a href="http://j.strane.net/wp/wp-content/uploads/2011/10/tumblr_lqhr46trpa1qz9917o1_500.png" rel="lightbox[1242]"><img src="http://j.strane.net/wp/wp-content/uploads/2011/10/tumblr_lqhr46trpa1qz9917o1_500.png" alt="" title="Steve Jobs in the Apple logo" width="300" height="300" class="aligncenter size-full wp-image-1286" /></a></p><hr /><ol class="footnotes"><li id="footnote_0_1242" class="footnote">이 글은 아래 Think Different 광고의 내용을 번역 및 조금 각색한 것이다.</li><li id="footnote_1_1242" class="footnote">애플 홈페이지에서 위 사진을 가져오는데 파일명을 보니 <a href="http://images.apple.com/home/images/t_hero.png" class="broken_link" rel="lightbox[1242]">t_hero.png</a> 였다. 자기 회사의 창업자이자 전 CEO의 사진을 올리면서 파일명을 hero라고 네이밍하던 디자이너의 마음을 조금은 알 수 있을 것 같다.</li></ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=RBLcGuX3fRc:BXYpXfdQSoY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=RBLcGuX3fRc:BXYpXfdQSoY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=RBLcGuX3fRc:BXYpXfdQSoY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=RBLcGuX3fRc:BXYpXfdQSoY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=RBLcGuX3fRc:BXYpXfdQSoY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=RBLcGuX3fRc:BXYpXfdQSoY:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/RBLcGuX3fRc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/1242/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/1242</feedburner:origLink></item>
		<item>
		<title>게임 “Planescape: Torment” 중 Morte’s Tale</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/u83F82zx8VU/1221</link>
		<comments>http://j.strane.net/wp/archives/1221#comments</comments>
		<pubDate>Fri, 08 Jul 2011 08:43:24 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Game]]></category>
		<category><![CDATA[Planescape: Torment]]></category>
		<category><![CDATA[Tale]]></category>
		<category><![CDATA[게임]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=1221</guid>
		<description><![CDATA[한 노인이 어두운 길에 홀로 앉아 있었어. 그는 어느 방향으로 가야 할지 몰랐고, 행선지도, 자신이 누구인지도 망각하고 있었어. 그는 피곤한 다리를 쉬게 하기 위하여 잠시 앉았지. 그리고 올려다보니 갑자기 눈앞에 어떤 노파가 나타난 거야. 그녀는 이빨도 없이 싱긋 웃었지, 그리고 깔깔거리면서 말했어.
&#8220;이제 당신의 세 번째 소원을 말할 차례요. 무엇을 원하시오?&#8221;
&#8220;세 번째 소원?&#8221;
남자는 당황했어.
&#8220;첫 번째와 두 [...]]]></description>
			<content:encoded><![CDATA[<p>한 노인이 어두운 길에 홀로 앉아 있었어. 그는 어느 방향으로 가야 할지 몰랐고, 행선지도, 자신이 누구인지도 망각하고 있었어. 그는 피곤한 다리를 쉬게 하기 위하여 잠시 앉았지. 그리고 올려다보니 갑자기 눈앞에 어떤 노파가 나타난 거야. 그녀는 이빨도 없이 싱긋 웃었지, 그리고 깔깔거리면서 말했어.</p>
<p>&#8220;이제 당신의 세 번째 소원을 말할 차례요. 무엇을 원하시오?&#8221;</p>
<p>&#8220;세 번째 소원?&#8221;</p>
<p>남자는 당황했어.</p>
<p>&#8220;첫 번째와 두 번째 소원도 말한 적이 없는데 어떻게 세 번째 소원을 말하라는 거요?&#8221;</p>
<p>&#8220;당신의 두 소원은 이미 성취되었소.&#8221;</p>
<p>노파가 말했지.</p>
<p>&#8220;하지만 당신의 두 번째 소원은 모든 걸 첫 번째 소원을 말하기 전 상태로 되돌려 달라는 것이었소. 그래서 당신은 아무것도 기억하지 못하는 거요. 왜냐하면, 모든 것이 정확히 당신이 어떤 소원도 말하기 전의 상태로 되돌아갔기 때문이오.&#8221;</p>
<p>그녀는 불쌍한 노인을 보며 깔깔 웃었지.</p>
<p>&#8220;그래서 하나의 소원만 남은 거요.&#8221;</p>
<p>&#8220;좋소.&#8221;</p>
<p>노인이 말했어.</p>
<p>&#8220;나는 이 얘기를 믿지 않소. 하지만 소원을 말해서 손해 볼 건 없으니까&#8230;<br />
나는 내가 누군지 알고 싶소.&#8221;<br />
.<br />
.<br />
.<br />
&#8220;재미있군.&#8221;</p>
<p>노파는 소원을 들어주고, 영원히 사라지며 말했어.</p>
<p>&#8220;그게 바로 당신의 첫 번째 소원이었소.&#8221;</p>
<h3>설명</h3>
<p>Black Isle Studios가 만든 &#8220;<a href="http://en.wikipedia.org/wiki/Planescape:_Torment">Planescape: Torment</a>&#8220;(플레인스케이프: 토먼트, 1999. 12. 12)라는 게임에 나오는 이야기이다. 작중 <a href="http://en.wikipedia.org/wiki/List_of_characters_in_Planescape:_Torment#Mortimer_.22Morte.22_Rictusgrin">Morte</a>라는 캐릭터<sup><a href="http://j.strane.net/wp/archives/1221#footnote_0_1221" id="identifier_0_1221" class="footnote-link footnote-identifier-link" title="사진을 보면 알겠지만, 떠다니는 해골이다[..]">1</a></sup>가 들려주는데, 옛날부터 소설이나 드라마, 영화 등에 자주 나오는 세 가지 소원(Three Wishes) 이야기의 약간 꼬아진 형태이다. Morte&#8217;s Tale의 영어 원문은 아래와 같다.</p>
<blockquote><p>
I was out of stories, but asked Morte if he had a story to trade.</p>
<p>He replied, &#8220;Me? Why do *I* have to tell a story?&#8221;</p>
<p>I told him to just tell a story, to which he complied.</p>
<p>&#8220;An elderly man was sitting alone on a dark path, right? He wasn&#8217;t certain of which direction to go, and he&#8217;d forgotten both where he was traveling to and who he was. He&#8217;d sat down for a moment to rest his weary legs, and suddenly looked up to see an elderly woman before him. She grinned toothlessly and with a cackle, spoke: &#8216;Now your *third* wish. What will it be?&#8217;&#8221;</p>
<p>&#8220;&#8216;Third wish?&#8217; The man was baffled. &#8216;How can it be a third wish if I haven&#8217;t had a first and second wish?&#8217;&#8221;</p>
<p>&#8220;&#8216;You&#8217;ve had two wishes already,&#8217; the hag said, &#8216;but your second wish was for me to return everything to the way it was before you had made your first wish. That&#8217;s why you remember nothing; because everything is the way it was before you made any wishes.&#8217; She cackled at the poor berk. &#8216;So it is that you have one wish left.&#8217;&#8221;</p>
<p>&#8220;&#8216;All right,&#8217; said the man, &#8220;I don&#8217;t believe this, but there&#8217;s no harm in wishing. I wish to know who I am.&#8217;&#8221;</p>
<p>&#8220;&#8216;Funny,&#8217; said the old woman as she granted his wish and disappeared forever. &#8216;That was your first wish.&#8217;&#8221;<sup><a href="http://j.strane.net/wp/archives/1221#footnote_1_1221" id="identifier_1_1221" class="footnote-link footnote-identifier-link" title="YVES THE TALE-CHASER; Quotes: Planescape Torment">2</a></sup>
</p></blockquote><hr /><ol class="footnotes"><li id="footnote_0_1221" class="footnote"><a href="http://j.strane.net/wp/wp-content/uploads/2011/07/morte.jpg" rel="lightbox[1221]">사진</a>을 보면 알겠지만, 떠다니는 해골이다[..]</li><li id="footnote_1_1221" class="footnote"><a href="http://torment.sorcerers.net/unovel/html/trmnt038.shtml">YVES THE TALE-CHASER</a>; <a href="http://tvtropes.org/pmwiki/pmwiki.php/Quotes/PlanescapeTorment">Quotes: Planescape Torment</a></li></ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=u83F82zx8VU:bcLgcm1Eljo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=u83F82zx8VU:bcLgcm1Eljo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=u83F82zx8VU:bcLgcm1Eljo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=u83F82zx8VU:bcLgcm1Eljo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=u83F82zx8VU:bcLgcm1Eljo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=u83F82zx8VU:bcLgcm1Eljo:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/u83F82zx8VU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/1221/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/1221</feedburner:origLink></item>
		<item>
		<title>대학국어 (대국) 한자 공부 사이트</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/XczDh_TxT90/1182</link>
		<comments>http://j.strane.net/wp/archives/1182#comments</comments>
		<pubDate>Thu, 07 Jul 2011 16:58:19 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Flashcard]]></category>
		<category><![CDATA[Quizlet]]></category>
		<category><![CDATA[대학국어]]></category>
		<category><![CDATA[한자]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=1182</guid>
		<description><![CDATA[개정판 『대학국어 (글읽기와 글쓰기)』 (2009. 2. 25) 책에 수록된 한자어 1,038개를 모두 공부할 수 있는 flashcard set입니다. Quizlet이라는 웹서비스를 이용하여 만들었으니 아마 이 블로그가 사라지더라도(?) 서비스에는 지장이 없을 것 같습니다.

&#8220;대학국어 (대국) 한자&#8221; 바로 가기

암기 방법은 아래처럼 한자가 뜨면 사용자가 이 한자에 해당하는 음독을 한글로 입력하는 방식입니다. 1,038개의 단어를 모두 한 바퀴 돌고 나면 틀린 단어들만 [...]]]></description>
			<content:encoded><![CDATA[<p>개정판 『대학국어 (글읽기와 글쓰기)』 (2009. 2. 25) 책에 수록된 한자어 1,038개를 모두 공부할 수 있는 flashcard set입니다. Quizlet이라는 웹서비스를 이용하여 만들었으니 아마 이 블로그가 사라지더라도(?) 서비스에는 지장이 없을 것 같습니다.</p>
<ul>
<li><a href="http://quizlet.com/5111767/%eb%8c%80%ed%95%99%ea%b5%ad%ec%96%b4-%eb%8c%80%ea%b5%ad-%ed%95%9c%ec%9e%90-flash-cards/">&#8220;대학국어 (대국) 한자&#8221; 바로 가기</a></li>
</ul>
<p>암기 방법은 아래처럼 한자가 뜨면 사용자가 이 한자에 해당하는 음독을 한글로 입력하는 방식입니다. 1,038개의 단어를 모두 한 바퀴 돌고 나면 틀린 단어들만 모아서 보여줍니다. 이때 틀린 단어들만 모은 새로운 set을 만들어 두고 계속 복습할 수 있습니다. 그리고 이런 오답 set들을 여러 개 모아서 하나의 combine set을 만들 수도 있습니다.</p>
<div style="background:#fff;padding:3px"><iframe src="http://quizlet.com/5111767/learn/embed/?hideLinks" height="278" width="100%" style="border:0;" scrolling="no"></iframe><br />
<select style="float:right;margin-right:3px" onchange="var quizlet_s=this.options[this.selectedIndex].value;var quizlet_f=this;while(quizlet_f.nodeName.toLowerCase()!='iframe')quizlet_f=quizlet_f.previousSibling;quizlet_f.src=quizlet_s.slice(0,-3);quizlet_f.height=quizlet_s.slice(-3);this.value=0">
<option value="0" selected="selected">Choose a Study Mode</option>
<option value="http://quizlet.com/5111767/scatter/embed/?hideLinks&#038;height=410">Scatter</option>
<option value="http://quizlet.com/5111767/learn/embed/?hideLinks&#038;height=278">Learn</option>
<option value="http://quizlet.com/5111767/familiarize/embed/?hideLinks&#038;height=300">Flashcards</option>
</select>
<div style="float:left;font-size:11px;padding-top:2px"><a style="float: left;margin: -2px 6px 0pt 2px;" href="http://quizlet.com/"><img src="http://quizlet.com/a/i/quizlet-embed-logo.zhvr.png" border="0" title="Quizlet.com, home of free online educational games" alt="Quizlet.com, home of free online educational games" /></a> <a href="http://quizlet.com/5111767/%eb%8c%80%ed%95%99%ea%b5%ad%ec%96%b4-%eb%8c%80%ea%b5%ad-%ed%95%9c%ec%9e%90-flash-cards/">Study these flash cards</a> | <a href="http://quizlet.com/subject/korean/">Study korean flash cards</a></div>
<div style="clear:both"></div>
</div>
<p>또는 이렇게 플래시카드 형태로 보면서 암기할 수도 있습니다. 이외에도 원하는 문제 개수와 유형을 입력하면 그에 맞춰서 시험지와 답안지를 만들어주는 기능도 있습니다.</p>
<div style="background:#fff;padding:3px"><iframe src="http://quizlet.com/5111767/familiarize/embed/?hideLinks" height="300" width="100%" style="border:0;" scrolling="no"></iframe><br />
<select style="float:right;margin-right:3px" onchange="var quizlet_s=this.options[this.selectedIndex].value;var quizlet_f=this;while(quizlet_f.nodeName.toLowerCase()!='iframe')quizlet_f=quizlet_f.previousSibling;quizlet_f.src=quizlet_s.slice(0,-3);quizlet_f.height=quizlet_s.slice(-3);this.value=0">
<option value="0" selected="selected">Choose a Study Mode</option>
<option value="http://quizlet.com/5111767/scatter/embed/?hideLinks&#038;height=410">Scatter</option>
<option value="http://quizlet.com/5111767/learn/embed/?hideLinks&#038;height=278">Learn</option>
<option value="http://quizlet.com/5111767/familiarize/embed/?hideLinks&#038;height=300">Flashcards</option>
</select>
<div style="float:left;font-size:11px;padding-top:2px"><a style="float: left;margin: -2px 6px 0pt 2px;" href="http://quizlet.com/"><img src="http://quizlet.com/a/i/quizlet-embed-logo.zhvr.png" border="0" title="Quizlet.com, home of free online educational games" alt="Quizlet.com, home of free online educational games" /></a> <a href="http://quizlet.com/5111767/%eb%8c%80%ed%95%99%ea%b5%ad%ec%96%b4-%eb%8c%80%ea%b5%ad-%ed%95%9c%ec%9e%90-flash-cards/">Study these flash cards</a> | <a href="http://quizlet.com/subject/korean/">Study korean flash cards</a></div>
<div style="clear:both"></div>
</div>
<p>보통 한자시험을 절반씩 두 번에 걸쳐 시험 보는 것 같은데, 범위 정하는 게 강의마다 조금씩 달라서 그냥 전 범위 하나로 올려뒀습니다. 경험상 학기 초 여유 있을 때 전 범위를 다 외워두는 것도 나쁘지 않습니다. 하지만 꼭 범위를 나눠서 외우고 싶으면 아래 링크해둔 원본 파일을 이용해서 새로운 set을 만들면 됩니다.</p>
<p>그럼 모두 좋은 점수 받으시길!</p>
<h3>참고 자료</h3>
<ul>
<li><a href="http://book.naver.com/bookdb/book_detail.nhn?bid=5965857">서울대학교 대학국어편찬위원회 편, 『대학국어 (글읽기와 글쓰기)』, 서울대학교출판부, 2009. 2. 25.</a></li>
<li><a href="https://docs.google.com/leaf?id=0B-0pzh9XSklDYzAxM2QxOGYtMzEyOC00NGU2LThjZTEtYmZlNjczODMwYTYw&#038;hl=en_US">대학국어 한자 원본 파일 by 박상일 (HWP)</a></li>
<li><a href="https://spreadsheets.google.com/spreadsheet/ccc?key=0Au0pzh9XSklDdEU0MTlBb092NEl5Q0lIdGc1UEc4dkE&#038;hl=en_US">대학국어 한자 원본 파일 by 박상일 (Google Docs &#8211; Spreadsheets)</a></li>
<li>
<a href="https://docs.google.com/leaf?id=0B-0pzh9XSklDMzEyNjNmYTItZTRjMy00YTgwLWEwYjYtYjZlOGM0N2FmNTZl&#038;hl=en_US">대학국어 한자 원본 파일 by HyeonYeong (HWP)</a></li>
<li><a href="http://snu.theand.net">서울대학교 대학국어 한자시험 by Kivol</a></li>
</ul>
<h3>오류 수정 Changelog</h3>
<ol>
<li>p.48 부제 副祭 -> 副題</li>
<li>p.277 위주와 접목이 한 줄에 붙어있는 것 수정</li>
</ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=XczDh_TxT90:8A5057uNBaU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=XczDh_TxT90:8A5057uNBaU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=XczDh_TxT90:8A5057uNBaU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=XczDh_TxT90:8A5057uNBaU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=XczDh_TxT90:8A5057uNBaU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=XczDh_TxT90:8A5057uNBaU:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/XczDh_TxT90" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/1182/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/1182</feedburner:origLink></item>
		<item>
		<title>게임 셧다운제, 과연 적절한 규제인가?</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/V1Rlg9Ew--Y/1122</link>
		<comments>http://j.strane.net/wp/archives/1122#comments</comments>
		<pubDate>Fri, 08 Apr 2011 12:08:29 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2011-1]]></category>
		<category><![CDATA[Game]]></category>
		<category><![CDATA[게임]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=1122</guid>
		<description><![CDATA[
청소년보호법 일부개정법률안, 일명 &#8220;게임 셧다운제&#8221;에 대해서 수강 중인 과목의 &#8220;말하기&#8221; 파트 발표용으로 만들었던 키노트입니다. 주된 평가가 주장의 내용보다는 발표 능력이라서 내용은 대부분 그냥 자료 조사해서 모아 놓은 정도입니다. 하지만 혹시 이 제도 관련해서 조사하시는 분이라면 제가 검색해둔 아래 참고자료들이 유용할 수 있겠네요.

참고자료

최영희 의원 등 21인, 청소년보호법 일부개정법률안 원문 (의안번호 1804656)
국회입법조사처, 청소년 게임 과몰입 해소 논의와 [...]]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/22079436" width="500" height="375" frameborder="0"></iframe></p>
<p>청소년보호법 일부개정법률안, 일명 &#8220;게임 셧다운제&#8221;에 대해서 수강 중인 과목의 &#8220;말하기&#8221; 파트 발표용으로 만들었던 키노트입니다. 주된 평가가 주장의 내용보다는 발표 능력이라서 내용은 대부분 그냥 자료 조사해서 모아 놓은 정도입니다. 하지만 혹시 이 제도 관련해서 조사하시는 분이라면 제가 검색해둔 아래 참고자료들이 유용할 수 있겠네요.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/HqgKbfMDoyc?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/HqgKbfMDoyc?version=3" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>참고자료</h3>
<ol>
<li>최영희 의원 등 21인, <a href="http://likms.assembly.go.kr/bill/jsp/BillDetail.jsp?bill_id=PRC_K0Q9Z0G4J2A2F1M6V2J2N4J7R5O4C4">청소년보호법 일부개정법률안</a> 원문 (의안번호 1804656)</li>
<li>국회입법조사처, <a href="http://www.nars.go.kr/publication/boardView?div=10&#038;type=07&#038;invest_id=000000012224&#038;baseURL=/publication/board?div=10^type=07#">청소년 게임 과몰입 해소 논의와 정책적 제언</a>, 이슈와 논점 159호</li>
<li>디스이즈게임, <a href="http://thisisgame.com/board/view.php?id=603203&#038;category=102">한국입법학회 “셧다운제 실효성 의문”</a> (설문조사 결과)</li>
<li>EBS, <a href="http://home.ebs.co.kr/jisike/content_mov_detail.jsp?enc_seq=1177924&#038;command=vod&#038;chk=T&#038;client_id=jisike&#038;menu_seq=1&#038;col=&#038;str=&#038;gno=&#038;y=2007&#038;order=1&#038;order_direct=desc&#038;cate_div=&#038;gubun=&#038;curPage=13">지식채널e &#8211; 2007, 대한민국에서 &#8216;초딩&#8217;으로 산다는 것</a>, 2007년 4월 30일</li>
<li>한국일보, <a href="http://news.hankooki.com/lpage/society/201104/h2011040106022322020.htm">[H·story] 책 밖에 모르는 우리 아이? 영재 아닌 병을 키우는 겁니다!</a></li>
</ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=V1Rlg9Ew--Y:jS4yUGELPNk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=V1Rlg9Ew--Y:jS4yUGELPNk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=V1Rlg9Ew--Y:jS4yUGELPNk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=V1Rlg9Ew--Y:jS4yUGELPNk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=V1Rlg9Ew--Y:jS4yUGELPNk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=V1Rlg9Ew--Y:jS4yUGELPNk:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/V1Rlg9Ew--Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/1122/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/1122</feedburner:origLink></item>
		<item>
		<title>현대 전쟁사에서 유일하게 깨어지지 않은 암호 – The Navajo Code Talkers</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/RadwcIKYA2M/1048</link>
		<comments>http://j.strane.net/wp/archives/1048#comments</comments>
		<pubDate>Tue, 22 Feb 2011 08:04:06 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2010-2]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=1048</guid>
		<description><![CDATA[2010년도 2학기 World of Languages 강의시간에 발표한 내용입니다.
강의가 언어학 관련 강의라서 주제가 언어의 관점에서 본 암호였습니다. 그래서 제2차 세계 대전 때 자연어를 그대로 암호로 사용했던 나바호 코드 토커에 대해서 발표했습니다.
(왼쪽 하단 menu 클릭 후 View Fullscreen으로 보시기를 추천합니다.)
&#8220;The Navajo Code Talkers&#8221; PPT (PDF)
1. 머리말
“현대 전쟁사에서 유일하게 깨어지지 않은 암호“
이 글에서 제가 소개해 드릴 내용은 제2차 [...]]]></description>
			<content:encoded><![CDATA[<p>2010년도 2학기 World of Languages 강의시간에 발표한 내용입니다.</p>
<p>강의가 언어학 관련 강의라서 주제가 언어의 관점에서 본 암호였습니다. 그래서 제2차 세계 대전 때 자연어를 그대로 암호로 사용했던 <strong>나바호 코드 토커</strong>에 대해서 발표했습니다.</p>
<p><object type='application/x-shockwave-flash' wmode='opaque' data='http://static.slideshare.net/swf/ssplayer2.swf?id=7008369&doc=thenavajocodetalkerswoojongkohpublic-110222003846-phpapp02' width='500' height='410'><param name='movie' value='http://static.slideshare.net/swf/ssplayer2.swf?id=7008369&doc=thenavajocodetalkerswoojongkohpublic-110222003846-phpapp02' /><param name='allowFullScreen' value='true' /></object><br />
(왼쪽 하단 menu 클릭 후 View Fullscreen으로 보시기를 추천합니다.)<br />
<a href='http://j.strane.net/wp/wp-content/uploads/2011/02/The-Navajo-Code-Talkers_ppt_Woojong-Koh_public.pdf' class=download>&#8220;The Navajo Code Talkers&#8221; PPT (<acronym title="Portable Document Format">PDF</acronym>)</a></p>
<h3>1. 머리말</h3>
<p><strong>“현대 전쟁사에서 유일하게 깨어지지 않은 암호“</strong></p>
<p>이 글에서 제가 소개해 드릴 내용은 제2차 세계 대전 때 나바호 코드 토커라 불렸던 암호병들에 관한 내용입니다. 간략히 설명하면 나바호 코드 토커란 제2차 세계 대전 당시 일본과 전쟁 중이던 미국이 적에 의해 계속적으로 해독되어버리는 암호들로 인해 위기에 몰리자 고안해낸 자연어를 이용한 암호를 구사하는 암호병들을 뜻합니다. 그 이름에서 알 수 있듯이 암호화에 사용된 언어는 북아메리카 대륙의 원주민인 나바호 인디언들의 언어였습니다.</p>
<p>나바호 코드 토커들은 자연 언어를 그대로 암호로 사용했기 때문에 다른 암호화 방식들보다 암호와 언어의 관계를 잘 보여준다고 판단되어 이 글의 주제로 삼았습니다. World of Languages 강의 시간에 Lee, Seungjae 교수님<sup><a href="http://j.strane.net/wp/archives/1048#footnote_0_1048" id="identifier_0_1048" class="footnote-link footnote-identifier-link" title="검색 방지   ">1</a></sup>이 말씀하신 것처럼 해독되지 않은 언어는 그 자체로 암호입니다. 특히나 어족이 서로 달라 매우 생소한 언어의 음성을 듣고 이해하는 것은 그 자체만으로도 고문서 해독보다 더 어려운 작업입니다. 로제타 석이라는 암호문과 평문이 나란히 문자로 기록된 자료를 가지고도 수많은 학자들이 수십 년에 걸친 노력이 필요했던 이집트 상형문자의 해독에서 알 수 있듯이 생소한 언어는 그 자체로 이미 암호의 특성을 완비하고 있습니다.</p>
<h3>2. 나바호 코드 토커 소개</h3>
<p>제2차 세계대전 당시 미 해군은 아메리카 대륙의 원주민인 나바호 인디언들을 병사로 모집하여 이들이 사용하는 나바호어를 암호로 사용하였습니다. 이 암호화 방식은 굉장히 성공적이어서 나바호 암호병들은 1942년 과달카날 전투부터 1945년 오키나와 전투까지 미 해군의 모든 태평양 전투에 투입되었습니다. 그들의 주요 임무는 가능한 한 적진 깊숙이 들어가 적의 규모와 포 배치, 군대의 이동상황과 작전, 전술, 그리고 생존자 현황 등을 무전기를 통해 해군 군함 사령부에 전달하는 것이었습니다.</p>
<div id="attachment_1060" class="wp-caption aligncenter" style="width: 460px"><a href="http://j.strane.net/wp/wp-content/uploads/2011/02/platoon.jpg" rel="lightbox[1048]"><img src="http://j.strane.net/wp/wp-content/uploads/2011/02/platoon-450x317.jpg" alt="Original 29" title="Original 29" width="450" height="317" class="size-large wp-image-1060" /></a><p class="wp-caption-text">Original 29이라 불리는 최초의 나바호 코드 토커 29인의 사진</p></div>
<p>이 암호화 방식은 매우 성공적이어서 1968년 일급비밀에서 해제될 때까지 한 번도 깨어진 적이 없습니다. 그리고 암호화 속도와 정확성도 매우 높아서 나바호 암호병들은 사이판 전투 당시 48시간 만에 혼자서 800개가 넘는 메시지를 단 한 건의 실수도 없이 전달하는 성과를 올리기도 했습니다.</p>
<h3>3. 영화 윈드토커</h3>
<div id="attachment_1059" class="wp-caption aligncenter" style="width: 313px"><a href="http://j.strane.net/wp/wp-content/uploads/2011/02/movieposter.jpg" rel="lightbox[1048]"><img src="http://j.strane.net/wp/wp-content/uploads/2011/02/movieposter-303x450.jpg" alt="Windtalkers poster" title="Windtalkers poster" width="303" height="450" class="size-large wp-image-1059" /></a><p class="wp-caption-text">영화 윈드토커 포스터</p></div>
<p>나바호 코드 토커들은 낙하부대를 포함해 해군의 모든 부대에서 실전에 참여했는데, 그들의 동양인과 비슷한 외모 때문에 종종 동료 해군들에 의해 일본군으로 착각되었습니다. 그들은 해군에게 체포될 때마다 그들이 같은 편임을 설명해야 했고, 만약의 상황에 대비하기 위해 백인 병사가 개인 경호를 맡게 되었습니다.</p>
<p>제2차 대전 당시 나바호 암호병들에 대한 이야기를 듣고 영화화를 구상하던 프로듀서 앨리슨 로젠츠바이그는 바로 이점에 주목했습니다. 자료를 조사하던 중 이 경호병들이 기본적으로는 암호병의 안전을 지키는 임무를 띠고 있었지만, 유사시에는 암호의 보호를 위해 이들을 없애도 좋다는 지령을 하달받았다는 사실을 알게 된 것입니다. 전우를 보호하는 동시에 유사시에는 전우를 향해 총을 겨눠야 하는 임무로 인한 병사의 인간적 고뇌는 제작진들의 관심을 끌었고 마침내 오우삼 감독이 이 소재를 영화화하기에 이르렀다고 합니다.</p>
<p><embed src="http://img696.imageshack.us/flvplayer.swf?f=P430" width="500" height="380" allowFullScreen="true" wmode="transparent" type="application/x-shockwave-flash"/><br />
영화 윈드토커 중 나바호 코드 토커들의 통신 장면 (<a href="http://yfrog.com/jc430z">mobile에서 보기</a>)</p>
<p align=center>&#8230;후략&#8230;</p>
<p>(글의 나머지 부분은 아래 Scribd 뷰어로 봐주세요.)</p>
<p><a title="View The Navajo Code Talkers on Scribd" href="http://www.scribd.com/doc/49301906/The-Navajo-Code-Talkers" style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;">The Navajo Code Talkers</a> <object id="doc_180954779839107" name="doc_180954779839107" height="710" width="500" type="application/x-shockwave-flash" data="http://d1.scribdassets.com/ScribdViewer.swf" style="outline:none;" ><param name="movie" value="http://d1.scribdassets.com/ScribdViewer.swf"><param name="wmode" value="opaque"><param name="bgcolor" value="#ffffff"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="FlashVars" value="document_id=49301906&#038;access_key=key-cy79rs1cbywahtk534z&#038;page=1&#038;viewMode=list"><embed id="doc_180954779839107" name="doc_180954779839107" src="http://d1.scribdassets.com/ScribdViewer.swf?document_id=49301906&#038;access_key=key-cy79rs1cbywahtk534z&#038;page=1&#038;viewMode=list" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="710" width="500" wmode="opaque" bgcolor="#ffffff"></embed></object><br />
<a href="http://www.scribd.com/full/49301906?access_key=key-cy79rs1cbywahtk534z">Fullscreen으로 보기 (추천)</a></p>
<h3>외부 링크들</h3>
<ol>
<li><a href="https://docs.google.com/viewer?a=v&#038;pid=explorer&#038;chrome=true&#038;srcid=0B-0pzh9XSklDNDE2MGQwZjctYjUwNy00MmQ3LTlkY2YtMmNkZGVkNWM1ZmFj&#038;hl=en">&#8220;The Navajo Code Talkers&#8221; PPT (Google Docs)</a></li>
<li><a href="https://docs.google.com/viewer?a=v&#038;pid=explorer&#038;chrome=true&#038;srcid=0B-0pzh9XSklDMDEzOWI5NWItN2FjZC00NzRhLTljNGUtMjNjOTg2MTY0YzFj&#038;hl=en">&#8220;The Navajo Code Talkers&#8221; 리포트 (Google Docs)</a></li>
<li><a href="http://navajocodetalkers.org/" class="broken_link">Navajo Code Talkers</a> http://navajocodetalkers.org/</li>
<li><a href="http://en.wikipedia.org/wiki/Code_talker">Code talker</a> http://en.wikipedia.org/wiki/Code_talker</li>
<li><a href="http://www.history.navy.mil/faqs/faq61-2.htm" class="broken_link">Navajo Code Talkers cryptology</a> http://www.history.navy.mil/faqs/faq61-2.htm</li>
</ol><hr /><ol class="footnotes"><li id="footnote_0_1048" class="footnote">검색 방지 <img src='http://j.strane.net/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </li></ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=RadwcIKYA2M:bB9zEDoi0MY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=RadwcIKYA2M:bB9zEDoi0MY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=RadwcIKYA2M:bB9zEDoi0MY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=RadwcIKYA2M:bB9zEDoi0MY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=RadwcIKYA2M:bB9zEDoi0MY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=RadwcIKYA2M:bB9zEDoi0MY:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/RadwcIKYA2M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/1048/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/1048</feedburner:origLink></item>
		<item>
		<title>Ubuntu Linux를 소재로 한 만화 – 우분츄!</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/Hp9dhLTVlkY/910</link>
		<comments>http://j.strane.net/wp/archives/910#comments</comments>
		<pubDate>Fri, 04 Feb 2011 18:41:17 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Comics]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=910</guid>
		<description><![CDATA[
Hiroshi Seo씨의 세계 최초로 Ubuntu Linux를 소재로 한 만화 &#8220;우분츄! (Ubunchu!)&#8221;입니다. 단행본은 아니고 일본 ASCII Magazine의 부록 &#8220;간단 우분투! (Kantan Ubuntu!)&#8221;에서 연재되는 만화라고 합니다.1
참고로 Linux는 Microsoft의 Windows나 Apple의 Mac OS와 같은 하나의 운영체제 (Operating System)입니다. 그리고 리눅스의 여러 배포판 중 가장 데스크탑에서 사용하기 편하다고 여겨지는 것이 바로 우분투 리눅스입니다. 공식 홈페이지의 Features 페이지를 보시면 아시겠지만, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://j.strane.net/wp/wp-content/uploads/2011/02/mid_ubunchu01_00.png" rel="lightbox[910]"><img src="http://j.strane.net/wp/wp-content/uploads/2011/02/mid_ubunchu01_00-342x450.png" alt="우분츄! (Ubunchu!) 1화 표지" title="우분츄! (Ubunchu!) 1화 표지" width="342" height="450" class="aligncenter size-large wp-image-931" /></a></p>
<p><a href="http://www.aerialline.com/">Hiroshi Seo</a>씨의 세계 최초로 <a href="http://www.ubuntu.com/">Ubuntu Linux</a>를 소재로 한 만화 &#8220;<strong>우분츄!</strong> (Ubunchu!)&#8221;입니다. 단행본은 아니고 일본 <acronym title="American Standard Code for Information Interchange">ASCII</acronym> Magazine의 부록 &#8220;간단 우분투! (Kantan Ubuntu!)&#8221;에서 연재되는 만화라고 합니다.<sup><a href="http://j.strane.net/wp/archives/910#footnote_0_910" id="identifier_0_910" class="footnote-link footnote-identifier-link" title="http://foxtalk.tistory.com/39">1</a></sup></p>
<p>참고로 <strong>Linux</strong>는 Microsoft의 Windows나 Apple의 Mac <acronym title="Operating System">OS</acronym>와 같은 <strong>하나의 운영체제</strong> (Operating System)입니다. 그리고 리눅스의 여러 배포판 중 가장 데스크탑에서 사용하기 편하다고 여겨지는 것이 바로 우분투 리눅스입니다. 공식 홈페이지의 <a href="http://www.ubuntu.com/desktop/features">Features 페이지</a>를 보시면 아시겠지만, 무료임에도 불구하고 웹서핑부터 문서 작성, 동영상 재생 및 편집까지 컴퓨터로 하는 대부분의 작업을 할 수 있습니다.</p>
<p>Hiroshi Seo씨는 리눅스를 사용하는 작가답게 이 만화를 <a href="http://creativecommons.org/licenses/by-nc/3.0/">Creative Commons (BY-NC)</a> 라이센스로 배포하고 있습니다. 따라서 누구나 자유롭게 번역 및 재배포가 가능하고, 그 결과 한국어 번역 역시 진행되어 현재 총 7화 중 5화 (1화~5화)가 번역되어 있습니다. 번역에 관심이 있으신 분들은 <a href="http://www.ubunchu.net/">우분츄! 해외판 사이트</a>를 통해서 번역에 필요한 그림 원본과 대사 파일을 받으실 수 있습니다.</p>
<p>아래는 감상하기 편하도록 제가 그동안 번역된 우분츄! 한글판 1화에서부터 5화를 하나의 <acronym title="Portable Document Format">PDF</acronym> 파일로 묶어서 <a href="http://www.scribd.com/">Scribd</a>에 게시한 것입니다. 링크를 클릭하시면 로딩 시간은 좀 걸리지만 iPhone과 같은 <strong>스마트폰</strong>에서도 보실 수 있습니다.</p>
<p><a title="View 우분츄! (Ubunchu!) 1화~5화  on Scribd" href="http://www.scribd.com/doc/48164950/우분츄-Ubunchu-1화-5화" style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;">우분츄! (Ubunchu!) 1화~5화 </a> <object id="doc_316376762340753" name="doc_316376762340753" height="710" width="500" type="application/x-shockwave-flash" data="http://d1.scribdassets.com/ScribdViewer.swf" style="outline:none;" ><param name="movie" value="http://d1.scribdassets.com/ScribdViewer.swf"><param name="wmode" value="opaque"><param name="bgcolor" value="#ffffff"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="FlashVars" value="document_id=48164950&#038;access_key=key-2i22l5u6tbqvic9wppzo&#038;page=1&#038;viewMode=list"><embed id="doc_316376762340753" name="doc_316376762340753" src="http://d1.scribdassets.com/ScribdViewer.swf?document_id=48164950&#038;access_key=key-2i22l5u6tbqvic9wppzo&#038;page=1&#038;viewMode=list" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="710" width="500" wmode="opaque" bgcolor="#ffffff"></embed></object></p>
<p><a href="http://www.scribd.com/full/48164950?access_key=key-2i22l5u6tbqvic9wppzo">Fullscreen으로 두 장씩 보기 (추천)</a></p>
<p><a class="download" href="https://docs.google.com/leaf?id=0B-0pzh9XSklDMTNhNDhjNDAtMGIwYy00N2VkLWI5NmMtYTc0M2Q2NWI3MGU0&#038;hl=en">우분츄! 1화~5화 합본 파일 (<acronym title="Portable Document Format">PDF</acronym>)</a></p>
<h3>Credits</h3>
<p>Author: <a href="http://www.aerialline.com/">Hiroshi Seo</a><br />
Publisher: <a href="http://asciimw.jp/"><acronym title="American Standard Code for Information Interchange">ASCII</acronym> MEDIA WORKS Inc.<br />
</a><br />
Korean translation:<br />
Episode 1~3 &#8211; Vulpes (<a href="http://foxtalk.tistory.com/">http://foxtalk.tistory.com/</a>)<br />
Episode 4 &#8211; athelon<br />
Episode 5 &#8211; minjoo, twinsenx</p>
<h3>외부 링크들</h3>
<ul>
<li>우분츄! 공식 사이트 &#8211; <a href="http://seotch.wordpress.com/ubunchu/">http://seotch.wordpress.com/ubunchu/</a></li>
<li>등장인물들 프로필 (한국어) &#8211; <a href="http://blog.haz3.com/189">http://blog.haz3.com/189</a></li>
</ul><hr /><ol class="footnotes"><li id="footnote_0_910" class="footnote"><a href="http://foxtalk.tistory.com/39">http://foxtalk.tistory.com/39</a></li></ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=Hp9dhLTVlkY:RS3VBtv9VK8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=Hp9dhLTVlkY:RS3VBtv9VK8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=Hp9dhLTVlkY:RS3VBtv9VK8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=Hp9dhLTVlkY:RS3VBtv9VK8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=Hp9dhLTVlkY:RS3VBtv9VK8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=Hp9dhLTVlkY:RS3VBtv9VK8:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/Hp9dhLTVlkY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/910/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/910</feedburner:origLink></item>
		<item>
		<title>네이버 웹툰의 RSS 피드 주소들</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/OsWCdUaJ-EM/866</link>
		<comments>http://j.strane.net/wp/archives/866#comments</comments>
		<pubDate>Thu, 27 Jan 2011 05:48:46 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Naver]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=866</guid>
		<description><![CDATA[Naver 만화에서 연재되는 웹툰들의 RSS feed 주소를 공개합니다. Daum 만화속세상처럼 네이버도 공식적으로 RSS를 지원해주면 좋겠지만, 아쉽게도 현재는 me 구독이라는 자체 구독 기능만을 제공하고 있습니다.


Google Reader 가서 보기
OPML 파일 다운로드

구독 방법

구글 리더 사용자
위 &#8220;Subscribe&#8221; 버튼을 클릭 또는 &#8220;Google Reader 가서 보기&#8221; 클릭
다른 RSS 리더 사용자
OPML 파일을 다운로드 받으셔서 리더에서 import

위와 같이 하시면 여러 개의 RSS 피드들을 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://comic.naver.com/">Naver 만화</a>에서 연재되는 웹툰들의 <acronym title="Really Simple Syndication">RSS</acronym> feed 주소를 공개합니다. <a href="http://cartoon.media.daum.net/webtoon/">Daum 만화속세상</a>처럼 네이버도 공식적으로 <acronym title="Really Simple Syndication">RSS</acronym>를 지원해주면 좋겠지만, 아쉽게도 현재는 <a href="http://me.naver.com/">me 구독</a>이라는 자체 구독 기능만을 제공하고 있습니다.</p>
<p><script type="text/javascript" src="http://www.google.com/reader/ui/publisher-en.js"></script><script type="text/javascript" src="http://www.google.com/reader/public/javascript-sub/user/08205511350883089850/bundle/Webtoons - Naver?callback=GRC_p(%7Bc%3A%22blue%22%2Ct%3A%22My%20%5C%22Webtoons%20-%20Naver%5C%22%20Bundle%22%2Cb%3A%22true%22%7D)%3Bnew%20GRC"></script></p>
<ul>
<li><a href="http://www.google.com/reader/bundle/user%2F08205511350883089850%2Fbundle%2FWebtoons%20-%20Naver">Google Reader 가서 보기</a></li>
<li><a href="http://www.google.com/reader/public/subscriptions/user%2F08205511350883089850%2Fbundle%2FWebtoons%20-%20Naver"><acronym title="Outline Processor Markup Language">OPML</acronym> 파일 다운로드</a></li>
</ul>
<h3>구독 방법</h3>
<ol>
<li><strong>구글 리더 사용자</strong><br />
위 &#8220;Subscribe&#8221; 버튼을 클릭 또는 &#8220;Google Reader 가서 보기&#8221; 클릭</li>
<li><strong>다른 <acronym title="Really Simple Syndication">RSS</acronym> 리더 사용자</strong><br />
<acronym title="Outline Processor Markup Language">OPML</acronym> 파일을 다운로드 받으셔서 리더에서 import</li>
</ol>
<p>위와 같이 하시면 여러 개의 <acronym title="Really Simple Syndication">RSS</acronym> 피드들을 한 번에 구독하실 수 있습니다. 아니면 아래 <acronym title="Really Simple Syndication">RSS</acronym> 목록을 통해서 각 피드들을 개별적으로 하나씩 등록할 수도 있습니다.</p>
<h3><acronym title="Really Simple Syndication">RSS</acronym> 목록</h3>
<p><script type="text/javascript" src="http://j.strane.net/wp/wp-content/uploads/2011/01/opml2html.js"></script><script type="text/javascript" src="http://www.google.com/reader/public/javascript-sub/user/08205511350883089850/bundle/Webtoons%20-%20Naver?callback=opml2html.parse"></script></p>
<p>이 중 제가 직접 만든 <acronym title="Really Simple Syndication">RSS</acronym> 피드는 25개 중 10개 남짓입니다. (<a href="https://docs.google.com/leaf?id=0B-0pzh9XSklDYmI5YjA0ZGUtM2FjNC00OTc1LTg2N2MtZjc1Yjc1NjA3MDdh&#038;hl=en"><acronym title="Outline Processor Markup Language">OPML</acronym> 파일</a>) 그 외에는 다른 분들이 만든 피드를 제가 수집한 건데, 그중에는 가끔씩 아래와 같은 에러가 발생하는 것도 있습니다.</p>
<blockquote><p>ERROR: One of the search patterns caused engine to hang. Please report this to Feed43 team. </p></blockquote>
<p>아직은 그렇게 거슬리지 않지만, 심해지면 제가 그 피드들은 다시 새로 만들어야 할 것 같습니다. 참고로 제가 만든 피드들은 전부 주소가 <strong>http://feed43.com/naver_webtoon_(웹툰 ID).xml</strong> 형태이고 피드 내용에는 모바일 페이지 링크가 걸려 있습니다.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=OsWCdUaJ-EM:AVORjomnCUg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=OsWCdUaJ-EM:AVORjomnCUg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=OsWCdUaJ-EM:AVORjomnCUg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=OsWCdUaJ-EM:AVORjomnCUg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=OsWCdUaJ-EM:AVORjomnCUg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=OsWCdUaJ-EM:AVORjomnCUg:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/OsWCdUaJ-EM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/866/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/866</feedburner:origLink></item>
		<item>
		<title>Email 주소 유출 방지법</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/aOSy8GZ9Em4/834</link>
		<comments>http://j.strane.net/wp/archives/834#comments</comments>
		<pubDate>Thu, 06 Jan 2011 08:34:37 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2010-2]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=834</guid>
		<description><![CDATA[2010년도 2학기 &#8216;인터넷 윤리&#8217; 강의시간에 발표한 내용입니다.
비전공자를 대상으로 한 5분짜리 발표라 내용은 별로 없지만, 블로그에 올릴만한 가벼운 주제라서 공유합니다. 그러니 컴퓨터 공학 전공자들은 skip하세요!
(왼쪽 하단 menu 클릭 후 View Fullscreen으로 보시기를 추천합니다.)
Email 주소 유출 방지법 (PDF)
참고사항

reCAPTCHA의 Mailhide 기능은 제 블로그의 About 페이지에서도 사용하고 있으니 그 쪽을 보셔도 됩니다.
중간에 이미지로 된 이메일 주소 인식에 사용된 프로그램은 [...]]]></description>
			<content:encoded><![CDATA[<p>2010년도 2학기 &#8216;인터넷 윤리&#8217; 강의시간에 발표한 내용입니다.</p>
<p>비전공자를 대상으로 한 5분짜리 발표라 내용은 별로 없지만, 블로그에 올릴만한 가벼운 주제라서 공유합니다. 그러니 컴퓨터 공학 전공자들은 skip하세요!</p>
<p><object type='application/x-shockwave-flash' wmode='opaque' data='http://static.slideshare.net/swf/ssplayer2.swf?id=6394099&doc=random-101228211352-phpapp01' width='500' height='410'><param name='movie' value='http://static.slideshare.net/swf/ssplayer2.swf?id=6394099&doc=random-101228211352-phpapp01' /><param name='allowFullScreen' value='true' /></object><br />
(왼쪽 하단 menu 클릭 후 View Fullscreen으로 보시기를 추천합니다.)<br />
<a href='http://j.strane.net/wp/wp-content/uploads/2011/01/email_address_wjkoh_public.pdf' class=download>Email 주소 유출 방지법 (<acronym title="Portable Document Format">PDF</acronym>)</a></p>
<h3>참고사항</h3>
<ol>
<li>reCAPTCHA의 Mailhide 기능은 제 블로그의 About 페이지에서도 사용하고 있으니 그 쪽을 보셔도 됩니다.</li>
<li>중간에 이미지로 된 이메일 주소 인식에 사용된 프로그램은 아이폰용 <strong>Google Goggles</strong>입니다. OCR 프로그램 찾기가 귀찮아 그냥 아이폰으로 모니터를 찍어봤는데 의외로 인식이 잘 되더군요. 참 무서운 세상입니다[..]</li>
</ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=aOSy8GZ9Em4:yUgHaRr317Q:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=aOSy8GZ9Em4:yUgHaRr317Q:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=aOSy8GZ9Em4:yUgHaRr317Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=aOSy8GZ9Em4:yUgHaRr317Q:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=aOSy8GZ9Em4:yUgHaRr317Q:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=aOSy8GZ9Em4:yUgHaRr317Q:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/aOSy8GZ9Em4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/834/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/834</feedburner:origLink></item>
		<item>
		<title>세계 3대 드러머 영상?!</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/dnWm-zXDIlA/767</link>
		<comments>http://j.strane.net/wp/archives/767#comments</comments>
		<pubDate>Sun, 14 Feb 2010 05:57:46 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Akira Jimbo]]></category>
		<category><![CDATA[Dave Weckl]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Steve Gadd]]></category>
		<category><![CDATA[Vinnie Colaiuta]]></category>
		<category><![CDATA[음악]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=767</guid>
		<description><![CDATA[설날맞이 세계 3대 드러머(?) 영상입니다.

Steve Gadd, Dave Weckl, Vinnie Colaiuta &#8211; The Big Showdown(1989) @ Buddy Rich Memorial Concerts 고화질 (MP41)
데이브 웨클(Dave Weckl), 비니 콜라이유타(Vinnie Colaiuta), 스티브 갯(Steve Gadd)2의 공연 영상입니다. 마지막 부분의 유니즌이 정말 멋지네요. 사실 세계 3대 기타리스트, 베이시스트, 드러머, &#8230; 뭐 이런거 말도 안되는 거지만 그냥 제목으로 낚아보려고 적어봤습니다[..] 음악이 스포츠도 아니고 [...]]]></description>
			<content:encoded><![CDATA[<p>설날맞이 세계 3대 드러머(?) 영상입니다.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/YI3z6mYmxZU?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/YI3z6mYmxZU?version=3" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://www.drummerworld.com/Videos/showdown.html">Steve Gadd, Dave Weckl, Vinnie Colaiuta &#8211; The Big Showdown(1989) @ Buddy Rich Memorial Concerts 고화질</a> (<a href="http://www.drummerworld.com/Videos/stevevinniedave89.mp4">MP4</a><sup><a href="http://j.strane.net/wp/archives/767#footnote_0_767" id="identifier_0_767" class="footnote-link footnote-identifier-link" title="iPhone 에서 볼 수 있음">1</a></sup>)</p>
<p>데이브 웨클(Dave Weckl), 비니 콜라이유타(Vinnie Colaiuta), 스티브 갯(Steve Gadd)<sup><a href="http://j.strane.net/wp/archives/767#footnote_1_767" id="identifier_1_767" class="footnote-link footnote-identifier-link" title="영상 등장순">2</a></sup>의 공연 영상입니다. 마지막 부분의 유니즌이 정말 멋지네요. 사실 세계 3대 기타리스트, 베이시스트, 드러머, &#8230; 뭐 이런거 말도 안되는 거지만 그냥 제목으로 낚아보려고 적어봤습니다[..] 음악이 스포츠도 아니고 순위 매기는건 좀 바보같은 일이죠.</p>
<p>하지만 그래도 이분들이 모두 세계 정상급의 드러머라는데는 이견이 없을 겁니다. 물론 약간 장르가 재즈 쪽에 치우친 감은 있지만요. 스티브 갯 아저씨는 세션도 많이 하셔서 팝이나 락쪽 앨범에서도 &#8220;어 이 노래 드럼 좋네?&#8221; 하고 부클릿 뒤져보면 &#8220;Drums : Steve Gadd&#8221; 인 경우가 참 많죠. 저번에 올렸던 <a href="http://j.strane.net/wp/archives/687">미쉘 페트루치아니 라이브 영상</a>에서도 드럼이셨고. 데이브 웨클이나 비니 콜라이유타는 제가 드러머 솔로 앨범으로는 유일하게 가지고 있는 분들이기도 하구요.</p>
<p>오랜만에 이 영상이 생각나서 보려고 찾아봤는데, 예전에는 컴퓨터를 며칠 켜놔야 겨우 받던 영상들이 요즘에는 타이핑 몇번에 클릭 몇번이면 기다릴 필요도 없이 재생되어서 참 기술이 많이 발전하긴 했구나 하는 생각이 들어서 올려봅니다.</p>
<p>그 밖에 아키라 짐보(Akira Jimbo)도 굉장히 좋아하는데, 동양인으로는 거의 유일하게 이 클래스에 들어가는거 같다는 생각이 듭니다. 아키라 짐보의 재미있는 영상 하나 더 첨부합니다.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/RDzt12xHIbw?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/RDzt12xHIbw?version=3" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Akira Jimbo &#8211; Independence</p>
<p>가네시로 카즈키의 소설 &#8220;레벌루션 No. 3&#8243; 에 나오는 이교도의 춤 이야기를 보는 것 같기도 하고 좋네요. 역시 진짜 드러머라면 스네어 하나만 있어도 &#8230;!</p>
<p>그리고 이건 보너스로 본격 아키라 짐보 혼자 다해먹는 영상!</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/_ysM7neJri0?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/_ysM7neJri0?version=3" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Akira Jimbo &#8211; Wishing Well</p><hr /><ol class="footnotes"><li id="footnote_0_767" class="footnote">iPhone 에서 볼 수 있음</li><li id="footnote_1_767" class="footnote">영상 등장순</li></ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=dnWm-zXDIlA:9jgXGdTKyDQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=dnWm-zXDIlA:9jgXGdTKyDQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=dnWm-zXDIlA:9jgXGdTKyDQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=dnWm-zXDIlA:9jgXGdTKyDQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=dnWm-zXDIlA:9jgXGdTKyDQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=dnWm-zXDIlA:9jgXGdTKyDQ:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/dnWm-zXDIlA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/767/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>

	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/767</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/jstrane_blog/~5/WG9v75EdiXA/stevevinniedave89.mp4" length="50339883" type="video/mp4" /><feedburner:origEnclosureLink>http://www.drummerworld.com/Videos/stevevinniedave89.mp4</feedburner:origEnclosureLink></item>
		<item>
		<title>소설 “고양이 요람”과 보코논교</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/lm4hFItKQ20/734</link>
		<comments>http://j.strane.net/wp/archives/734#comments</comments>
		<pubDate>Fri, 05 Feb 2010 16:36:28 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Cat's Cradle]]></category>
		<category><![CDATA[Kurt Vonnegut]]></category>
		<category><![CDATA[서평]]></category>
		<category><![CDATA[소설]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=734</guid>
		<description><![CDATA[

&#8220;아이들이 자라서 미치더라도 놀라운 일은 아니죠. 고양이 요람이라는 게 두 손 사이의 X자들에 불과한데도 어린애들은 그런 X자들을 보고 보고 또 보고 하는데 &#8230;&#8230;&#8221;
&#8220;하는데?&#8221;
&#8220;빌어먹을 고양이도 없고, 빌어먹을 요람도 없으니까요.&#8221;1
커트 보네거트(Kurt Vonnegut, Jr.)의 소설 &#8220;고양이 요람&#8221;(Cat&#8217;s Cradle, 1963)을 읽고 소설과 소설에 등장하는 &#8216;보코논교&#8217;라는 가상의 종교에 대하여 쓴 글입니다. 원래는 저번에 수강했던 종교 관련 강의의 텀 페이퍼로 제출했던 [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://j.strane.net/wp/wp-content/uploads/2010/02/500px-Cats-cradle.svg_-450x243.png" alt="Cat&#039;s cradle from http://en.wikipedia.org/wiki/File:Cats-cradle.svg" title="Cat&#039;s cradle" width="450" height="243" class="aligncenter size-large wp-image-736" /></p>
<blockquote><p>
&#8220;아이들이 자라서 미치더라도 놀라운 일은 아니죠. 고양이 요람이라는 게 두 손 사이의 X자들에 불과한데도 어린애들은 그런 X자들을 보고 보고 또 보고 하는데 &#8230;&#8230;&#8221;</p>
<p>&#8220;하는데?&#8221;</p>
<p>&#8220;<strong>빌어먹을 고양이도 없고, 빌어먹을 요람도 없으니까요.</strong>&#8221;<sup><a href="http://j.strane.net/wp/archives/734#footnote_0_734" id="identifier_0_734" class="footnote-link footnote-identifier-link" title="p.154">1</a></sup></p></blockquote>
<p>커트 보네거트(Kurt Vonnegut, Jr.)의 소설 &#8220;고양이 요람&#8221;(Cat&#8217;s Cradle, 1963)을 읽고 소설과 소설에 등장하는 &#8216;보코논교&#8217;라는 가상의 종교에 대하여 쓴 글입니다. 원래는 저번에 수강했던 종교 관련 강의의 텀 페이퍼로 제출했던 것인데, 소설과 관련된 부분은 블로그에 올리는 것도 괜찮을거 같아서 편집해서 올립니다.</p>
<p>(혹시 모바일 사파리 등 플래시가 지원되지 않는 브라우저를 사용중이시라면 아래 링크를 따라가시면 <acronym title="Portable Document Format">PDF</acronym> 포맷으로 다운받아 보실 수 있습니다.)</p>
<h3>목차</h3>
<ol>
<li>시작하면서</li>
<li>소설 &#8220;고양이 요람&#8221;
<ol>
<li>보코논교 그리고 포마</li>
<li>세계의 종말</li>
</ol>
</li>
<li>인간성에 기반한 성스러움
<ol>
<li>기업 문화에 대한 개인적인 경험</li>
<li>기업가 정신과 믿음</li>
</ol>
</li>
<li>마치면서</li>
</ol>
<p><a title="View 소설 &lt;고양이 요람&gt;에 나타나는 종교관과 그에 비춰본 기업가 정신 on Scribd" href="http://www.scribd.com/doc/26427551/소설-고양이-요람-에-나타나는-종교관과-그에-비춰본-기업가-정신" style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;">소설 <고양이 요람>에 나타나는 종교관과 그에 비춰본 기업가 정신</a> <object id="doc_69276183669246" name="doc_69276183669246" height="600" width="100%" type="application/x-shockwave-flash" data="http://d1.scribdassets.com/ScribdViewer.swf" style="outline:none;" ><param name="movie" value="http://d1.scribdassets.com/ScribdViewer.swf"><param name="wmode" value="opaque"><param name="bgcolor" value="#ffffff"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="FlashVars" value="document_id=26427551&#038;access_key=key-1mam1bvxri9ebh8c5fgh&#038;page=1&#038;viewMode=list"></object></p>
<p><a class="download" href='http://j.strane.net/wp/wp-content/uploads/2010/02/cats_cradle_pub.pdf'>소설 &lt;고양이 요람&gt;에 나타나는 종교관과 그에 비춰본 기업가 정신 (<acronym title="Portable Document Format">PDF</acronym>)</a></p>
<h3>외부 링크</h3>
<ul>
<li><a href="https://docs.google.com/fileview?id=0B-0pzh9XSklDYmUyM2Q1MTktNWRhNi00YTU3LWIyZjktZGE5MzhjZDYzZWIw&#038;hl=en">Google Docs 에서 보기</a></li>
</ul>
<div class="ttbReview">
<table>
<tbody>
<tr>
<td><a href="http://www.aladdin.co.kr/shop/wproduct.aspx?ISBN=8989938503&amp;ttbkey=ttbjstrane1444001&amp;COPYPaper=1"></a></td>
</tr>
</tbody>
</table>
</div><hr /><ol class="footnotes"><li id="footnote_0_734" class="footnote">p.154</li></ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=lm4hFItKQ20:JKPda4L8ag4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=lm4hFItKQ20:JKPda4L8ag4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=lm4hFItKQ20:JKPda4L8ag4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=lm4hFItKQ20:JKPda4L8ag4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=lm4hFItKQ20:JKPda4L8ag4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=lm4hFItKQ20:JKPda4L8ag4:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/lm4hFItKQ20" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/734/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/734</feedburner:origLink></item>
		<item>
		<title>9월이 되면 들어야 할 음악</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/BSifTJCoYzk/687</link>
		<comments>http://j.strane.net/wp/archives/687#comments</comments>
		<pubDate>Mon, 21 Sep 2009 11:32:51 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[EWF]]></category>
		<category><![CDATA[Green Day]]></category>
		<category><![CDATA[Michele Petrucciani]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Steve Gadd]]></category>
		<category><![CDATA[잡담]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=687</guid>
		<description><![CDATA[9월이면 들어야 할 노래가 있습니다. 9월 중에서 특히 오늘, 9월 21일하면 떠오르는 노래가 무엇이 있을까요? 그것은 바로 &#8230;

!!
&#8230; 자코 패스토리우스는 아니구요.(참고로 자코의 생일이 9월 21일입니다.) 오늘 들어야 할 노래는 바로 Earth, Wind and Fire 의 September 입니다.

EWF &#8211; September
이 노래의 맨 처음을 보면 가사가 이렇게 시작하죠.

Do you remember the 21st night of September?
Love was changing [...]]]></description>
			<content:encoded><![CDATA[<p>9월이면 들어야 할 노래가 있습니다. 9월 중에서 특히 오늘, 9월 21일하면 떠오르는 노래가 무엇이 있을까요? 그것은 바로 &#8230;</p>
<p><a href="http://j.strane.net/wp/wp-content/uploads/2009/09/Jaco_pastorius_87.jpg" rel="lightbox[687]"><img src="http://j.strane.net/wp/wp-content/uploads/2009/09/Jaco_pastorius_87-300x300.jpg" alt="Jaco Pastorius" title="Jaco Pastorius" width="300" height="300" class="aligncenter size-medium wp-image-688" /></a></p>
<p style="text-align: center;"><strong>!!</strong></p>
<p>&#8230; 자코 패스토리우스는 아니구요.(참고로 자코의 생일이 9월 21일입니다.) 오늘 들어야 할 노래는 바로 <strong>Earth, Wind and Fire 의 September</strong> 입니다.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/nfLEc09tTjI?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nfLEc09tTjI?version=3" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><acronym title="Earth, Wind and Fire">EWF</acronym> &#8211; September</p>
<p>이 노래의 맨 처음을 보면 가사가 이렇게 시작하죠.</p>
<blockquote><p>
Do you remember <strong>the 21st night of September</strong>?<br />
Love was changing the minds of pretenders<br />
While chasing the clouds away
</p></blockquote>
<p>영상이 없는 버전이라 보컬 모리스 화이트(Maurice White) 아저씨의 우아한 마이크 쥠과 그루브(?)한 액션을 볼 수 없는게 아쉽네요. 음질 위주로 고르다보니 어쩔 수 없이 영상이 없는 버전입니다. 영상을 보고 싶으시면 <a href="http://www.youtube.com/watch?v=iknEJf9cPeY" class="broken_link">Earth, Wind and Fire &#8211; September M/V</a> 를 클릭하세요.</p>
<p>개인적으로 좋아해서 자주 듣지만 9월이 되면 &#8220;아 벌써 또 1년이 지났구나&#8221; 하면서 찾아 듣게 되네요. 그리고 이 노래를 들을 때마다 예전에 대학교 2학년 때쯤인가 학생회관 앞에서 어떤 동아리 밴드가 길거리 공연으로 이 노래를 연주하는 것을 가던 길을 멈추고 멍하니 지켜봤던 어느 여름날이 기억납니다. 그것도 벌써 오래전 일이 되어버렸네요.</p>
<p>들을 때마다 느끼는 거지만, 후렴구 &#8220;Ba de ya~&#8221; 는 아무 뜻 없는 발음 중에 가장 유명하지 않을까요? 그건 아닐지도 모르지만 가장 귀에 들어오는건 확실한거 같습니다.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/Pqzr4AZB7tY?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Pqzr4AZB7tY?version=3" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Michele Petrucciani &#8211; September Second</p>
<p>그리고 미쉘 페트루치아니의 September Second 도 좋습니다. September 2nd 는 라이브 버전으로 처음 들어서 그런지 아직도 라이브 버전이 훨씬 좋게 들리네요. 아니면 Steve Gadd 의 드럼이 있어서 더 좋은거 같기도 하네요.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/EhjZABvC6Ng?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/EhjZABvC6Ng?version=3" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Michele Petrucciani &#8211; Cantabile</p>
<p>칸타빌레는 개인적으로 라이브 버전보다 레코딩 버전을 더 좋아하는데 아쉽게도 찾지 못했네요. &#8220;노래하듯이&#8221; 라는 칸타빌레의 뜻을 자연스럽게 외우게 해준, 정말 사람이 노래하듯이 연주하는 피아노 소리가 좋아서 자주 들었던 곡이네요. 음악 시간에 이런 음악으로 용어를 가르쳐 주었으면 아마 외우지 말라고 해도 외웠을텐데[..]</p>
<p><a href="http://j.strane.net/wp/archives/687/comment-page-1#comment-2827">빌리</a>님이 의견 주신 Green Day 의 Wake Me Up When September Ends 입니다.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/JHa16644e-k?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/JHa16644e-k?version=3" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Green Day &#8211; Wake Me Up When September Ends</p>
<p>그린데이의 보컬 빌리 조가 9월 10일에 돌아가신 아버지를 추억하는 노래라고 하는데, 오랜 시간이 지났어도 일년 중에 9월이 지나면 깨워주라고 할만한 기억은 대체 어떤 기억일까요.</p>
<p>Dookie 앨범 때 듣던 목소리와 변함없는, 소년같이 청량한 목소리로 부르는</p>
<blockquote><p>
Summer has come and passed<br />
<strong>The innocent can never last</strong><br />
Wake me up when September ends
</p></blockquote>
<p>라는 가사가 뇌리에 박히네요. 시간이 목소리를 비껴가고 기억도 비껴갔나 봅니다.</p>
<p>아마 이제 11월에는 무슨 노래가 올라올지 많이들 짐작 하시겠네요. 다른 걸 찾아봐야 할까요? 제보 환영합니다. <img src='http://j.strane.net/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=BSifTJCoYzk:XcP8ZlYLaW8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=BSifTJCoYzk:XcP8ZlYLaW8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=BSifTJCoYzk:XcP8ZlYLaW8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=BSifTJCoYzk:XcP8ZlYLaW8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=BSifTJCoYzk:XcP8ZlYLaW8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=BSifTJCoYzk:XcP8ZlYLaW8:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/BSifTJCoYzk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/687/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/687</feedburner:origLink></item>
		<item>
		<title>RSS 를 이메일로 받자! – SendMeFeed</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/0-Tnd9KaAkg/631</link>
		<comments>http://j.strane.net/wp/archives/631#comments</comments>
		<pubDate>Sat, 12 Sep 2009 09:20:31 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[SendMeFeed]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=631</guid>
		<description><![CDATA[RSS 피드가 업데이트 되었을 때, 업데이트 된 항목을 이메일로 발송해주는 서비스를 만들었습니다.


SendMeFeed (http://sendmefeed.appspot.com)

사이트에 가셔서 메인 페이지에서

피드 타이틀 (메일 제목에 표시되는 걸 변경하고 싶을 때)
피드 주소
업데이트를 받아볼 email 주소!

를 입력하시면 RSS 피드에 새로운 아이템이 올라오면 해당 아이템을 메일로 발송해줍니다.
사용 용도
그럼 이 서비스를 왜 만들었냐! 하면, 간단히 설명하자면 요즘 웬만한 게시판이나 블로그, 카페, 커뮤니티 심지어 뉴스 사이트들도 [...]]]></description>
			<content:encoded><![CDATA[<p><acronym title="Really Simple Syndication">RSS</acronym> 피드가 업데이트 되었을 때, <strong>업데이트 된 항목을 이메일로 발송</strong>해주는 서비스를 만들었습니다.</p>
<p><a href="http://j.strane.net/wp/wp-content/uploads/2009/09/sendmefeed.png" rel="lightbox[631]"><img src="http://j.strane.net/wp/wp-content/uploads/2009/09/sendmefeed-300x247.png" alt="SendMeFeed" title="SendMeFeed" width="300" height="247" class="aligncenter size-medium wp-image-632" /></a></p>
<ul>
<li><a href="http://sendmefeed.appspot.com">SendMeFeed</a> (http://sendmefeed.appspot.com)</li>
</ul>
<p>사이트에 가셔서 메인 페이지에서</p>
<ol>
<li>피드 타이틀 (메일 제목에 표시되는 걸 변경하고 싶을 때)</li>
<li>피드 주소</li>
<li>업데이트를 받아볼 email 주소!</li>
</ol>
<p>를 입력하시면 <acronym title="Really Simple Syndication">RSS</acronym> 피드에 새로운 아이템이 올라오면 해당 아이템을 메일로 발송해줍니다.</p>
<h3>사용 용도</h3>
<p>그럼 이 서비스를 왜 만들었냐! 하면, 간단히 설명하자면 요즘 웬만한 게시판이나 블로그, 카페, 커뮤니티 심지어 뉴스 사이트들도 <acronym title="Really Simple Syndication">RSS</acronym> 를 제공하는 추세입니다. 그리고 이동통신사 이메일 서비스에 보면 메일 수신 알림 서비스가 있습니다. 이통사 메일 주소로 메일이 도착하면 SMS 나 MMS 로 알림을 보내주는 거지요.</p>
<p>따라서 이 서비스를 이용해서 <acronym title="Really Simple Syndication">RSS</acronym> 업데이트를 이통사 메일주소로 받으면 <strong><acronym title="Really Simple Syndication">RSS</acronym> 업데이트를 실시간으로 SMS 통지</strong> 받을 수 있습니다.</p>
<p>참고로 이통사 메일 수신 알림 서비스가 안되는 경우 <a href="http://www.arreo.com">아레오</a>와 같이 무료 메일 알림 서비스를 제공해주는 사이트들도 있으니 이용하시면 될 것 같습니다.</p>
<h3>개발 뒷 이야기</h3>
<p>제가 위와 같은 용도로 이런 서비스가 필요해서 찾아봤습니다. 찾아보니 원래 <a href="http://en.wikipedia.org/wiki/SendMeRSS">SendMeRSS</a> 라는 사이트가 있었는데 아쉽게도 폐쇄되었더군요. 그리고 <a href="http://www.feedmyinbox.com/">FeedMyInbox</a> 라는 서비스가 있는데 아직 서비스 중이지만 한글이 깨지고 업데이트 발송이 좀 느린 편입니다.</p>
<p>그래서 <a href="http://code.google.com/intl/ko-KR/appengine/">구글 애플리케이션 엔진</a>(Google App Engine)도 사용해볼 겸 심심풀이 삼아 만들어 본다는게 일이 커져서 공개할 정도가 되었네요. 제 영어가 부족해서 번역에는 Aradia 가 수고해주었습니다. 이 포스트를 빌어 다시 한번 감사를 <img src='http://j.strane.net/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>그리고 <acronym title="Really Simple Syndication">RSS</acronym> 를 지원하지 않는 게시판들이 있어서 웹페이지를 <acronym title="Really Simple Syndication">RSS</acronym> 피드로 변환시켜주는 <acronym title="Really Simple Syndication">RSS</acronym> Maker라는 서비스도 만들어서 개인적으로 사용하고 있습니다. 그런데 이건 아직 공개할 정도가 아니라서 더 개발중입니다.</p>
<p>그럼 사용해보시고 피드백이나 버그 리포팅은 리플이나 feedsend@gmail.com 으로 보내주세요~</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=0-Tnd9KaAkg:tmPWlDP9rEc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=0-Tnd9KaAkg:tmPWlDP9rEc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=0-Tnd9KaAkg:tmPWlDP9rEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=0-Tnd9KaAkg:tmPWlDP9rEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=0-Tnd9KaAkg:tmPWlDP9rEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=0-Tnd9KaAkg:tmPWlDP9rEc:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/0-Tnd9KaAkg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/631/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/631</feedburner:origLink></item>
		<item>
		<title>나는 자유다</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/aauiv-zanT0/544</link>
		<comments>http://j.strane.net/wp/archives/544#comments</comments>
		<pubDate>Sat, 15 Aug 2009 08:01:53 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Cat's Cradle]]></category>
		<category><![CDATA[Kurt Vonnegut]]></category>
		<category><![CDATA[소설]]></category>
		<category><![CDATA[잡담]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=544</guid>
		<description><![CDATA[1

일하라, 너의 아이들을 학교에 보내라
유행을 따르라, 평범하게 행동하라
인도 위를 걸어라, TV를 봐라
노후를 위해 저축하라, 법을 지켜라
그리고 따라 말하라: 나는 자유다
원문 보기 &#9660;

go to work, send your kids to school
follow fashion, act normal
walk on the pavements, watch T.V.
save for your old age, obey the law
Repeat after me: I am free

작자 미상


&#8220;그럴 거란 걸 너무나 잘 알지. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://j.strane.net/wp/wp-content/uploads/2009/08/windmill_hill_graffiti_by_pshab.jpg" rel="lightbox[544]"><img src="http://j.strane.net/wp/wp-content/uploads/2009/08/windmill_hill_graffiti_by_pshab-450x306.jpg" alt="windmill hill graffiti by pshab" title="windmill hill graffiti by pshab" width="450" height="306" class="aligncenter size-large wp-image-552" /><sup><a href="http://j.strane.net/wp/archives/544#footnote_0_544" id="identifier_0_544" class="footnote-link footnote-identifier-link" title="Windmill Hill Graffiti on Philip St, Bedminster, Bristol, UK (opposite Windmill City Farm) by pshab">1</a></sup></a></p>
<blockquote><p>
일하라, 너의 아이들을 학교에 보내라<br />
유행을 따르라, 평범하게 행동하라<br />
인도 위를 걸어라, TV를 봐라<br />
노후를 위해 저축하라, 법을 지켜라<br />
그리고 따라 말하라: <strong>나는 자유다</strong><br />
<a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID2138171923'), this, '원문 보기 &#9660;', '감추기 &#9650;');">원문 보기 &#9660;</a></p>
<div id='SID2138171923' style='display:none;'>
<p>go to work, send your kids to school<br />
follow fashion, act normal<br />
walk on the pavements, watch T.V.<br />
save for your old age, obey the law<br />
Repeat after me: I am free</p>
</div>
<p style="text-align: right;">작자 미상</p>
</blockquote>
<blockquote><p>
&#8220;그럴 거란 걸 너무나 잘 알지. 저 아래 있는 놈들은 <strong>상식이 통할만큼</strong> <u>충분히 가난</u>하고 <u>충분히 겁쟁이</u>고 <u>충분히 무식</u>하거든.&#8221;</p>
<p style="text-align: right;">커트 보네거트의 &#8220;고양이 요람&#8221;에서</p>
</blockquote><hr /><ol class="footnotes"><li id="footnote_0_544" class="footnote"><a href="http://www.flickr.com/photos/pshab/422895344">Windmill Hill Graffiti</a> on Philip St, Bedminster, Bristol, UK (opposite Windmill City Farm) by pshab</li></ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=aauiv-zanT0:1raVGhAk9wg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=aauiv-zanT0:1raVGhAk9wg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=aauiv-zanT0:1raVGhAk9wg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=aauiv-zanT0:1raVGhAk9wg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=aauiv-zanT0:1raVGhAk9wg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=aauiv-zanT0:1raVGhAk9wg:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/aauiv-zanT0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/544/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/544</feedburner:origLink></item>
		<item>
		<title>후손들에게</title>
		<link>http://feedproxy.google.com/~r/jstrane_blog/~3/F92vIjEHgwY/425</link>
		<comments>http://j.strane.net/wp/archives/425#comments</comments>
		<pubDate>Fri, 26 Jun 2009 15:48:48 +0000</pubDate>
		<dc:creator>Woojong Koh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[생각]]></category>
		<category><![CDATA[시]]></category>

		<guid isPermaLink="false">http://j.strane.net/wp/?p=425</guid>
		<description><![CDATA[
3
우리가 잠겨 버린 밀물로부터
떠올라오게 될 너희들은
우리의 허약함을 이야기할 때
너희들이 겪지 않은
이 암울한 시대를
생각해다오.
신발보다도 더 자주 나라를 바꾸면서
불의만 있고 분노가 없을 때는 절망하면서
계급의 전쟁을 뚫고 우리는 살아오지 않았느냐.
그러면서 우리는 알게 되었단다.
비천함에 대한 증오도
표정을 일그러뜨린다는 것을.
불의에 대한 분노도
목소리를 쉬게 한다는 것을. 아, 우리는
친절한 우애를 위한 터전을 마련하고자 했었지만
우리 스스로가 친절하지 못했단다.
후손들에게 -베르톨트 브레히트1
서로 다른 생각을 가진 개개인들이지만 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://j.strane.net/wp/wp-content/uploads/2009/06/394551039_b1e7e03d97.jpg" rel="lightbox[425]"><img src="http://j.strane.net/wp/wp-content/uploads/2009/06/394551039_b1e7e03d97-300x199.jpg" alt="Black Boots by thumbuki" title="Black Boots by thumbuki" width="300" height="199" class="aligncenter size-medium wp-image-433" /></a></p>
<blockquote><p>3<br />
우리가 잠겨 버린 밀물로부터<br />
떠올라오게 될 너희들은<br />
우리의 허약함을 이야기할 때<br />
너희들이 겪지 않은<br />
이 암울한 시대를<br />
생각해다오.<br />
신발보다도 더 자주 나라를 바꾸면서<br />
불의만 있고 분노가 없을 때는 절망하면서<br />
계급의 전쟁을 뚫고 우리는 살아오지 않았느냐.</p>
<p>그러면서 우리는 알게 되었단다.<br />
비천함에 대한 증오도<br />
표정을 일그러뜨린다는 것을.<br />
불의에 대한 분노도<br />
목소리를 쉬게 한다는 것을. 아, 우리는<br />
친절한 우애를 위한 터전을 마련하고자 했었지만<br />
우리 스스로가 친절하지 못했단다.</p></blockquote>
<p style="text-align: right;">후손들에게 -베르톨트 브레히트<sup><a href="http://j.strane.net/wp/archives/425#footnote_0_425" id="identifier_0_425" class="footnote-link footnote-identifier-link" title="시집 &amp;#8220;살아남은 자의 슬픔&amp;#8221; 김광규 옮김">1</a></sup></p>
<p>서로 다른 생각을 가진 개개인들이지만 모두 <strong>하나의 목표</strong>를 꿈꾼다고 생각했다. 아니 단 한줄임에 틀림없다고 생각했다. <u>좀 더 나은 세상을 만들고자 하는 것</u>. 즉, 모든 사람에게 좀 더 이로운 세상을 꿈꾸는 것 말이다.</p>
<p>정치적, 사상적 견해는 서로 다르더라도 이러한 기본 전제는 모두 동일하게 공유한다고 생각했다. 나와 다른 생각을 가진 타인일지라도 그 근본적인 목표는 동일하고 다만 방법론에 있어서의 차이일뿐이라고 생각했다. 적어도 <strong>사회에 큰 영향력을 가진 사람들</strong>만큼은 반드시 그러리라고 믿었다.</p>
<p>하지만 그것은 나의 근거없는 짧은 생각이었다. 사회적 정의가 제대로 서지 않은 사회에서 상층에 올랐다는 것은 남들보다 굳건한 신념과 의지, 좀 더 나은 사회에 대한 꿈을 가지고 있다는 <u>증거가 아니었다.</u></p>
<p>오히려 기회를 틈타 생각과 말을 바꾸고 수단과 방법을 가리지 않고 경쟁자를 제거하며 그럼에도 일말의 양심의 가책조차 느끼지 않는, <strong>얼어붙은 심장과 피묻은 손</strong>을 가진 사람들이란 것을 미처 깨닫지 못했던 것이다.</p>
<p>브레히트의 시 &#8220;후손들에게&#8221;는 이렇게 끝난다.</p>
<blockquote><p>그러나 너희들은, 인간이 인간을 도와주는<br />
그런 정도까지 되거든<br />
관용하는 마음으로 우리를 생각해다오.
</p></blockquote>
<p>한가지는 확실하다. <strong>우리는 그가 말했던 후손들이 아니다</strong>. 5세기가 지났어도 마키아벨리즘은 여전히 유효하고, 브레히트가 이야기했던 증오와 분노는 아직도 우리의 얼굴을 일그러뜨리고 목소리를 쉬게 한다.</p>
<p>&#8220;우리가 잠겨 버린 밀물로부터/떠올라오게 될 너희들&#8221;이 올 때까지 과연 우리는 서로에 대한 증오와 분노 끝에 자멸하지 않을 수 있을까.</p><hr /><ol class="footnotes"><li id="footnote_0_425" class="footnote">시집 &#8220;살아남은 자의 슬픔&#8221; 김광규 옮김</li></ol><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=F92vIjEHgwY:KlmN3diMyy0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=F92vIjEHgwY:KlmN3diMyy0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=F92vIjEHgwY:KlmN3diMyy0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=F92vIjEHgwY:KlmN3diMyy0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?i=F92vIjEHgwY:KlmN3diMyy0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/jstrane_blog?a=F92vIjEHgwY:KlmN3diMyy0:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/jstrane_blog?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/jstrane_blog/~4/F92vIjEHgwY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://j.strane.net/wp/archives/425/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	<feedburner:origLink>http://j.strane.net/wp/archives/425</feedburner:origLink></item>
	</channel>
</rss>

