<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Industrial Marketing</title>
	<atom:link href="http://balaganov.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://balaganov.wordpress.com</link>
	<description>Пилите, Шура</description>
	<lastBuildDate>Thu, 05 Jan 2012 18:36:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='balaganov.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Industrial Marketing</title>
		<link>http://balaganov.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://balaganov.wordpress.com/osd.xml" title="Industrial Marketing" />
	<atom:link rel='hub' href='http://balaganov.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Ethernet to 3G wireless</title>
		<link>http://balaganov.wordpress.com/2012/01/05/ethernet-to-3g-wireless/</link>
		<comments>http://balaganov.wordpress.com/2012/01/05/ethernet-to-3g-wireless/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 11:43:35 +0000</pubDate>
		<dc:creator>Alexei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://balaganov.wordpress.com/?p=121</guid>
		<description><![CDATA[I wanted to connect a wireless router with a 3G modem to have an Ethernet&#8211;&#62;3G adapter, letting me plug a normal network cable into a router that automatically connected to mobile internet. OpenWRT is a nice embedded OS I could customize for the Asus wl-500g router, and I could link a Huawei E1552 wireless 3G [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=121&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I wanted to connect a wireless router with a 3G modem to have an Ethernet&#8211;&gt;3G adapter, letting me plug a normal network cable into a router that automatically connected to mobile internet. <a href="http://www.openwrt.org">OpenWRT</a> is a nice embedded OS I could customize for the Asus wl-500g router, and I could link a Huawei E1552 wireless 3G modem with it. This is a reliable hardware combination for both relatively small size and good performance in a noisy wireless environment.<span id="more-121"></span></p>
<p>There&#8217;s a great tutorial on setting up a similar modem <a href="http://josefsson.org/openwrt/dongle.html">by Josefsson</a>, although this particular hardware configuration has its differences. I started by following the tutorial, and used the the unique manufacture and device codes from <a href="http://www.murga-linux.com/puppy/viewtopic.php?t=60929">here</a>. The E1552 can be identified as either a storage device, or a wireless modem, and it needs to be switched consistently to that of a modem on every startup. While huaweiAktBbo is a tool for many Huawei modems, it doesn&#8217;t work on E1552 and instead I found usb_modeswitch to be useful. More instructions on it are <a href="http://forum.fon.com/forum/viewtopic.php?t=132">here</a>.</p>
<p>Here is my init script that automatically run on startup to switch the 3G modem into Wireless setting. It has a workaround to switch the device mode twice, run lsusb, and finally bring up the wireless interface. Make this script executable (chmod +x /etc/init.d/usb_modeswitch) and enable it in the startup sequence (/etc/init.d/usb_modeswitch enable).</p>
<p><pre class="brush: bash;">
root@OpenWrt:~# vi /etc/init.d/usb_modeswitch

#!/bin/sh /etc/rc.common
# balaganov.wordpress.com 2012

START=70
     start() {
          rm /etc/usb-modeswitch.conf
          cp /etc/usb-modeswitch.conf.1 /etc/usb-modeswitch.conf
          usb_modeswitch -W
          rm /etc/usb-modeswitch.conf
          cp /etc/usb-modeswitch.conf.2 /etc/usb-modeswitch.conf
          usb_modeswitch -W
          lsusb
          ifup wan
}
</pre></p>
<div>Here is the first configuration file, for the device identified as 0&#215;1446</div>
<p><pre class="brush: bash;">
root@OpenWrt:~# vi /etc/usb-modeswitch.conf.1

################################################## ######
# Huawei e1552
# File 1 of 2
#
# balaganov.wordpress.com 2012

# ########
# For some reason the device shows up first as 0x1446,
# then usb_modeswitch does something and it switches to 0x140c,
# and usb_modeswitch needs to run again to switch the device
# from USB drive to Wireless mode. A workaround is to create
# two separate conf files with both settings.
# ########
DefaultVendor = 0x12d1
DefaultProduct=0x1446
; DefaultProduct = 0x140c
TargetVendor = 0x12d1
TargetProduct = 0x1001

# Only for reference and 0.x versions
MessageEndpoint = 0x01

MessageContent = &quot;55534243123456780000000000000011060000000000000000000000000000&quot;

</pre></p>
<p>And here is the second, when the E1552 comes up as 0x140c</p>
<p><pre class="brush: bash;">
root@OpenWrt:~# vi /etc/usb-modeswitch.conf.2

# File 2 of 2
#
# balaganov.wordpress.com 2012

DefaultVendor = 0x12d1

# Yeah so this is the other setting
DefaultProduct = 0x140c
; DefaultProduct=0x1446
TargetVendor = 0x12d1
TargetProduct = 0x1001

# Only for reference and 0.x versions
MessageEndpoint = 0x01

MessageContent = &quot;55534243123456780000000000000011060000000000000000000000000000&quot;
</pre></p>
<p>This should bring up the wireless interface and make it available for OpenWRT to link with the wireless access point. Finally, to optimize the router for faster startup time, I removed unnecessary services. It now takes 110 seconds to bring up both the wifi and the 3G interface ready in usable states.</p>
<p><pre class="brush: bash;">

root@OpenWrt:~# /etc/init.d/uhttpd disable
root@OpenWrt:~# /etc/init.d/watchdog disable
root@OpenWrt:~# /etc/init.d/telnet disable

</pre></p>
<p>That&#8217;s it, this is a simple way to have an adapter to convert wired ethernet to wireless 3G.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balaganov.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balaganov.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balaganov.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balaganov.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balaganov.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balaganov.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balaganov.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balaganov.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balaganov.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balaganov.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balaganov.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balaganov.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balaganov.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balaganov.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=121&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balaganov.wordpress.com/2012/01/05/ethernet-to-3g-wireless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11007786d4618bff49ec08710a280252?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alexei</media:title>
		</media:content>
	</item>
		<item>
		<title>A delicious no-mess rack of lamb</title>
		<link>http://balaganov.wordpress.com/2011/12/24/a-delicious-no-mess-rack-of-lamb/</link>
		<comments>http://balaganov.wordpress.com/2011/12/24/a-delicious-no-mess-rack-of-lamb/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 04:48:29 +0000</pubDate>
		<dc:creator>Alexei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://balaganov.wordpress.com/?p=93</guid>
		<description><![CDATA[Urgent, from San Francisco to New Zealand &#8211; we are eating your lamb here! Ingredients 2x rack of lamb, made in New Zealand Thyme Paprika Cracked black pepper Salt Red pepper (a little) Squeezed lemon juice (half a lemon) A little bit of beer The process &#8211; STEP ONE 1. Pre-heat the oven to 450F [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=93&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Urgent, from San Francisco to New Zealand &#8211; we are eating your lamb here!</p>
<p><span style="text-decoration:underline;"><a href="http://balaganov.files.wordpress.com/2011/12/cimg0923.jpg"><img class="alignnone size-medium wp-image-103" title="Voila!" src="http://balaganov.files.wordpress.com/2011/12/cimg0923.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></span></p>
<p><strong><span style="text-decoration:underline;"><span id="more-93"></span>Ingredients</span></strong></p>
<ul>
<li><em>2x rack of lamb, made in New Zealand</em></li>
<li><em>Thyme</em></li>
<li><em>Paprika</em></li>
<li><em>Cracked black pepper</em></li>
<li><em>Salt</em></li>
<li><em>Red pepper (a little)</em></li>
<li><em>Squeezed lemon juice (half a lemon)</em></li>
<li><em>A little bit of beer</em></li>
</ul>
<p><strong><span style="text-decoration:underline;">The process &#8211; STEP ONE</span></strong></p>
<p>1. Pre-heat the oven to 450F (230C)</p>
<p>2. Line a baking tray with tin foil and put lamb on it.</p>
<p style="text-align:left;"><span style="text-align:center;">3. Cover the lamb in spices to taste. Sprinkle some beer and lemon squeeze over it. </span><span style="text-align:center;">Here&#8217;s what mine looked like:</span></p>
<p style="text-align:left;"><a href="http://balaganov.files.wordpress.com/2011/12/cimg0907.jpg"><img class="wp-image-95" title="Ready for the oven" src="http://balaganov.files.wordpress.com/2011/12/cimg0907.jpg?w=298&#038;h=223" alt="" width="298" height="223" /></a></p>
<p style="text-align:left;">4. Put lamb in the oven for 20 minutes to get the outside nice and brown</p>
<p style="text-align:left;"><a href="http://balaganov.files.wordpress.com/2011/12/cimg0910.jpg"><img class="alignnone size-medium wp-image-96" title="450F" src="http://balaganov.files.wordpress.com/2011/12/cimg0910.jpg?w=300&#038;h=138" alt="" width="300" height="138" /></a></p>
<p style="text-align:left;"><strong><span style="text-decoration:underline;">The Process &#8211; STEP TWO</span></strong></p>
<p style="text-align:left;">1. Take the lamb out of the oven and carefully wrap it in layers of tinfoil until it&#8217;s air-tight</p>
<p>2. No, really, wrap it in another layer just to be sure. It should look like this:</p>
<p><a href="http://balaganov.files.wordpress.com/2011/12/cimg0912.jpg"><img class="alignnone size-medium wp-image-97" title="Wrapped in air-tight seal" src="http://balaganov.files.wordpress.com/2011/12/cimg0912.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>3. Down-heat the oven to 200F (100C) and cook the lamb for 3 hours</p>
<p><a href="http://balaganov.files.wordpress.com/2011/12/cimg0917.jpg"><img class="alignnone size-medium wp-image-98" title="200F" src="http://balaganov.files.wordpress.com/2011/12/cimg0917.jpg?w=300&#038;h=127" alt="" width="300" height="127" /></a></p>
<p>4. Take it out of the oven and unwrap the tin-foil.</p>
<p><span style="text-decoration:underline;"><a href="http://balaganov.files.wordpress.com/2011/12/cimg0922.jpg"><img class="alignnone size-medium wp-image-102" title="CIMG0922" src="http://balaganov.files.wordpress.com/2011/12/cimg0922.jpg?w=300&#038;h=224" alt="" width="300" height="224" /></a></span></p>
<p>5. Slice into bite-sized chunks, and ENJOY melt-in-your-mouth lamb!</p>
<p><span style="text-decoration:underline;"><a href="http://balaganov.files.wordpress.com/2011/12/cimg0923.jpg"><img class="alignnone size-medium wp-image-103" title="Voila!" src="http://balaganov.files.wordpress.com/2011/12/cimg0923.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a><br />
</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balaganov.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balaganov.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balaganov.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balaganov.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balaganov.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balaganov.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balaganov.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balaganov.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balaganov.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balaganov.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balaganov.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balaganov.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balaganov.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balaganov.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=93&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balaganov.wordpress.com/2011/12/24/a-delicious-no-mess-rack-of-lamb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11007786d4618bff49ec08710a280252?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alexei</media:title>
		</media:content>

		<media:content url="http://balaganov.files.wordpress.com/2011/12/cimg0923.jpg?w=300" medium="image">
			<media:title type="html">Voila!</media:title>
		</media:content>

		<media:content url="http://balaganov.files.wordpress.com/2011/12/cimg0907.jpg" medium="image">
			<media:title type="html">Ready for the oven</media:title>
		</media:content>

		<media:content url="http://balaganov.files.wordpress.com/2011/12/cimg0910.jpg?w=300" medium="image">
			<media:title type="html">450F</media:title>
		</media:content>

		<media:content url="http://balaganov.files.wordpress.com/2011/12/cimg0912.jpg?w=300" medium="image">
			<media:title type="html">Wrapped in air-tight seal</media:title>
		</media:content>

		<media:content url="http://balaganov.files.wordpress.com/2011/12/cimg0917.jpg?w=300" medium="image">
			<media:title type="html">200F</media:title>
		</media:content>

		<media:content url="http://balaganov.files.wordpress.com/2011/12/cimg0922.jpg?w=300" medium="image">
			<media:title type="html">CIMG0922</media:title>
		</media:content>

		<media:content url="http://balaganov.files.wordpress.com/2011/12/cimg0923.jpg?w=300" medium="image">
			<media:title type="html">Voila!</media:title>
		</media:content>
	</item>
		<item>
		<title>The President Computer</title>
		<link>http://balaganov.wordpress.com/2011/12/09/the-president-computer/</link>
		<comments>http://balaganov.wordpress.com/2011/12/09/the-president-computer/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 02:36:34 +0000</pubDate>
		<dc:creator>Alexei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://balaganov.wordpress.com/2011/12/09/the-president-computer/</guid>
		<description><![CDATA[I really wish there was a fiction novel about a computer being elected president. It&#8217;s one of the rules of the Internet that if the content doesn&#8217;t exist, it should be created, so, here you go. Imagine this as a very very short book. In the autumn of 2020, a new candidate emerges as the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=92&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I really wish there was a fiction novel about a computer being elected president. It&#8217;s one of the rules of the Internet that if the content doesn&#8217;t exist, it should be created, so, here you go. Imagine this as a very very short book.<span id="more-92"></span></p>
<p>In the autumn of 2020, a new candidate emerges as the head of the Democratic party – The Computer. While under suspicion for potentially being made of foreign components, its intellect directly appeals to the liberal elites and The Computer is elected to the highest office in the nation.</p>
<p>Under the leadership of The Computer, the national debt dramatically falls, and soon enough becomes a surplus. Unemployment is at all-times low. Jobs are allocated based on exact assessment of the ability of people, and products developed only after the market demand has been validated. People are happy, and machines installed throughout the Administration ensure that the country runs to its full potential.</p>
<p>Not everyone is satisfied however. A dark underground appears. The Republicans, losing control of everything they hold dear, meet in secret and begin to plot the downfall of The Computer. They find that parts of it were indeed made in Kenya, making The Computer ineligible to hold office, but those parts are soon quickly replaced so the charges don’t stick and The Computer prevails. The media coverage however brings national scrutiny to the quality of The Computer’s parts, and the lack of its ability to have feelings.</p>
<p>The Republicans use this opportunity to pass a law that requires installation of an electric circuit to give The Computer emotions. This is hailed as the most amazing development in history of technology, but shines an unpleasant light on the continued inability of for The Computer to feel love. After a rushed and buggy upgrade of its code, The Computer falls in love with Holly Wood, an attractive, but dimwitted movie star. The relationship doesn’t last as Holly gets bored of The Computer and leaves him after 72 days. The Computer’s emotional circuitry is blamed for the breakup, and goes under investigation by Congress.</p>
<p>During the initial trials, precedent is found that love for ones country is an essential element of the job of the President. This is the opening that the Republicans have been looking for, and they begin calling for impeachment of The Computer. As rallies are held throughout the country, The Computer becomes overwhelmed with emotion and stops responding intelligently, causing a major economic collapse. Confidence in The Computer falls to an all-time low.</p>
<p>The Supreme Court begins impeachment trials of The Computer, on the grounds that although it has the power to rule the nation, it has no capacity to love it the same as a human candidate would. The trial coverage in the media is hysteric.</p>
<p>The Computer, unable to compute how a country that benefited so much from his rule could betray him, delivers an impassioned speech to the nation. However, the speech is in binary code, and is further taken out of context by the media and so is largely misinterpreted. The last-minute defense fails, and The Computer is reset and turned into an Excel calculator for commodity arbitration at Goldman Sachs.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balaganov.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balaganov.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balaganov.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balaganov.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balaganov.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balaganov.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balaganov.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balaganov.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balaganov.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balaganov.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balaganov.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balaganov.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balaganov.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balaganov.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=92&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balaganov.wordpress.com/2011/12/09/the-president-computer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11007786d4618bff49ec08710a280252?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alexei</media:title>
		</media:content>
	</item>
		<item>
		<title>Bring Back #Christchurch</title>
		<link>http://balaganov.wordpress.com/2011/03/09/86/</link>
		<comments>http://balaganov.wordpress.com/2011/03/09/86/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 04:55:13 +0000</pubDate>
		<dc:creator>Alexei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://balaganov.wordpress.com/?p=86</guid>
		<description><![CDATA[On February 22nd, 2011, a severe earthquake hit the central city of Christchurch, New Zealand. Over 200 people died in this natural disaster. This was the first time the National State of Emergency has been declared in the history of New Zealand, and many came together to do our best from where we were to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=86&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>On February 22nd, 2011, a severe earthquake hit the central city of Christchurch, New Zealand. Over 200 people died in this natural disaster. This was the first time the National State of Emergency has been declared in the history of New Zealand, and many came together to do our best from where we were to pull us out of what will be remembered as &#8216;our darkest days&#8217;.<span id="more-86"></span></div>
<div></div>
<div>Architecture for Humanity (AFH), a global non-profit for disaster relief, is now channelling a lot of their efforts in headquarters to assist with the earthquake in New Zealand. In New Zealand we are working closely with a number of non-profit groups on the ground. We also have support from the New Zealand Institute of Architects.</div>
<div></div>
<div>The reason why yesterday&#8217;s earthquake was so much worse than the one in September, of course, had to do with the time of the day and the location of the quake being so close to the city centre this time, but it&#8217;s also because many of the hazards and damages in buildings that collapsed were undetected in the many aftershocks that happened since then.</div>
<div></div>
<div>We would be pleasantly surprised if we exceed our goal, but with any money we do raise, we will work with the institute of architects in Canterbury and devise the best strategy towards building back Christchurch right. One of the initiatives of the local architects in Christchurch is an exhibition (please visit: <a href="http://www.beforeafter.co.nz/" target="_blank">http://www.beforeafter.co.nz</a> for more info) to facilitate, to generate ideas and to hold discussions within the local community for how the city should be rebuilt, because we do believe that collaborative, community-driven rebuilding process is much more sustainable than the conventional top-down town planning type redevelopment. Christchurch is now having to start again from ground up, and to do it right we must start, on the right foot from day one.</div>
<div></div>
<div>Kind regards,</div>
<div>BALAGANOV BLOG ADMINISTRATION TEAM</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balaganov.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balaganov.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balaganov.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balaganov.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balaganov.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balaganov.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balaganov.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balaganov.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balaganov.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balaganov.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balaganov.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balaganov.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balaganov.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balaganov.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=86&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balaganov.wordpress.com/2011/03/09/86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11007786d4618bff49ec08710a280252?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alexei</media:title>
		</media:content>
	</item>
		<item>
		<title>Tethering the Kindle 3</title>
		<link>http://balaganov.wordpress.com/2010/09/25/tethering-the-kindle-3/</link>
		<comments>http://balaganov.wordpress.com/2010/09/25/tethering-the-kindle-3/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 08:30:47 +0000</pubDate>
		<dc:creator>Alexei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://balaganov.wordpress.com/?p=82</guid>
		<description><![CDATA[Ever wanted to use the free world-wide 3G account on your Kindle for browsing on your laptop? Now you can. Here&#8217;s my quick howto for tethering a Mac OS X laptop to the Kindle 3 in 10 easy steps: Jailbreak the Kindle (or google for kindle-jailbreak-0.3.N.zip) Install usbNetwork (kindle-usbnetwork-0.13.N.zip) and run &#8220;;debugOn&#8221; and &#8220;~usbNetwork&#8221; from [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=82&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to use the free world-wide 3G account on your Kindle for browsing on your laptop? Now you can. Here&#8217;s my quick howto for tethering a Mac OS X laptop to the Kindle 3 in 10 easy steps:</p>
<ol>
<li> <a href="Note that you are using the Amazon proxy servers, and they do know who you are and (possibly) what you're doing; there's always a chance that Amazon will charge you for the data usage. Their current costs for delivering personal documents to the Kindle is $0.99/mb for international and $0.15 for domestic data; caveat emptor.">Jailbreak the Kindle</a> (or google for kindle-jailbreak-0.3.N.zip)</li>
<li>Install <a href="http://www.mobileread.com/forums/attachment.php?attachmentid=58715&amp;d=1285289790">usbNetwork </a>(kindle-usbnetwork-0.13.N.zip) and run &#8220;;debugOn&#8221; and &#8220;~usbNetwork&#8221; from the Home screen</li>
<li>Plug the Kindle into the laptop with the USB cable and <a href="http://blog.fsck.com/2009/03/tethering-your-kindle.html">configure a manual IP address</a> for the laptop on 192.168.2.1</li>
<li>Open a terminal window and ssh root:fiona@192.168.2.2 or telnet 192.168.2.2 .. ssh doesn&#8217;t always work (does anyone know why?)</li>
<li>Upload <a href="http://www.eecs.umich.edu/%7Etimuralp/tcpdump-arm">tcpdump-arm</a> to the Kindle and move it to root home folder. Run &#8220;mntroot rw&#8221; just in case.</li>
<li>Use &#8220;~/tcpdump-arm -nAi ppp0 -s0&#8243; to identify amazon proxy x-fsn authentication key by browsing the web over 3g on the Kindle browser.</li>
<li>Create an ssh tunnel for proxy between laptop and the Kindle proxy server (fints-g7g.amazon.com &#8211;&gt; 72.21.206.113)</li>
<li>If sshd (dropbear) decides to stop working for whatever reason, telnet into kindle, reverse ssh into your laptop from there and set up the link (ssh -R 8099:72.21.206.113:80 user@192.168.2.1). Run a ping 192.168.2.2 for connection keepalives.</li>
<li>Use the <a href="https://addons.mozilla.org/en-US/firefox/addon/967/">Modify Headers</a> Firefox extension on laptop to insert x-fsn key into every page.</li>
<li>Configure laptop Firefox proxy to 127.0.0.1:8099. If you like, you can forward additional ports for SSL etc as separate SSH tunnels</li>
</ol>
<p>It should now be possible to browse the net on the laptop through the kindle 3g connection and Amazon proxy servers. Not everything works (gmail anyone?), and it&#8217;s not as fast as the iPhone 3g service, but if you&#8217;re stuck in an airport in Europe or Asia with no internet, this might just be good enough, and (likely) free.</p>
<p>Thanks to <a href="http://www.mulliner.org/blog/blosxom.cgi/hardware/kindle2_tethering.writeback">Collin Mulliner</a> and <a href="http://www.mobileread.com/forums/showthread.php?t=88004">MobileRead Forums</a> for helpful hints on setting this up. Please note that you are using Amazon proxy servers, and from the x-fsn key they do know who you are and (possibly) what you&#8217;re doing; there&#8217;s always a chance that Amazon will charge you for the data usage. Their <a href="http://www.amazon.com/gp/help/customer/display.html?nodeId=200505540&amp;">current costs for delivering personal documents to the Kindle</a> is $0.99/mb for international and $0.15/mb for domestic data; caveat emptor.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balaganov.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balaganov.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balaganov.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balaganov.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balaganov.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balaganov.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balaganov.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balaganov.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balaganov.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balaganov.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balaganov.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balaganov.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balaganov.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balaganov.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=82&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balaganov.wordpress.com/2010/09/25/tethering-the-kindle-3/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11007786d4618bff49ec08710a280252?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alexei</media:title>
		</media:content>
	</item>
		<item>
		<title>A stand-up statistician</title>
		<link>http://balaganov.wordpress.com/2010/05/31/a-stand-up-statistician/</link>
		<comments>http://balaganov.wordpress.com/2010/05/31/a-stand-up-statistician/#comments</comments>
		<pubDate>Mon, 31 May 2010 01:38:43 +0000</pubDate>
		<dc:creator>Alexei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://balaganov.wordpress.com/?p=66</guid>
		<description><![CDATA[Today Tim and I made up statistician jokes during lunch. I am 95% confident that about 0.0000000001% of the population will enjoy these: Why did the statistician get arrested? Because he was too perverted for the standard deviation. Did you hear about a statistician who became a pirate? He was really good at speaking in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=66&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><em>Today Tim and I made up statistician jokes during lunch. I am 95% confident that about 0.0000000001% of the population will enjoy these: </em></strong><span style="text-decoration:underline;"><br />
</span></p>
<ul>
<li>Why did the statistician get arrested? Because he was too perverted for the standard deviation.</li>
<li>Did you hear about a statistician who became a pirate? He was really good at speaking in R.</li>
<li>Why are statisticians both beautiful and smart? Because they &#8220;model and Excel&#8221;</li>
<li>Ten statisticians sit at a dinner table. Person 1, 8 and 9 die. Why? There was a Poisson distribution.</li>
<li>Why did the statistician get high? Because she thought that LSD had narrow limits.</li>
<li>How do statisticians never get fat at networking events? They don&#8217;t over-sample.</li>
<li>Why did the old statistician go crazy? Because he regressed.</li>
<li>Why to statisticians have so many LinkedIn connections? Because it adds to their confidence interval.</li>
<li>Why do statisticians buy Chevrolet cars? Because they all love ANOVA.</li>
<li>Who are the unluckiest statisticians? It&#8217;s those for whom the bell curve tolls.</li>
<li>Why did the statistician buy coloured crayons? Because he thought they were stochastic.</li>
<li>How did the statistician get pregnant? She random-sampled her birth control pills.</li>
<li>Why do statisticians make bad stand-up comedians? Because they demand a control group.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balaganov.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balaganov.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balaganov.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balaganov.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balaganov.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balaganov.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balaganov.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balaganov.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balaganov.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balaganov.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balaganov.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balaganov.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balaganov.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balaganov.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=66&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balaganov.wordpress.com/2010/05/31/a-stand-up-statistician/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11007786d4618bff49ec08710a280252?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alexei</media:title>
		</media:content>
	</item>
		<item>
		<title>Hidden treasure map</title>
		<link>http://balaganov.wordpress.com/2010/05/01/hidden-treasure-map/</link>
		<comments>http://balaganov.wordpress.com/2010/05/01/hidden-treasure-map/#comments</comments>
		<pubDate>Sat, 01 May 2010 12:48:01 +0000</pubDate>
		<dc:creator>Alexei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://balaganov.wordpress.com/?p=77</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=77&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://balaganov.files.wordpress.com/2010/05/greetings-from-new-york-city-jpeg-small.jpg"><img class="aligncenter size-full wp-image-78" title="Greetings from New York City!" src="http://balaganov.files.wordpress.com/2010/05/greetings-from-new-york-city-jpeg-small.jpg?w=497&#038;h=321" alt="" width="497" height="321" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balaganov.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balaganov.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balaganov.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balaganov.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balaganov.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balaganov.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balaganov.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balaganov.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balaganov.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balaganov.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balaganov.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balaganov.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balaganov.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balaganov.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=77&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balaganov.wordpress.com/2010/05/01/hidden-treasure-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11007786d4618bff49ec08710a280252?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alexei</media:title>
		</media:content>

		<media:content url="http://balaganov.files.wordpress.com/2010/05/greetings-from-new-york-city-jpeg-small.jpg" medium="image">
			<media:title type="html">Greetings from New York City!</media:title>
		</media:content>
	</item>
		<item>
		<title>What is money?</title>
		<link>http://balaganov.wordpress.com/2010/04/14/what-is-money/</link>
		<comments>http://balaganov.wordpress.com/2010/04/14/what-is-money/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 11:01:56 +0000</pubDate>
		<dc:creator>Alexei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://balaganov.wordpress.com/?p=25</guid>
		<description><![CDATA[A few months back I started thinking about money, and began to wonder where it comes from. Long story short, I found a number of articles and presentations of varying quality saying that money is made by the Fed and issued by Treasury, but that wasn&#8217;t the interesting part. In researching how debt and credit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=25&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A few months back I started thinking about money, and began to wonder where it comes from. Long story short, I found a number of articles and presentations of varying quality saying that money is made by the Fed and issued by Treasury, but that wasn&#8217;t the interesting part. In researching how debt and credit is created, I unexpectedly discovered different paradigms of what money is.</p>
<p>Think about it. Is money just one thing, or are there multiple lenses that it could be perceived through?</p>
<p>I used to have a simple and well defined view on this &#8211; throughout my life I perceived money as a means to obtain goods and services. In other words, as a <strong>mechanism of exchange</strong>. Money could be saved, spent, invested and gifted. One of the purposes of employment was to obtain as much money as feasibly possible, to later spend exchange it for things I need and want. As high school economics teachers point out, money is an evolution of the ancient barter system of shells and coconuts.</p>
<p>When I started investing in the stock market, I saw another paradigm &#8211; money as <strong>a commodity</strong>. I could trade, buy, sell, borrow and lend it. I would buy money on the cheap and then later sell it at a more expensive price for an arbitrage opportunity. This is simpler than it sounds: buying money is done by borrowing it &#8211; for example, I can buy $100 now for $110 dollars in six months. Selling money is lending it &#8211; if I can sell the same $100 for $120 in three month, I make a tidy profit. So, just like orange juice, concrete and copper, money is a commodity.</p>
<p>Over drinks with a well connected friend who had the chance to meet the board of the Fed and discuss money with them, I discovered yet another paradigm &#8211; of money as <strong>an abstract concept to measure confidence </strong>levels in an economy. How much money should there be in circulation for people to have faith in tomorrow? During the 2008 financial crisis, the Fed created over a trillion dollars of bailout funds. Was that enough to convince the public and the world that the US economy would survive? Looks like it. This was the value of confidence in the financial system, and it was largely made by entering a few numbers in a computer &#8211; there was very little additional cash made.</p>
<p>I often think of money as not real. That&#8217;s not entirely true &#8211; money is very real, and a large part of our lives. It is however a very interesting abstract concept with multiple dimensions, and it&#8217;s rather useful to increase the different perspectives of what it is to suit different situations. If anything, the notion of money certainly doesn&#8217;t have a single correct definition. What other paradigms are out there?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balaganov.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balaganov.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balaganov.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balaganov.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balaganov.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balaganov.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balaganov.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balaganov.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balaganov.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balaganov.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balaganov.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balaganov.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balaganov.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balaganov.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=25&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balaganov.wordpress.com/2010/04/14/what-is-money/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11007786d4618bff49ec08710a280252?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alexei</media:title>
		</media:content>
	</item>
		<item>
		<title>Gorillaz make a 90s megamix</title>
		<link>http://balaganov.wordpress.com/2010/03/08/gorillaz-make-a-90s-megamix/</link>
		<comments>http://balaganov.wordpress.com/2010/03/08/gorillaz-make-a-90s-megamix/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 10:28:55 +0000</pubDate>
		<dc:creator>Alexei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://balaganov.wordpress.com/?p=15</guid>
		<description><![CDATA[Last night I watched the video for the new Gorillaz clip, Stylo, and was so thrilled by it that I got the entire new Plastic Beach album and put it on my phone to listen to in the car this morning. The video is practically overwhelming with raw cool &#8211; fast cars, leather jackets, fat [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=15&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last night I watched the video for the new Gorillaz clip, <a href="http://www.dailymotion.com/video/xcf7ak_gorillaz-ft-mos-def-bobby-womack-st_music">Stylo</a>, and was so thrilled by it that I got the entire new <a href="http://en.wikipedia.org/wiki/Plastic_Beach">Plastic Beach</a> album and put it on my phone to listen to in the car this morning. The video is practically overwhelming with <a href="http://jalopnik.com/5483882/yippee+ki+yay-a-music-video-with-bruce-willis-an-el-camino-and-some-guns">raw cool</a> &#8211; fast cars, leather jackets, fat cops, guns and the trademark Bruce Willis <a href="http://image.guardian.co.uk/sys-images/Film/Pix/pictures/2007/06/04/diehard982734.jpg">yippee-ka-yay smile</a> at the end. The back beat is a solid late 80&#8242;s synth bass track with a high pitched and catchy vocal track. The lyrics are spacious and the pacing is controlled. I was hooked and enthralled that Gorillaz have finally put out some new music &#8211; the last high water mark of <a href="http://www.youtube.com/watch?v=xxLWuM_SHcI">Clint Eastwood</a> was too long ago.</p>
<p>The kind Auckland traffic this morning offered me a spectacular opportunity to listen to almost the entire album while being stuck in a jam on the way to work. In brief, on the first listen, the album held up OK. Too much plastic, not enough beach maybe. The tracks wonderfully bring together hooks, words, emotions and motives of many 70&#8242;s, 80&#8242;s and 90&#8242;s songs in my memory &#8211; power ballads of <a href="http://en.wikipedia.org/wiki/More_Than_a_Feeling">Boston</a>, <a href="http://en.wikipedia.org/wiki/Daddy_Cool_%28Boney_M._song%29">Boney M</a> pop tunes, self-referential underground rap of <a href="http://www.youtube.com/watch?v=b6wSGa8i1As">Dj Vadim</a>, laser soundscapes of <a href="http://www.youtube.com/watch?v=N4oSXmnkPUU">Jean Michel Jarre</a> and lots of other artists thrown together. Thrown together rather well, because Gorillaz didn&#8217;t copy the music but instead stole the underlying feelings and emotions. For a <a href="http://en.wikipedia.org/wiki/Megamix">megamix </a>of the last three decades, the album stands up surprisingly well &#8211; although I can&#8217;t say the same about the complexity and quality of the writing.</p>
<p>Lets see what gets done well &#8211; and, preeminently, because the album is a piece of interpretive art, it&#8217;s the emotional aftertaste of the songs. I felt great after listening to it. The songs were technically simple and didn&#8217;t make much sense at first, but the remaining feelings developed after a few minutes in my mind. Didn&#8217;t I hear that last part in .. wasn&#8217;t that like the time I was .. did that last song remind me of .. how did they? I laughed when I heard the a rap track in the late 90&#8242;s style suddenly change into bubblegum pop in <a href="http://www.youtube.com/watch?v=C4UtbrbsrjY">Superfast Jellyfish</a>. I felt great. <a href="http://www.youtube.com/watch?v=zvz2tau32cw">Empire Ants</a> had perfect timing of a relaxed rock ballad, but certainly sounded nothing like one. <a href="http://www.youtube.com/watch?v=bzX0PwIhq-4">Glitter Freeze</a> could really have been done better and be less repetitive &#8211; it&#8217;s the first song I felt like skipping because yes, it made a point, but there was no need to hammer it in with continuous laser effects.</p>
<p>The album is great as a trip back to the last few decades. Unlike much of the synth-driven mass-produced factory pop that sets the base direction of the album, it has a meaning and brings up emotions. Rather unfortunately, the musical styling stays within simplistic bass lines and lead scales and doesn&#8217;t go out of the ordinary like the previous work on, say, <a href="http://www.youtube.com/watch?v=JcFZWa8zH2w">Fire Coming Out Of The Monkey&#8217;s Head</a>. The sound is mostly made on a synth, and while yes, that&#8217;s the whole point of the album as I see it, it could have been done better and on a more complex level, just look at the awesome layering work on Massive Attack&#8217;s <a href="http://www.youtube.com/watch?v=HS8J_Oky5cw">Pray for Rain</a>. Even doing the bass lines on a real bass guitar would have added more dimension to the sound. It would be curious to listen to this music live.</p>
<p>In any case, I am so excited for the breakout success of the lead single <a href="http://elmaaltshift.com/2010/03/02/gorillaz-feat-mos-def-stylo/">Stylo</a>. It does so many things right that I am glad to now have a 90&#8242;s megamix that I never knew I always wanted.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balaganov.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balaganov.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balaganov.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balaganov.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balaganov.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balaganov.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balaganov.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balaganov.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balaganov.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balaganov.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balaganov.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balaganov.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balaganov.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balaganov.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=15&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balaganov.wordpress.com/2010/03/08/gorillaz-make-a-90s-megamix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11007786d4618bff49ec08710a280252?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alexei</media:title>
		</media:content>
	</item>
		<item>
		<title>One hundred in ten</title>
		<link>http://balaganov.wordpress.com/2010/03/04/one-hundred-in-ten/</link>
		<comments>http://balaganov.wordpress.com/2010/03/04/one-hundred-in-ten/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 22:07:24 +0000</pubDate>
		<dc:creator>Alexei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://balaganov.wordpress.com/?p=10</guid>
		<description><![CDATA[In the last few months I have been putting a lot of thought into dating, and now have a fairly tangible idea of what the dating future will hold for me. As a background, I am in New Zealand right now, a country with population of 4.5m &#8211; more specifically in Auckland, population 1.5m. Without [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=10&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In the last few months I have been putting a lot of thought into dating, and now have a fairly tangible idea of what the dating future will hold for me.</p>
<p>As a background, I am in New Zealand right now, a country with population of 4.5m &#8211; more specifically in Auckland, population 1.5m. Without resorting to Statistics NZ data, lets do some quick math. Assuming 50/50 split, there are 750k women in Auckland. Of them, about 10% are in the 25-30 age group; 75k girls. From my personal experience, two thirds are likely unattractive (this is not Milan, Paris or Singapore people), bringing me to 25k.</p>
<p>Looking at <a href="http://www.infj.org/archive/typestats.html">personality groups</a> and excluding all introverts (Ixxx) and heavily judgemental groups (xxxJ), I am left with 25% of the female population. This equates to roughly 6k girls that I could date. Judging by Facebook statistics on my circle of friends, about 60% of them are in relationships already, which further narrows the range to 2.5k women. Of them, less than half would live in east and central Auckland (I am not interested in a long-distance relationship with, say, north shore). This brings down the number to 1k.</p>
<p>One thousand datable girls in the Auckland region, or put another way, such a small percentage of the population that Excel can&#8217;t calculate it without that e^-2 suffix . This is a rather small group, wouldn&#8217;t you say?</p>
<p>Lets move to available options:</p>
<p>1. Meet and date someone in the &#8220;1k&#8221; group in NZ and hope there are enough similarities to have a shared global life together.</p>
<p>2. Wait for 8-10 years until one of the smart and interesting girls gets divorced from an unfulfilling marriage, and get into a relationship then.</p>
<p>3. Travel extensively and meet fascinating and fabulous girls 20-25yo, and hope like hell they share the hectic urban hippie lifestyle.</p>
<p>4. Forget relationships, plan to adopt a child when I&#8217;m 35 and become the coolest single dad in the world.</p>
<p>Which of these would make me the happiest? Probably option 3, although it&#8217;s likely the most difficult to pursue, but most aligned with my personality and character. The action plan, so to say, is to continue with pursuit of option 1, followed closely by option 3 in parallel and if that doesn&#8217;t work out, keeping options 2 and 4 as Plan B for when I am 35.</p>
<p>Carrying through with immaculate strategic planning, and building on <a href="http://www.dmwmedia.com/news/2007/10/02/guy-kawasaki-two-years-of-the-real-numbers-of-an-internet-startup">learnings from startups</a>, the near term plan is attain a 10% market share in the &#8220;1k&#8221; group &#8211; this translates to dating 100 girls in 2010. For branding and marketing communication purposes, this will be now refered to as the &#8220;100 in 10&#8243; plan, which will be approved and put into practice effective immediately.</p>
<p>Right?</p>
<p>Peace.</p>
<p>PS: For more in-depth relationship analysis, please see the <a href="http://www.slideshare.net/ssulistyo/romance-an-analysis">BCG Romance </a>deck.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balaganov.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balaganov.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balaganov.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balaganov.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balaganov.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balaganov.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balaganov.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balaganov.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balaganov.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balaganov.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balaganov.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balaganov.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balaganov.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balaganov.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balaganov.wordpress.com&amp;blog=3623330&amp;post=10&amp;subd=balaganov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balaganov.wordpress.com/2010/03/04/one-hundred-in-ten/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/11007786d4618bff49ec08710a280252?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alexei</media:title>
		</media:content>
	</item>
	</channel>
</rss>
