<?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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Time Wasted on Binaries</title>
	
	<link>http://twob.net</link>
	<description />
	<lastBuildDate>Thu, 25 Aug 2011 04:47:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19719</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/twob" /><feedburner:info uri="twob" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site.</feedburner:browserFriendly><item>
		<title>quick note on meta name viewport and android</title>
		<link>http://twob.net/code/meta-viewport-and-android/</link>
		<comments>http://twob.net/code/meta-viewport-and-android/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 20:09:49 +0000</pubDate>
		<dc:creator>bjorn</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[flexbox]]></category>

		<guid isPermaLink="false">http://twob.net/?p=228</guid>
		<description><![CDATA[If omitting width=device-width from the viewport meta tag, css3 flex-box layouts no longer respect overflow:hidden and text-overflow:ellipsis for wider-than-page content. &#60;meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" /&#62;]]></description>
			<content:encoded><![CDATA[<p>If omitting <code>width=device-width</code> from the viewport meta tag, css3 flex-box layouts no longer respect overflow:hidden and text-overflow:ellipsis for wider-than-page content. </p>

<p><pre><code class="language-html">&lt;meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" /&gt;</code></pre></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/twob?a=OSuKqee0ZxA:vt7IuSdmyc8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/twob?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/twob?a=OSuKqee0ZxA:vt7IuSdmyc8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/twob?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/twob/~4/OSuKqee0ZxA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://twob.net/code/meta-viewport-and-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>when webkit css animations causes flicker</title>
		<link>http://twob.net/code/when-webkit-css-animations-causes-screen-flicker/</link>
		<comments>http://twob.net/code/when-webkit-css-animations-causes-screen-flicker/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 06:39:21 +0000</pubDate>
		<dc:creator>bjorn</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://twob.net/?p=224</guid>
		<description><![CDATA[sometimes when using -webkit-transform:translate3d; or -webkit-transform:translate; on elements visible on the page, it causes the screen to flicker. In my particular case I had a menu that opened as an overlay, and whenever an element with translate3d was on the page, the menu flickered badly when fading in. The solution seems to be to set [...]]]></description>
			<content:encoded><![CDATA[<p>sometimes when using <code>-webkit-transform:translate3d;</code> or <code>-webkit-transform:translate;</code> on elements visible on the page, it causes the screen to flicker. In my particular case I had a menu that opened as an overlay, and whenever an element with translate3d was on the page, the menu flickered badly when fading in.</p>

<p>The solution seems to be to set backface-visibility to hidden for the menu element, like so: </p>

<p><code>#menu {-webkit-backface-visibility: hidden;}</code></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/twob?a=YNRqItrEgYg:IkXOnk4Mrx0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/twob?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/twob?a=YNRqItrEgYg:IkXOnk4Mrx0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/twob?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/twob/~4/YNRqItrEgYg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://twob.net/code/when-webkit-css-animations-causes-screen-flicker/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing latest MacPorts for OS X 10.6</title>
		<link>http://twob.net/journal/installing-latest-macports-for-osx106/</link>
		<comments>http://twob.net/journal/installing-latest-macports-for-osx106/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 08:55:19 +0000</pubDate>
		<dc:creator>bjorn</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://twob.net/?p=215</guid>
		<description><![CDATA[I was just about to install MacPorts on my OS X 10.6 system, and downloaded the latest package (1.9.1) from macports.org, only to get a dialog saying my MacPorts version was too old to update, and that I first needed to upgrade to 1.7.1. That didn&#8217;t install at all, but I found this snippet while [...]]]></description>
			<content:encoded><![CDATA[<p>I was just about to install MacPorts on my OS X 10.6 system, and downloaded the latest package (1.9.1) from macports.org, only to get a dialog saying my MacPorts version was too old to update, and that I first needed to upgrade to 1.7.1. That didn&#8217;t install at all, but I found this snippet while googling around for a solution. This removes all previous versions of MacPorts and its dependencys, so be careful if you&#8217;re not sure that you want to do that. Fire up Terminal and type:</p>

<p><pre><code>sudo rm -rf \
/opt/local \
/Applications/MacPorts \
/Applications/DarwinPorts \
/Library/Tcl/macports1.0 \
/Library/Tcl/darwinports1.0 \
/Library/LaunchDaemons/org.macports.* \
/Library/StartupItems/DarwinPortsStartup \
/Library/Receipts/MacPorts<em>.pkg \
/Library/Receipts/DarwinPorts</em>.pkg</code></pre></p>

<p>Then install MacPorts 1.9.1 package again. Worked for me at least. Disclaimer: I am certainly not an expert on this, so your mileage may vary&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/twob?a=hrILg3rzXi4:55mOczM8J0A:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/twob?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/twob?a=hrILg3rzXi4:55mOczM8J0A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/twob?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/twob/~4/hrILg3rzXi4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://twob.net/journal/installing-latest-macports-for-osx106/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More fonts for the web</title>
		<link>http://twob.net/journal/more-fonts-for-the-web/</link>
		<comments>http://twob.net/journal/more-fonts-for-the-web/#comments</comments>
		<pubDate>Tue, 11 May 2010 11:16:08 +0000</pubDate>
		<dc:creator>bjorn</dc:creator>
				<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://twob.net/?p=201</guid>
		<description><![CDATA[Typography for the web is on the roll. Sites like fontsquirrel and fontspring offer loads of free and open-source embeddable fonts for hosting on your own server, and hosted solutions like typekit.com are partnering up with big type foundries like fontfont and veer. The big foundries have been a bit slow in adapting their font licenses for [...]]]></description>
			<content:encoded><![CDATA[<p>Typography for the web is on the roll.</p>

<p>Sites like <a href="http://www.fontsquirrel.com/">fontsquirrel</a> and <a href="http://www.fontspring.com/">fontspring</a> offer loads of free and open-source embeddable fonts for hosting on your own server, and hosted solutions like <a href="http://typekit.com/">typekit.com</a> are partnering up with big type foundries like fontfont and veer.</p>

<p>The big foundries have been a bit slow in adapting their font licenses for this newfangled technology; after all, the MS-proprietary format .eot has only been around since IE5 or something.</p>

<p>Monotype, Linotype and ITC have recently joined forces in a service similar to Typekit called <a href="http://webfonts.fonts.com/">webfonts.fonts.com</a>. This is great news, since beforementioned foundries holds classics like Frutiger®, Univers®, Helvetica®, ITC Franklin Gothic and ITC Avant Garde® to name a few&#8230;</p>

<p>I got my beta account invite to the service day before yesterday and have just started toying with it a bit. The UI is a bit lacking when compared to typekit, and many of the poster-name fonts mentioned on the site hasn&#8217;t been added yet. Font replacement looks snappy enough however. Think I need to play around a bit more with the service before I can give an honest opinion.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/twob?a=0tEj9IuJjZY:kGonaiNdngE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/twob?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/twob?a=0tEj9IuJjZY:kGonaiNdngE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/twob?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/twob/~4/0tEj9IuJjZY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://twob.net/journal/more-fonts-for-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>subscript/superscript character challenges in HTML</title>
		<link>http://twob.net/journal/subscript-superscript-in-html/</link>
		<comments>http://twob.net/journal/subscript-superscript-in-html/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 08:36:13 +0000</pubDate>
		<dc:creator>bjorn</dc:creator>
				<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://twob.net/journal/co2-m2-and-other-subscriptsuperscript-characters-in-html/</guid>
		<description><![CDATA[(this entry is a bit of a mess, just posting it for reference now, might get around to expand the topic at a later time) According to the internet, IE has issues with the UTF-8 version of subscript 2: CO₂ &#8230; which unfortunately turns out to be correct, also in IE8. IE just displays an [...]]]></description>
			<content:encoded><![CDATA[<p class="notice"><em>(this entry is a bit of a mess, just posting it for reference now, might get around to expand the topic at a later time)</em></p>

<p>According to the internet, IE has issues with the UTF-8 version of <strong>subscript 2</strong>: CO₂ &#8230; which unfortunately turns out to be correct, also in IE8. IE just displays an outlined square.</p>

<p>when writing m², you can either use the entity <code>&amp;sup2;</code> or <code>&lt;sup&gt;2&lt;/sup&gt;</code>. There is no entity for subscript-2 and the UTF-character <code>&amp;#8322;</code> doesn&#8217;t work in IE
Without some extra CSS in the document they differ a bit, <code>&amp;sup2;</code> being more typographically correct. &lt;sup&gt; and &lt;sub&gt; elements messes up the line spacing.</p>

<p><strong>Examples</strong> (entities vs. sup/sub):
m² vs. m<sup>2</sup> and CO₂ vs. CO<sub>2</sub></p>

<p><sub><strong>Related info:</strong>
</sub></p>

<ul>
    <li><a href="http://tlt.its.psu.edu/suggestions/international/bylanguage/mathchart.html">Math unicode entities</a></li>
    <li><a href="http://tlt.its.psu.edu/suggestions/international/bylanguage/mathchart.html"></a><a href="http://www.fileformat.info/info/unicode/char/2082/browsertest.htm">Browser test page for unicode character SUBSCRIPT TWO</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/twob?a=64L0x4OZuVM:uX2RXT3WEOM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/twob?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/twob?a=64L0x4OZuVM:uX2RXT3WEOM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/twob?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/twob/~4/64L0x4OZuVM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://twob.net/journal/subscript-superscript-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extra characters for Cufon/sIFR</title>
		<link>http://twob.net/journal/cufon-and-sifr-characters/</link>
		<comments>http://twob.net/journal/cufon-and-sifr-characters/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 08:11:52 +0000</pubDate>
		<dc:creator>bjorn</dc:creator>
				<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://twob.net/?p=138</guid>
		<description><![CDATA[When rendering typefaces for use with Cúfon or sIFR, it&#8217;s not enough with choosing basic latin if you want to be able to write in swedish or danish. Here&#8217;s the string I&#8217;m using for configuration: “”‘’…_&#38;-–—åäöæøàèìòùáéíóúâêîôûäëïöüãõñçÅÄÖÆØÀÈÌÒÙÁÉÍÓÚÂÊÎÔÛÄËÏÖÜÃÕÑÇ©®™′″´×⁺ That tends to cover the most common issues, including WordPress punctuation. How to make it work Adding extra characters [...]]]></description>
			<content:encoded><![CDATA[<p>When rendering typefaces for use with <a href="http://wiki.github.com/sorccu/cufon/about">Cúfon</a> or <a href="http://novemberborn.net/sifr3">sIFR</a>, it&#8217;s not enough with choosing basic latin if you want to be able to write in swedish or danish. Here&#8217;s the string I&#8217;m using for configuration:
<pre><code>“”‘’…_&amp;-–—åäöæøàèìòùáéíóúâêîôûäëïöüãõñçÅÄÖÆØÀÈÌÒÙÁÉÍÓÚÂÊÎÔÛÄËÏÖÜÃÕÑÇ©®™′″´×⁺</code></pre>
That tends to cover the most common issues, including <a href="http://codex.wordpress.org/User:Here/Texturize">WordPress punctuation</a>.</p>

<h3>How to make it work</h3>

<p>Adding extra characters when <a href="http://cufon.shoqolate.com/generate/">rendering font files for Cufón</a> is fairly straightforward; just paste that string into the text field labeled &#8220;<em>.. and also these single characters</em>&#8221; and render away.</p>

<p>When generating .swf-files for use with sIFR, select the text object in the .fla file that comes with the download, 2) click the <strong>character embedding</strong> button, and 3) paste the text string in the field. Generate the .swf, and done!</p>

<p><img class="alignnone size-full wp-image-168" title="cufon-and-sifr-characters" src="http://twob.net/wp-content/cufon-and-sifr-characters.png" alt="cufon-and-sifr-characters" width="500" height="384" /></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/twob?a=rL8gpN4slgw:7UfjAChtZ-w:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/twob?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/twob?a=rL8gpN4slgw:7UfjAChtZ-w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/twob?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/twob/~4/rL8gpN4slgw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://twob.net/journal/cufon-and-sifr-characters/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>MP3 Amp</title>
		<link>http://twob.net/journal/mp3-amp/</link>
		<comments>http://twob.net/journal/mp3-amp/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 18:56:41 +0000</pubDate>
		<dc:creator>bjorn</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://twob.net/journal/mp3-amp/</guid>
		<description><![CDATA[I&#8217;ll take two, please.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll take two, please.</p>

<p><a href='http://www.red5.co.uk/MP3-Amp-pr-511.html' title='mp3Amp'><img src='http://twob.net/wp-content/mp3amp.jpg' alt='mp3Amp' style="border:0" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/twob?a=OSBPksQgSiQ:cnVO8MYhIYc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/twob?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/twob?a=OSBPksQgSiQ:cnVO8MYhIYc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/twob?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/twob/~4/OSBPksQgSiQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://twob.net/journal/mp3-amp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Herb Albert – Spanish Flea</title>
		<link>http://twob.net/journal/herb-albert-spanish-flea/</link>
		<comments>http://twob.net/journal/herb-albert-spanish-flea/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 14:43:41 +0000</pubDate>
		<dc:creator>bjorn</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://twob.net/journal/herb-albert-spanish-flea/</guid>
		<description><![CDATA[This song has been going around like the flu in the office the last couple of months. Spanish Flea by Herb Alpert &#38; The Tijuana Brass&#8230; Here&#8217;s what has to be the funniest interpretation ever of it:]]></description>
			<content:encoded><![CDATA[<p>This song has been going around like the flu in the office the last couple of months. Spanish Flea by Herb Alpert &amp; The Tijuana Brass&#8230; Here&#8217;s what has to be the funniest interpretation ever of it:</p>

<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/hvB1_rqbwsg&#038;rel=0&#038;color1=0xd6d6d6&#038;color2=0xf0f0f0&#038;border=0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/hvB1_rqbwsg&#038;rel=0&#038;color1=0xd6d6d6&#038;color2=0xf0f0f0&#038;border=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/twob?a=XQnNfPz4hWs:PBvlfPYnILQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/twob?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/twob?a=XQnNfPz4hWs:PBvlfPYnILQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/twob?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/twob/~4/XQnNfPz4hWs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://twob.net/journal/herb-albert-spanish-flea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Och nu brinner hela skogen</title>
		<link>http://twob.net/journal/life/och-nu-brinner-hela-skogen/</link>
		<comments>http://twob.net/journal/life/och-nu-brinner-hela-skogen/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 16:54:53 +0000</pubDate>
		<dc:creator>bjorn</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://twob.net/journal/life/och-nu-brinner-hela-skogen/</guid>
		<description />
			<content:encoded><![CDATA[<p><object width="340" height="289" id="player" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" align="middle"> <param name="movie" value="http://cdn.last.fm/videoplayer/33/VideoPlayer.swf" /> <param name="menu" value="false" /> <param name="quality" value="high" /> <param name="bgcolor" value="#000000" /> <param name="allowFullScreen" value="true" /> <param name="flashvars" value="embed=true&#038;creator=Familjen&#038;title=Det+snurrar+i+min+skalle&#038;uniqueName=2803487&#038;albumArt=http://cdn.last.fm/coverart/130x130/3264663-764917140.jpg&#038;album=Det+snurrar+i+min+skalle&#038;duration=&#038;image=http://userserve-ak.last.fm/serve/image:320/2803487.jpg&#038;FSSupport=true" /> <embed src="http://cdn.last.fm/videoplayer/33/VideoPlayer.swf" menu="false" quality="high" bgcolor="#000000" width="340" height="289" name="player" align="middle" allowFullScreen="true" flashvars="embed=true&#038;creator=Familjen&#038;title=Det+snurrar+i+min+skalle&#038;uniqueName=2803487&#038;albumArt=http://cdn.last.fm/coverart/130x130/3264663-764917140.jpg&#038;album=Det+snurrar+i+min+skalle&#038;duration=&#038;image=http://userserve-ak.last.fm/serve/image:320/2803487.jpg&#038;FSSupport=true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/twob?a=TW3GVtpddTA:nNA_s52RV44:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/twob?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/twob?a=TW3GVtpddTA:nNA_s52RV44:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/twob?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/twob/~4/TW3GVtpddTA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://twob.net/journal/life/och-nu-brinner-hela-skogen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jazz is not dead … it just smells funny</title>
		<link>http://twob.net/journal/jazz-is-not-dead-it-just-smells-funny/</link>
		<comments>http://twob.net/journal/jazz-is-not-dead-it-just-smells-funny/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 21:16:16 +0000</pubDate>
		<dc:creator>bjorn</dc:creator>
				<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://twob.net/journal/jazz-is-not-dead-it-just-smells-funny/</guid>
		<description><![CDATA[Finally breaking the silence around here, since Anders from ofokuserat challenged me in a band-relay game. I got the letter Z (which, I guess, is the last character?) and the first band that came to mind was Zero 7. But since I couldn&#8217;t think of a single song of theirs I really like, I&#8217;m going [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://twob.net/wp-content/frankzappa.jpg" class="right" /> Finally breaking the silence around here, since Anders from <a href="http://ofokuserat.blogspot.com/2008/01/what-are-you-gonna-do-without-your-ass.html">ofokuserat</a> challenged me in a band-relay game. I got the letter Z (which, I guess, is the last character?) and the first band that came to mind was <a href="http://www.zero7.co.uk">Zero 7</a>. But since I couldn&#8217;t think of a single song of theirs I really like, I&#8217;m going with <strong><a href="http://en.wikipedia.org/wiki/Frank_Zappa">Frank Zappa</a></strong>.</p>

<blockquote>
  <blockquote>
    <p>Information is not knowledge. Knowledge is not wisdom. Wisdom is not truth. Truth is not beauty. Beauty is not love. Love is not music. Music is the best.</p>
  </blockquote>
</blockquote>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/twob?a=zcUJeEcOIc4:4h5yl0Vq6Yk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/twob?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/twob?a=zcUJeEcOIc4:4h5yl0Vq6Yk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/twob?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/twob/~4/zcUJeEcOIc4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://twob.net/journal/jazz-is-not-dead-it-just-smells-funny/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

