<?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>sokasokasoka &#187; pop culture</title>
	<atom:link href="http://kurt.sauer.us/category/cat-pop-culture/feed/" rel="self" type="application/rss+xml" />
	<link>https://kurt.sauer.us</link>
	<description>kurt&#039;s journey</description>
	<lastBuildDate>Sat, 26 Mar 2011 23:49:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Write upside down</title>
		<link>https://kurt.sauer.us/2010/04/write-upside-down/</link>
		<comments>https://kurt.sauer.us/2010/04/write-upside-down/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 12:40:28 +0000</pubDate>
		<dc:creator>kurt</dc:creator>
				<category><![CDATA[pop culture]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://kurt.sauer.us/?p=1092</guid>
		<description><![CDATA[<!--:en-->Recently, an amusing phenomenon came up on Facebook: a page that claimed to let you type words upside down. But when I actually followed the link later on, I found it led you to a gaming website. But I discovered the Unicode characters they were using to generate the upside down characters, which would be easy enough to enter manually.<!--:-->]]></description>
			<content:encoded><![CDATA[<p><!--:en--><a href="http://kurt.sauer.us/wp-content/uploads/2010/04/upside-down-no-spam.png"><img class="alignright size-full wp-image-1099" title="upside-down-no-spam" src="http://kurt.sauer.us/wp-content/uploads/2010/04/upside-down-no-spam.png" alt="" width="249" height="81" /></a>Recently, an amusing phenomenon came up on Facebook: a page that claimed &#8212; with a live example to back it up &#8212; to let you type words upside down.  When I saw it, I was intrigued, so I became a &#8220;fan&#8221;.  Later, when I actually followed the link to see how it all worked, I realized that it used some quirky Unicode to as a gimmick to get people to go to a gaming website, or to try to get people to divulge personal information about themselves.  So, I unlinked my Facebook persona from the page and deleted the post I&#8217;d made earlier, lest others get ensnared in an information collection trap of some kind.</p>
<p>However, in the process, I found the table of characters that they were using to generate the upside down characters, and this is really kind of interesting. Anyone with rudimentary programming skills should be able to implement this, or you could just type the characters in by hand if you prefer.</p>
<pre id="line517">function flip() {
	var result = flipString(document.f.original.value);
	document.f.flipped.value = result;
}

function flipString(aString) {
	aString = aString.toLowerCase();
	var last = aString.length - 1;
	var result = "";
	for (var i = last; i &gt;= 0; --i) {
		result += flipChar(aString.charAt(i))
	}
	return result;
}

function flipChar(c) {
	if (c == 'a') {
		return '\u0250'
	}
	else if (c == 'b') {
		return 'q'
	}
	else if (c == 'c') {
		return '\u0254'
	}
	else if (c == 'd') {
		return 'p'
	}
	else if (c == 'e') {
		return '\u01DD'
	}
	else if (c == 'f') {
		return '\u025F'
	}
	else if (c == 'g') {
		return 'b'
	}
	else if (c == 'h') {
		return '\u0265'
	}
	else if (c == 'i') {
		return '\u0131'//'\u0131\u0323'
	}
	else if (c == 'j') {
		return 'ɾ'
	}
	else if (c == 'k') {
		return '\u029E'
	}
	else if (c == 'l') {
		return '\u05DF'
	}
	else if (c == 'm') {
		return '\u026F'
	}
	else if (c == 'n') {
		return 'u'
	}
	else if (c == 'o') {
		return 'o'
	}
	else if (c == 'p') {
		return 'd'
	}
	else if (c == 'q') {
		return 'b'
	}
	else if (c == 'r') {
		return '\u0279'
	}
	else if (c == 's') {
		return 's'
	}
	else if (c == 't') {
		return '\u0287'
	}
	else if (c == 'u') {
		return 'n'
	}
	else if (c == 'v') {
		return '\u028C'
	}
	else if (c == 'w') {
		return '\u028D'
	}
	else if (c == 'x') {
		return 'x'
	}
	else if (c == 'y') {
		return '\u028E'
	}
	else if (c == 'z') {
		return 'z'
	}
	else if (c == '[') {
		return ']'
	}
	else if (c == ']') {
		return '['
	}
	else if (c == '(') {
		return ')'
	}
	else if (c == ')') {
		return '('
	}
	else if (c == '{') {
		return '}'
	}
	else if (c == '}') {
		return '{'
	}
	else if (c == '?') {
		return '\u00BF'
	}
	else if (c == '\u00BF') {
		return '?'
	}
	else if (c == '!') {
		return '\u00A1'
	}
	else if (c == "\'") {
		return ','
	}
	else if (c == ',') {
		return "\'"
	}
	return c;
}
</pre>
<p><!--:--><!--:ja--></p>
<p><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>https://kurt.sauer.us/2010/04/write-upside-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phones and life in Japan</title>
		<link>https://kurt.sauer.us/2009/10/phones-and-life-in-japan/</link>
		<comments>https://kurt.sauer.us/2009/10/phones-and-life-in-japan/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 22:09:51 +0000</pubDate>
		<dc:creator>kurt</dc:creator>
				<category><![CDATA[pop culture]]></category>

		<guid isPermaLink="false">http://kurt.sauer.us/?p=680</guid>
		<description><![CDATA[Anyone who&#8217;s spent time in Japan &#8212; any at all &#8212; recognizes the importance of mobile phones in today&#8217;s Japanese lifestyle. Wherever you go, whether it be on the train, walking along the street or waiting for a bus, you&#8217;ll see people around you staring fixedly into their little folding window to the world, which [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-683" title="Japanese phones are highly functional" src="http://kurt.sauer.us/wp-content/uploads/2009/10/toshiba_w55t.jpg" alt="Japanese phones are highly functional" width="144" height="145" />Anyone who&#8217;s spent time in Japan &#8212; any at all &#8212; recognizes the importance of mobile phones in today&#8217;s Japanese lifestyle. Wherever you go, whether it be on the train, walking along the street or waiting for a bus, you&#8217;ll see people around you staring fixedly into their little folding window to the world, which is called a keitai (in Japanese 携帯), which translated literally means &#8220;something you carry around&#8221;.</p>
<p>By the time they reach middle school, over half of Japanese kids carry their own keitai and use it not only as a way to stay in touch with friends and family, but also to play games, play music, navigate around town, view videos, take pictures, pay for things, not to mention surf the Internet.</p>
<p><span id="more-680"></span></p>
<p><img class="alignleft size-full wp-image-682" style="margin-right: 3px;" title="&quot;What did she say?&quot; [Japanese boys gathered around a keitai]" src="http://kurt.sauer.us/wp-content/uploads/2009/10/20091012-jboys-keitai.jpg" alt="Japanese boys gathered around a keitai" width="283" height="307" />Of course, it can be a little unnerving to see someone riding down the street on a bicycle while texting (and, yes, it&#8217;s not all that uncommon a sight). Nevertheless, it is still rather amusing to watch how people often crowd around a device, the likes of which didn&#8217;t really exist just a few years ago. After all, today&#8217;s keitai is so much more functional than its &#8220;cellphone&#8221; ancestor the two kinds of devices are simply hard to compare.</p>
<p>What&#8217;s interesting to me is to pay attention to the generation gap of heavy users of keitai. Naturally, nearly everyone uses a keitai these days, from children straight through to the aged.  However, the people who are incessantly pushing at their keitai dialpad to compose a new text, are they all high school students?  I&#8217;d say no. Surely usage of this kind decreases in the 40s and 50s, but the culture of long train commutes and the desire for impersonal communication breeds a desire to use messaging in nearly all age categories.</p>
<p>However, perhaps there is such a thing as &#8220;too much of a good thing.&#8221;  Schools have reportedly started clamping down on keitai use at school (see report from <em>Mainichi Shinbun,</em> below) and even on trains there are sections of most train cars that are reserved for pregnant women and the elderly. In these sections, keitai use is not only prohibited, but they must be switched entirely off, ostensibly for the protection of those who are more fragile.</p>
<p>With the mobile Internet booming around the world, Japan, which already boasts a very advanced 3G wireless telecommunications network, is well positioned to move ahead technically in the mobile communications market.  What I&#8217;m mostly wondering about is what impacts these changes will have on society.  We&#8217;re moving ahead full speed, so I imagine the results will become apparent in the coming years.</p>
<hr />生・中学生の携帯使用を制限　（毎日新聞・2008年5月17日）</p>
<p>政府の教育再生懇談会は17日の会合で、6月初めにまとめる報告書に小・中学生の携帯電話の使用制限を盛り込む方針で一致した。報告書には(1)小・中学生に携帯電話を持たせない(2)機能を通話と居場所確認に限定する(3)有害サイトへの閲覧制限を法的に義務付けるーーなどの内容が盛り込まれる見通し。</p>
]]></content:encoded>
			<wfw:commentRss>https://kurt.sauer.us/2009/10/phones-and-life-in-japan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

