<?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>krank.se</title>
	<atom:link href="http://www.krank.se/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.krank.se</link>
	<description></description>
	<lastBuildDate>Tue, 18 Jun 2013 13:31:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Modifying URLs: Marvel Digital Comics</title>
		<link>http://www.krank.se/?p=411</link>
		<comments>http://www.krank.se/?p=411#comments</comments>
		<pubDate>Wed, 05 Jun 2013 16:50:41 +0000</pubDate>
		<dc:creator>krank</dc:creator>
				<category><![CDATA[howtos]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.krank.se/?p=411</guid>
		<description><![CDATA[I like experimenting with things, and one of the simplest ways to experiment with something online is to edit URL&#8217;s. Sometimes changing a URL can give access to new functions or content, or just enhance your bookmarks or how you use a certain site. It occurred to me that most people probably do not know [...]]]></description>
				<content:encoded><![CDATA[<p>I like experimenting with things, and one of the simplest ways to experiment with something online is to edit URL&#8217;s. Sometimes changing a URL can give access to new functions or content, or just enhance your bookmarks or how you use a certain site.</p>
<p>It occurred to me that most people probably do not know how URLs work, or how to do experiments with them&#8230; So here&#8217;s an example: The Marvel Digital Comics Unlimited web interface.</p>
<p><span id="more-411"></span></p>
<h2>Basic URL format and terminology</h2>
<p>Let&#8217;s start with the basics. This is the URL for browsing the catalog of the Uncanny X-men comic:</p>
<p style="padding-left: 30px;">http://marvel.com/comics/series/2258/uncanny_x-men_1963_-_2011</p>
<p>Here&#8217;s how to interpret this URL:</p>
<ul>
<li><strong>http://</strong> means &#8220;use the HTTP protocol&#8221;. Http is a way to transport data over the internet. Just don&#8217;t worry about it just now =)</li>
<li><strong>marvel</strong> is the <em>name</em> of the domain. This is the name Marvel (the company) registered as its own. It&#8217;s a bit like a local street address, possibly including the city name.</li>
<li><strong>.com</strong> is the top-level domain. Formally, &#8220;com&#8221; means &#8220;commercial&#8221;, but that&#8217;s not always the case. A top-level domain is a bit like specifying the country your address is in.</li>
</ul>
<p>So http://marvel.com means &#8220;marvel, in the top-level domain of .com, using the http protocol&#8221;. With me so far? Good. Now we get to the interesting parts.</p>
<p>After .com comes a / and then &#8220;comics&#8221;, then another /, then &#8220;series&#8221;&#8230; Are you familiar with the concepts of folders+ That is what this is; the / is a divider for folder. So in this case, we have the folder &#8220;uncanny_x-men_1963_-_2011&#8243; inside the folder &#8220;2258&#8243; inside the folder &#8220;series&#8221; inside the folder &#8220;comics&#8221;. The &#8220;comics&#8221; folder, then exists on the computer called &#8220;marvel&#8221;, at the .com top-level domain, and we&#8217;re accessing it using the http protocol.</p>
<p>So: Protocol, domain name, top-level domain, folders.</p>
<p>Let&#8217;s move on.</p>
<h2>The next step: Parameters</h2>
<p>Right now, the URL isn&#8217;t very helpful. There&#8217;s not a lot for us to experiment with, at least not at some beginner level. So let&#8217;s click something. Let&#8217;s click the checkbox for &#8220;Marvel Unlimited&#8221;, because we only want to see the comics available through that service. Whoa! The URL expands into this monstrosity:</p>
<p style="padding-left: 30px;">http://marvel.com/comics/series/2258/uncanny_x-men_1963_-_2011?limit=11&amp;byType=comic_series&amp;byId=2258&amp;byZone=marvel_site_zone&amp;offset=0&amp;imageVariant=portraitFantastic&amp;orderBy=release_date+desc&amp;isDigital=1&amp;totalcount=11</p>
<p>OK, lets&#8217; take it one step at a time. First if all, we already know about everything up until the ?. So let&#8217;s focus on the things after the ?.</p>
<p style="padding-left: 30px;">?limit=11&amp;byType=comic_series&amp;byId=2258&amp;byZone=marvel_site_zone&amp;offset=0&amp;imageVariant=portraitFantastic&amp;orderBy=release_date+desc&amp;isDigital=1&amp;totalcount=11</p>
<p>These are &#8220;parameters&#8221;. Things our browser sends to the server to specify what kind of information we want, how we want it displayed, etc. The server is configured to understand certain set parameters, so we can&#8217;t just enter &#8220;let me see these comics as movies&#8221; or something: We are limited by what the server is capable of understanding.</p>
<p>Each parameter is consists of a keyword and a value, separated by a =. The parameters are then separated by &amp;, and the parameters are separated from the rest of the URL by a ?.</p>
<p>So, let&#8217;s look at the parameters in this URL &#8211; we&#8217;ll begin by splitting them up. Remember, they are separated by &amp;&#8217;s.</p>
<ul>
<li>limit=11</li>
<li>byType=comic_series</li>
<li>byId=2258</li>
<li>byZone=marvel_site_zone</li>
<li>offset=0</li>
<li>imageVariant=portraitFantastic</li>
<li>orderBy=release_date+desc</li>
<li>isDigital=1</li>
<li>totalcount=11</li>
</ul>
<p>These, then, are our parameters. Some of them are quite easy to understand without deeper analysis or experimentation: &#8220;isDigital&#8221;, for instance, probably means only &#8220;digital&#8221; comics are included. &#8220;orderBy&#8221; is probably how the list is ordered. I&#8217;m guessing &#8220;offset&#8221; has something to do with which comic is displayed first.</p>
<p>Guessing is the first step of experimentation. So, let&#8217;s see what happens if we change offset=0 to offset=1.</p>
<p>Original URL:</p>
<p style="padding-left: 30px;">http://marvel.com/comics/series/2258/uncanny_x-men_1963_-_2011?limit=11&amp;byType=comic_series&amp;byId=2258&amp;byZone=marvel_site_zone&amp;offset=0&amp;imageVariant=portraitFantastic&amp;orderBy=release_date+desc&amp;isDigital=1&amp;totalcount=11</p>
<p>New URL:</p>
<p style="padding-left: 30px;">http://marvel.com/comics/series/2258/uncanny_x-men_1963_-_2011?limit=11&amp;byType=comic_series&amp;byId=2258&amp;byZone=marvel_site_zone&amp;<strong>offset=1</strong>&amp;imageVariant=portraitFantastic&amp;orderBy=release_date+desc&amp;isDigital=1&amp;totalcount=11</p>
<p>Try these URL&#8217;s. See the difference? Originally, the list began on issue #544. Now it&#8217;s #543. See? Experimentation!</p>
<p>So now we know what offset does. What is &#8220;byZone&#8221;? Is it even necessary? Let&#8217;s see what happens when we remove it.</p>
<p>Original URL:</p>
<p style="padding-left: 30px;">http://marvel.com/comics/series/2258/uncanny_x-men_1963_-_2011?limit=11&amp;byType=comic_series&amp;byId=2258&amp;byZone=marvel_site_zone&amp;offset=0&amp;imageVariant=portraitFantastic&amp;orderBy=release_date+desc&amp;isDigital=1&amp;totalcount=11</p>
<p>New URL:</p>
<p style="padding-left: 30px;">http://marvel.com/comics/series/2258/uncanny_x-men_1963_-_2011?limit=11&amp;byType=comic_series&amp;byId=2258&amp;offset=0&amp;imageVariant=portraitFantastic&amp;orderBy=release_date+desc&amp;isDigital=1&amp;totalcount=11</p>
<p>Try them. Spot the difference? No? Me neither. I guess it didn&#8217;t do much, then.</p>
<p>The parameter &#8220;byId&#8221; seems to duplicate data already present in the folder structure: the number 2258. I wonder what happens if I remove it?</p>
<p>Nothing, again. The URL is now:</p>
<p style="padding-left: 30px;">http://marvel.com/comics/series/2258/uncanny_x-men_1963_-_2011?limit=11&amp;byType=comic_series&amp;offset=0&amp;imageVariant=portraitFantastic&amp;orderBy=release_date+desc&amp;isDigital=1&amp;totalcount=11</p>
<p>I do the same with the other parameters &#8211; try changing their values or removing them, one at a time to see what happens. These are my findings:</p>
<ul>
<li>limit=11 <strong>unknown.</strong></li>
<li>byType=comic_series <strong>Duplication. Just tells us we&#8217;re looking at a list of comics.</strong></li>
<li>byId=2258 <strong>Duplication. Also exists in the URL.</strong></li>
<li>byZone=marvel_site_zone <strong>unknown.</strong></li>
<li>offset=0 <strong>Which issue to have as &#8220;first&#8221;.</strong></li>
<li>imageVariant=portraitFantastic <strong>Probably how the comics are displayed. No idea what other options there might be.</strong></li>
<li>orderBy=release_date+desc <strong>How the comic is sorted. &#8220;desc&#8221; means &#8220;descending&#8221;. Can be substituted for &#8220;asc&#8221; as in &#8220;ascending&#8221;.</strong></li>
<li>isDigital=1 <strong>Show only digitally available comics on 1, show all comics on 0.</strong></li>
<li>totalcount=11 <strong>The total number of comics to display.</strong></li>
</ul>
<p>This means we can build our own url! We know the format (? followed by parameters separated by &amp;, each parameter being a keyword=value pair), and we know what most of the parameters are. In this case, they can also all be removed without problems. This means we only need to include the parameters that do things we want to change from the default view.</p>
<p>For instance, I wanted a view of ALL Uncanny X-men issues, ordered by release date in ascending order (oldest first), and only the ones available in digital format.</p>
<p>This URL does just that:</p>
<p style="padding-left: 30px;">http://marvel.com/comics/series/2258/uncanny_x-men_1963_-_2011?orderBy=release_date+asc&amp;isDigital=1&amp;totalcount=1024</p>
<h2>Conclusions</h2>
<p>Well, that&#8217;s pretty much all there is to it! Protocol, domain, top level domain, folders, parameter-pairs. I might put together a slightly more advanced example later, if you&#8217;re interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krank.se/?feed=rss2&#038;p=411</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BTH &#8211; evaluating OS&#8217;s for use on the EEE 901</title>
		<link>http://www.krank.se/?p=400</link>
		<comments>http://www.krank.se/?p=400#comments</comments>
		<pubDate>Thu, 02 May 2013 14:47:20 +0000</pubDate>
		<dc:creator>krank</dc:creator>
				<category><![CDATA[reviews]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.krank.se/?p=400</guid>
		<description><![CDATA[So&#8230; I really like the form factor of the smaller, &#8220;original&#8221; EEE series (701, 900, 901) netbooks. They&#8217;re just the perfect size for use on busses, trains, etc. They don&#8217;t require much in terms of packaging or storage, they&#8217;re just very simple to carry around. My first EEE was a 900, since then I&#8217;ve tried [...]]]></description>
				<content:encoded><![CDATA[<p>So&#8230; I really like the form factor of the smaller, &#8220;original&#8221; EEE series (701, 900, 901) netbooks. They&#8217;re just the perfect size for use on busses, trains, etc. They don&#8217;t require much in terms of packaging or storage, they&#8217;re just very simple to carry around. My first EEE was a 900, since then I&#8217;ve tried the 1015PEM but I quickly realized it was too big for me, so I was relly happy when I found the 901 &#8211; it&#8217;s like the 900, but with much better battery life and processor. The only thing It&#8217;s lacking is a 3G slot, and I&#8217;m currently looking for a 901 Go though they seem kind of hard (and slightly expensive) to get ahold of.</p>
<p>Anyways, I have been trying out different operating systems and distros on the 901, trying to choose one for everyday use. What I want is basically what everyone wants in a netbook: fast boot time, responsive interface. Right? A simple way to get right into the processor of surfing or writing or whatever. My first choice was Ubuntu with Gnome 3 as a launcher, since I am absolutely in love with Gnome 3. But I found that the poor little 901 processor/ram/SSD couldn&#8217;t handle the Gnome monster very well. Sure, it booted up OK, but then I had kind of a 2-second delay between pressing the Super button and the menu actually appearing&#8230; Just not responsive enough. So I went a&#8217;shoppin. Since I know I was going to test quite a few distros and OS&#8217;s here, I created a simple test.</p>
<p><span id="more-400"></span></p>
<h2>THE TEST</h2>
<ul>
<li>Each OS will use the Crome web browser. I will make the browser as accessible as I&#8217;d be likely to if I were to use the OS on a daily basis.</li>
<li>All Linux distros use the same partition scheme:
<ul>
<li>3.9gb out of the 4gb SSD drive as ext4 and mounted as /</li>
<li>The remaining 100mb is used by the EEE to cut BIOS load time.</li>
<li>15 out of the 16gb SSD as ext4 and mounted as /usr</li>
<li>The remaining 1gb used as swap.</li>
</ul>
</li>
<li>Two things will be timed.
<ul>
<li>1. The time from boot screen to login screen.</li>
<li>2. The time from boot screen to the Wikipedia entry on Adolf Hitler (BTH).</li>
</ul>
</li>
<li>The &#8220;boot screen&#8221; is the screen invoked by pressing ESC while Bios is loading; the screen lets me select which drive to boot from.</li>
</ul>
<h2>BTH</h2>
<p>BTH stands for &#8220;boot-to-Hitler&#8221;, and is the simple test I&#8217;m using to determine how quickly the OS becomes usable. It&#8217;s all very well to see the desktop icons etc, but until I&#8217;m actually surfing or writing, the computer us essentially useless. BTH is not exact; it includes the time it takes for me to type my login credentials, click icons, type &#8220;hitler&#8221; in the search bar, and then click the link to the wikipedia entry.</p>
<p>Why Hitler? Well, why not. I hope noone out there thinks I like the man. I use him for the lulz, you might say.</p>
<h2>The results</h2>
<p>This is not a complete list, and is likely to change and be updated from time to time.</p>
<p><strong>Android x86</strong></p>
<p><em>Booted from SD card.</em></p>
<ul>
<li>boot to login/lockscreen: 0:37</li>
<li>boot to hitler: 1:03</li>
</ul>
<p><strong>Ubuntu 12.10</strong></p>
<ul>
<li>boot to login: 0:30</li>
<li>boot to hitler: 1:09</li>
</ul>
<p><em>Some additional times</em></p>
<ul>
<li>hibernate: 0:19</li>
<li>wakeup: 0:18</li>
<li>Stänga av: 0:15</li>
</ul>
<p><strong>Windows XP</strong></p>
<p><em>Activated automatic login, so these times are actually lower than they should be. I used a nLite&#8217;d XP with a lot of time consuming stuff removed or deactivated. Also defragged harddrive, newly ccleaner-cleaned, etc. In short, best possible chances to excel.</em></p>
<ul>
<li>boot to desktop: 0:57</li>
<li>boot to hitler: 1:47</li>
</ul>
<p><strong>Ubuntu 13.04 Unity / Gnome</strong></p>
<p><em>I was a bit surprised that these were actually pretty much the same, time-wise.</em></p>
<ul>
<li>boot to login: 0:24</li>
<li>boot to hitler: 1:02</li>
</ul>
<p><strong>Ubuntu 13.04 Gnome 3.8</strong></p>
<ul>
<li>boot to login: 0:26</li>
<li>boot to hitler: 1:07</li>
</ul>
<p><strong>Linux Mint 14.1 MATE</strong></p>
<ul>
<li>boot to login: 0:22</li>
<li>boot to hitler: 1:25</li>
</ul>
<p><strong>Linux Mint 14.1 Cinnamon</strong></p>
<ul>
<li>boot to login: 0:19</li>
<li>boot to hitler: 1:09</li>
</ul>
<p><strong>Easy Peasy 1.6</strong></p>
<ul>
<li>boot to login: 0:22</li>
<li>boot to hitler: 0:57</li>
</ul>
<p><strong>CrunchBang 11</strong></p>
<ul>
<li>boot to login: 0:19</li>
<li>boot to hitler: 0:50</li>
</ul>
<p><strong>Lubuntu 13.04</strong></p>
<ul>
<li>boot to login: 0:24</li>
<li>boot to hitler: 0:53</li>
</ul>
<p><strong>Xubuntu 13.04</strong></p>
<ul>
<li>boot to login: 0:23</li>
<li>boot to hitler: 0:57</li>
</ul>
<p><strong>Debian 6.0.7</strong></p>
<ul>
<li>boot to login: 0:22</li>
<li>boot to hitler: 0:52</li>
</ul>
<p><strong>Debian wheezy Gnome 3.4</strong></p>
<ul>
<li>boot to login: 0:24</li>
<li>boot to hitler: 1:00</li>
</ul>
<h2>My thoughts</h2>
<p>It&#8217;s hardly surprising that so many of these have such similar BTH values. After all, most if them are based on the same distro; the ever-present Ubuntu.Several of them impressed me; the ones that felt the most responsive were defintely also the ones sporting the shortest times: Xubuntu, Lubuntu, Crunchbang, Easy Peasy. I liked Linux Mint in both flavors, but ultimately they were not snappy enough.</p>
<p>I have a few distros left to est, such as JoliOS and Elementary OS (in both cases, their installation programs refuse to cooperate), Windows 7 and 8, possibly OSX.</p>
<p>If I were to select a distro <em>right now</em>, I would probably choose CrunchBang. Its responsiveness and speed are really nice, and the dmenu is a completely adequate search-based launcher, fully capable of most operations I want it to. Its task switching/launching is perhaps not on par with Gnome 3, but then again &#8211; nothing seems to be.</p>
<p>I am, however, kind of leaning towards the Debian+Gnome 3 option. I need to spend some more time thinking about this&#8230; CrunchBang is based on Debian, so they share basic architecture and things like that. I&#8217;m thinking I might experiment a bit, perhaps install crunchbang with the gnome 3 shell as an option&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krank.se/?feed=rss2&#038;p=400</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>En sekulär stat, ett sekulärt samhälle &#8211; ett fuck you till konfessionella friskolor</title>
		<link>http://www.krank.se/?p=397</link>
		<comments>http://www.krank.se/?p=397#comments</comments>
		<pubDate>Tue, 23 Apr 2013 11:55:52 +0000</pubDate>
		<dc:creator>krank</dc:creator>
				<category><![CDATA[Politik]]></category>

		<guid isPermaLink="false">http://www.krank.se/?p=397</guid>
		<description><![CDATA[Appropå den här artikeln. &#8220;Man verkar vilja ha inte bara en sekulär stat, utan även ett sekulärt samhälle.&#8221; Huvudet på spiken. Det finns ingen som helst anledning att godta konfessionella friskolor. Sådana friskolor är tillsammans med vinstdrivande riskkapitalister mina huvudsakliga argument mot den så kallade &#8220;valfriheten&#8221;. Vilken valfrihet får de barn som tvingas gå i [...]]]></description>
				<content:encoded><![CDATA[<p data-ft="{&quot;type&quot;:1,&quot;tn&quot;:&quot;K&quot;}">Appropå <a href="http://www.svd.se/opinion/brannpunkt/s-dubbla-vetoratt-hotar-den-religiosa-friheten_8104696.svd">den här artikeln</a>.</p>
<p data-ft="{&quot;type&quot;:1,&quot;tn&quot;:&quot;K&quot;}">&#8220;Man verkar vilja ha inte bara en sekulär stat, utan även ett sekulärt samhälle.&#8221; Huvudet på spiken. Det finns ingen som helst anledning att godta konfessionella friskolor. Sådana friskolor är tillsammans med vinstdrivande riskkapitalister mina huvudsakliga argument mot den så kallade &#8220;valfriheten&#8221;. Vilken valfrihet får de barn som tvingas gå i en skola som pådyvlar dem deras föräldrars religion?<br />
Det fantastiska med den kommunala skola jag gick i var ju just blandningen; att kristna tvingades umgås med ateister och muslimer, att doktorssöner och arkitektbarn tvingades att umgås med barn till arbetslösa, till fabriksarbetare, till alkoholister. Och jag vågar påstå att vi alla blev bättre människor av det. Visst fanns problem med mobbing och utanförskap även om min skola; men jag tror att det också skapades en större förståelse för andra människor och dörrar öppnades när vi fick kika in i varandras världar.<br />
Så fuck you. Det ni vill ha är inte för barnens bästa. Och att Sverige ligger i framkant vad gäller synen på religionen är inte ett problem, inte en anledning att med avundsjuka i blicken se på andra länder som inte kommit lika långt. Sverige är och bör vara ett sekulärt samhälle och barnens rätt väger tyngre än föräldrars religiösa tro.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krank.se/?feed=rss2&#038;p=397</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling hibernation in Ubuntu 12.10 with Gnome Shell</title>
		<link>http://www.krank.se/?p=373</link>
		<comments>http://www.krank.se/?p=373#comments</comments>
		<pubDate>Tue, 23 Oct 2012 17:06:26 +0000</pubDate>
		<dc:creator>krank</dc:creator>
				<category><![CDATA[howtos]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.krank.se/?p=373</guid>
		<description><![CDATA[I recently managed to acquire an EEE 901 netbook. I like it very much, and of course I installed Ubuntu on it (having briefly experimented with Crunch Bang Linux). Hibernation was disabled by default. This is how I solved that little problem: Enabling hibernation at the system level. First, i followed this guide. Condensed, it [...]]]></description>
				<content:encoded><![CDATA[<p>I recently managed to acquire an EEE 901 netbook. I like it very much, and of course I installed Ubuntu on it (having briefly experimented with Crunch Bang Linux). Hibernation was disabled by default. This is how I solved that little problem:</p>
<p><span id="more-373"></span><strong>Enabling hibernation at the system level.</strong></p>
<p>First, i followed <a href="http://www.howtogeek.com/113923/how-to-re-enable-hibernate-in-ubuntu-12.04/">this guide</a>. Condensed, it says:</p>
<p>1. See if hibernation works. UseAlt+F2 to open the &#8220;run&#8221; dialog, and then type &#8220;gksudo pm-hibernate&#8221;. Press enter, type in your password and press enter again. The system should now go into hibernation mode. Try to restart it. If all seems well, proceed to step 2 below. You&#8217;ll need to make sure to have a swap partition (or file) as large as your amount of RAM for any of this to work, by the way.</p>
<p>2. Call up the &#8220;run&#8221; dialog again. This time, type &#8220;gksu gedit /etc/polkit-1/localauthority/50-local.d/com.ubuntu.enable-hibernate.pkla&#8221;. Add these lines:</p>
<pre>[Enable Hibernate]
 Identity=unix-user:*
 Action=org.freedesktop.upower.hibernate
 ResultActive=yes</pre>
<p>Save and exit. Possibly use Alt+F2 and &#8220;restart&#8221; to restart the Gnome shell.</p>
<p>Now, you should be able to select hibernation in power options etc. It has been enabled at the system level. But still there is no menu option!</p>
<p><strong>Getting a graphical &#8220;hibernation&#8221; option</strong></p>
<p>I began by installing the &#8220;<a href="https://extensions.gnome.org/extension/5/alternative-status-menu/">alternative status menu</a>&#8221; extension. According to its description, it should have given me a &#8220;Hibernate&#8221; option. Alas, it did not. Seems like newer versions of the extension needs a bit of prodding. YMMV.</p>
<p>I poked around a bit, and found out that the extension actually had some hidden options, not accessible through either gconf-editor, dconf-editor or any other means besides manual editing.</p>
<p>Open a terminal window using Ctrl+Alt+T, for instance.</p>
<p>Go to the directory where the settings are (split into three lines for readability:</p>
<pre>cd ~/.local/share/gnome-shell/extensions/
cd ./alternative-status-menu@gnome-shell-extensions.gcampax.github.com/
cd ./schemas/</pre>
<p>Open up the settings file:</p>
<pre>gksudo gedit ./org.gnome.shell.extensions.alternative-status-menu.gschema.xml</pre>
<p>Find this part:</p>
<pre>&lt;key type="b" name="allow-hibernate"&gt;
 &lt;default&gt;false&lt;/default&gt;
 &lt;summary&gt;Enable hibernating&lt;/summary&gt;
 &lt;description&gt;Control the visibility of the Hibernate menu item&lt;/description&gt;
&lt;/key&gt;</pre>
<p>Change &#8220;false&#8221; to &#8220;true&#8221;. Save the file, then exit.</p>
<p>And now, because someone decided it shouldn&#8217;t be that easy, the schema needs to be &#8220;compiled&#8221;. Type:</p>
<pre>glib-compile-schemas ./</pre>
<p>And press enter. Use Alt+F2 to run the &#8220;restart&#8221; command. This should reload the Gnome shell.</p>
<p>Now, hopefully, there should be a &#8220;hibernate&#8221; command in your status menu&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krank.se/?feed=rss2&#038;p=373</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Nerdiest yet: Comparison between TFG1 reprints</title>
		<link>http://www.krank.se/?p=351</link>
		<comments>http://www.krank.se/?p=351#comments</comments>
		<pubDate>Mon, 13 Aug 2012 16:24:26 +0000</pubDate>
		<dc:creator>krank</dc:creator>
				<category><![CDATA[books]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[classic]]></category>
		<category><![CDATA[collections]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[idw]]></category>
		<category><![CDATA[titan]]></category>
		<category><![CDATA[transformers]]></category>

		<guid isPermaLink="false">http://www.krank.se/?p=351</guid>
		<description><![CDATA[As you might have noticed by now, if you&#8217;ve been here before, I am a bit of a nerd. Oh really? Yes, really. One of the things that make me a nerd is my somethines slightly-more-than-healthy interest in large robots, particularly of the transforming kind. I&#8217;ve been a Transformers fan for as long as I [...]]]></description>
				<content:encoded><![CDATA[<p>As you might have noticed by now, if you&#8217;ve been here before, I am a bit of a nerd. <em>Oh really?</em> Yes, really. One of the things that make me a nerd is my somethines slightly-more-than-healthy interest in large robots, particularly of the transforming kind. I&#8217;ve been a Transformers fan for as long as I can remember. Owned a lot of the toys, all the comic books (in Swedish), and a lot of the toys.</p>
<p>Well, it turns out a lot of other people really liked Transformers too. And now we&#8217;re all grown up. OK, perhaps not completely grown up &#8211; as you might have surmised from the aforementioned unabated interest in robots that transform &#8211; but grown up enough to have Real Jobs and a Steady Income. And of course, some of us then decide we want to revisit the same comic books, and toys etc, that we enjoyed when we were younger.</p>
<p>And this brings us to the subject of this post: I&#8217;ve been trying to figure out which of the various reprints of the original (American) G1 comic is the best. At first I tried using the powers of teh Internets, but I didn&#8217;t find the information I needed to make a decision. The Decision is, of course, which of these reprint series I&#8217;m going to <em>complete</em>. Mixing them won&#8217;t work, since they split the original comic in different ways. And besides, I really like the uniform look of multiple albums of the same series in my bookcase.</p>
<p>So, I bought the first album of each series, and can now make an honest comparison. And of course I felt like I needed to share, so here goes: my quick and dirty look at the first volume of the three reprints of The Transformers, Generation 1.</p>
<div id="attachment_352" class="wp-caption aligncenter" style="width: 810px"><a href="http://www.krank.se/wp-content/uploads/2012/08/all_de_covers.jpg"><img class="size-full wp-image-352" title="All three covers" src="http://www.krank.se/wp-content/uploads/2012/08/all_de_covers.jpg" alt="All three covers of G1 reprints" width="800" height="354" /></a><p class="wp-caption-text">All three covers</p></div>
<p><span id="more-351"></span></p>
<p><strong>Titan Books: Transformers Beginnings (2003)</strong></p>
<p><a href="http://www.krank.se/wp-content/uploads/2012/08/titancover.jpg"><img class="wp-image-353 alignright" style="margin: 30px;" title="Titan Books cover" src="http://www.krank.se/wp-content/uploads/2012/08/titancover-245x300.jpg" alt="" width="196" height="240" /></a></p>
<p>Issues: 1-6</p>
<p>Things I like: It&#8217;s hardcover. It includes the infamous #3 where Spiderman makes an appearence. It has nice, glossy paper that really makes the illustrations stand out. Extremely crisp illustrations.</p>
<p>Things I don&#8217;t like: Production quality, aside from the hardcover and paper quality, seems a bit shoddy. Might be because my book was slightly damaged, but I don&#8217;t really care for the layout either. It&#8217;s not horrible, but it&#8217;s not great either. I don&#8217;t really like how they present the original comicbook covers &#8211; what&#8217;s wrong with just displaying them full-page? It collects merely 6 issues, despite costing about as much as the others, making this the most expensive choice. Also, not the greatest availability.<strong></strong></p>
<p><strong>IDW: Classic Transformers, volume 1 (Second printing, 2009)</strong></p>
<p><a href="http://www.krank.se/wp-content/uploads/2012/08/IDW1cover.jpg"><img class=" wp-image-356 alignright" style="margin: 25px;" title="IDW1cover" src="http://www.krank.se/wp-content/uploads/2012/08/IDW1cover-219x300.jpg" alt="" width="175" height="240" /></a>Issues: 1-16, excepting 3 and 9</p>
<p>Things I like: Good, glossy paper quality (like the Titan books reprint). Very nice layout and graphical elements; the table of contents looks very professional.</p>
<p>Things I don&#8217;t like: It has an ugly, &#8220;mosaic&#8221; style cover. It displays the original covers as very tiny thumbnails. It does not include #3 (spiderman) or #9 (Cirtcuit Breaker). Its illustrations, while printed on nice paper, seem a bit smudged and blurry.</p>
<p><strong>IDW: The Transformers Classics, vol.1</strong></p>
<p><a href="http://www.krank.se/wp-content/uploads/2012/08/idw2cover.jpg"><img class=" wp-image-360 alignright" style="margin: 25px;" title="idw2cover" src="http://www.krank.se/wp-content/uploads/2012/08/idw2cover-229x300.jpg" alt="" width="183" height="240" /></a>Issues: 1-13</p>
<p>Things I like: The cover is really gorgeous. Optimus, done in IDW style, and a black background. This book will look absolutely fabulous in my bookcase, since it and the following volums have such nice, uniform spines. It includes both #3 and #9, so both Spidey and Josie Beller have their rightful places. It displays the original covers at almost full size, which is nice.</p>
<p>Things I don&#8217;t like: Ugly, matte paper. All illustrations look washed-out. They also seem to be even more blurry than the first line of IDW G1 reprints.</p>
<p><strong>Some visual comparisons</strong></p>
<div id="attachment_363" class="wp-caption alignnone" style="width: 310px"><a href="http://www.krank.se/wp-content/uploads/2012/08/cover-compare.jpg"><img class="size-medium wp-image-363" title="cover-compare" src="http://www.krank.se/wp-content/uploads/2012/08/cover-compare-300x156.jpg" alt="" width="300" height="156" /></a><p class="wp-caption-text">How the different versions present the original covers</p></div>
<div id="attachment_364" class="wp-caption alignnone" style="width: 310px"><a href="http://www.krank.se/wp-content/uploads/2012/08/illustrations-compare.jpg"><img class="size-medium wp-image-364 " title="illustrations-compare" src="http://www.krank.se/wp-content/uploads/2012/08/illustrations-compare-300x160.jpg" alt="" width="300" height="160" /></a><p class="wp-caption-text">A high-res look at the difference in art/smudginess</p></div>
<div id="attachment_365" class="wp-caption alignnone" style="width: 310px"><a href="http://www.krank.se/wp-content/uploads/2012/08/illustrations-compare-detail.jpg"><img class="size-medium wp-image-365" title="illustrations-compare-detail" src="http://www.krank.se/wp-content/uploads/2012/08/illustrations-compare-detail-300x100.jpg" alt="" width="300" height="100" /></a><p class="wp-caption-text">A small detail, again to show blurriness/smudginess.</p></div>
<p><strong>In conclusion:</strong></p>
<p>This is not an easy choice, since each iteration has something going for it. The biggest problem for the two IDW reprints is the fact that the illustrations look blurry. As comics depend quite a lot on its illustrations, this is a bit problem. The Titan Books reprint&#8217;s biggest issue is that everything except the illustrations seems a bit shoddy.</p>
<p>The first IDW reprint series has the nicest layout and feels very professional. But it is not an option, since it excludes #3 and #9. I&#8217;m not prepared to miss out on Circuit Breaker. So the decision is between the second IDW reprint and the Titan Books one. And, despite the extremely good-looking cover of the IDW reprint, its shoddy paper quality and blurry/smudged illustrations make it a no-no.</p>
<p>The only problem now is availability and price &#8211; the Titan Books reprints aren&#8217;t as widely available and they&#8217;re a bit expensive if you factor in how few issues are collected in each album. Also, they won&#8217;t look nearly as good on the shelf&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krank.se/?feed=rss2&#038;p=351</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kortrecension: Diaspora</title>
		<link>http://www.krank.se/?p=344</link>
		<comments>http://www.krank.se/?p=344#comments</comments>
		<pubDate>Sat, 09 Jun 2012 11:06:55 +0000</pubDate>
		<dc:creator>krank</dc:creator>
				<category><![CDATA[Kortrecensioner]]></category>
		<category><![CDATA[roleplaying]]></category>

		<guid isPermaLink="false">http://www.krank.se/?p=344</guid>
		<description><![CDATA[Spel: Diaspora Format: PDF Antal sidor: 270 Diaspora försöker fylla lite samma nisch som gamla Traveller, men använder ett mer abstraherat system och mer spelarinput. Det är väldesignat som regelsystem, men förklaras lite förvirrat och boken har inte direkt en optimal struktur. Systemet är faktiskt ruggigt bra och väldigt inspirerande. Synd bara att det är [...]]]></description>
				<content:encoded><![CDATA[<p><strong>Spel:</strong> <a href="http://www.vsca.ca/Diaspora/">Diaspora</a><a href="http://www.krank.se/wp-content/uploads/2012/06/Diaspora-EHP-Softcover-Cover-6x9-220.jpg"><img class="alignright  wp-image-345" style="margin: 10px 15px;" title="Diaspora EHP Softcover Cover 6x9 220" src="http://www.krank.se/wp-content/uploads/2012/06/Diaspora-EHP-Softcover-Cover-6x9-220-202x300.jpg" alt="" width="202" height="300" /></a></p>
<p><strong>Format:</strong> PDF</p>
<p><strong>Antal sidor:</strong> 270</p>
<p>Diaspora försöker fylla lite samma nisch som gamla Traveller, men använder ett mer abstraherat system och mer spelarinput. Det är väldesignat som regelsystem, men förklaras lite förvirrat och boken har inte direkt en optimal struktur. Systemet är faktiskt ruggigt bra och väldigt inspirerande. Synd bara att det är så anpassad för en spelstil som inte lockar mig, åtminstone inte som spelledare. Jag är glad att jag köpte det och kommer att ha kvar det i hyllan, men mer för inspiration än för att spela.</p>
<p>Spelet bygger på Fate och har en meta-ekonomi av poäng man får för att acceptera motgångar och betalar för att göra coola saker, lite förenklat. Funkar säkert bra om man inte hatar sådana mekaniker. Mekaniken som sådan är nämligen väldigt snyggt genomförd. Systemet simulerar det mesta med hjälp av &#8220;taggar&#8221; som kallas aspekter, ett rum som brinner har kanske aspekten &#8220;brinner&#8221;, och den kan då användas av t.ex. SL för att försvåra saker man försöker göra i området rent mekaniskt. Väldigt smart system.</p>
<p>Det använder också en skala från -6 till +6 för att mäta saker, och har en skala i ord för hur bra man lyckas med något. Jag tycker inte om sådana skalor eftersom de kräver att man omvandlar mellan siffror och ord flera gånger, när man kommunicerar regelsystem.</p>
<p>Det finns få eller inga sätt att befria spelarna från att använda systemet, och det tror jag är medvetet. Man vill involvera spelarna. Väldigt mycket av mekaniken är abstrakt metaspelande, där spelarna tar beslut snarare än rollpersonerna. Det är säkert kul, om man tycker sånt är kul.</p>
<p>Systemet för att skapa stjärnsystem är väldigt visuellt och enkelt men ger väldigt mycket bra output i form av information som inspirerar om varje system och relationerna mellan dem.</p>
<p>Layouten är snygg men väldigt tråkig. Jag vill ha illustrationer! Men jag gissar att budgeten för spelet inte var så stor, så jag förstår varför det inte är lika snyggt som t.ex. Coriolis.</p>
<p><strong>Omdöme:</strong> Antagligen det bästa rollspel jag inte känner för att spelleda.</p>
<p><strong>Betyg:</strong> 4/5</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krank.se/?feed=rss2&#038;p=344</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prometheus</title>
		<link>http://www.krank.se/?p=340</link>
		<comments>http://www.krank.se/?p=340#comments</comments>
		<pubDate>Mon, 04 Jun 2012 19:46:19 +0000</pubDate>
		<dc:creator>krank</dc:creator>
				<category><![CDATA[Kortrecensioner]]></category>
		<category><![CDATA[movies]]></category>

		<guid isPermaLink="false">http://www.krank.se/?p=340</guid>
		<description><![CDATA[Idag såg jag Prometheus. Här är en jättekort recension: Den var himla snygg, välskådespelad, och hade en plot lösare än diarré, som spretade och hattade hit och dit och vägrade följa upp någonting alls. Betyg: Skådespeleriet: 4/5 Miljöer och effekter: 5/5 Intrigen: 2/5 Scifihäftighet: 3/5 &#160; Mitt slutbetyg blir nog ändå 4/5. Men vafan. Spoiler: [...]]]></description>
				<content:encoded><![CDATA[<p>Idag såg jag Prometheus. Här är en jättekort recension: Den var himla snygg, välskådespelad, och hade en plot lösare än diarré, som spretade och hattade hit och dit och vägrade följa upp någonting alls.</p>
<p>Betyg:</p>
<p>Skådespeleriet: 4/5</p>
<p>Miljöer och effekter: 5/5</p>
<p>Intrigen: 2/5</p>
<p>Scifihäftighet: 3/5</p>
<p>&nbsp;</p>
<p>Mitt slutbetyg blir nog ändå 4/5. Men vafan.</p>
<p>Spoiler:</p>
<p>Varför pratar ingen om att huvudpersonen just födde en FUCKING ALIEN? Det är som att det finns en tyst överenskommelse: &#8220;the first rule of Alien Club&#8230;&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krank.se/?feed=rss2&#038;p=340</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jehovasvittne på besök!</title>
		<link>http://www.krank.se/?p=336</link>
		<comments>http://www.krank.se/?p=336#comments</comments>
		<pubDate>Thu, 31 May 2012 15:46:00 +0000</pubDate>
		<dc:creator>krank</dc:creator>
				<category><![CDATA[:krank]]></category>

		<guid isPermaLink="false">http://www.krank.se/?p=336</guid>
		<description><![CDATA[Jag fick besök av mitt vittne idag! Det är en rätt beskedlig karl. Det här fick jag veta idag: 1. Min första fråga var, i stort sett, “vad är ert mål”. Min teori var nämligen att det mer handlade om att döva samvetet och göra som Gud säger än om att egentligen vilja frälsa folk. [...]]]></description>
				<content:encoded><![CDATA[<p>Jag fick besök av mitt vittne idag! Det är en rätt beskedlig karl. Det här fick jag veta idag:</p>
<p>1. Min första fråga var, i stort sett, “vad är ert mål”. Min teori var nämligen att det mer handlade om att döva samvetet och göra som Gud säger än om att egentligen vilja frälsa folk. Jag hade till hälften rätt; om det mitt vittne säger stämmer, så har de ett tvåfaldigt mål; dels försöka få in så många som möjligt av de som är mottagliga, dels kunna ha ett rent samvete efter att åtminstone ha försökt att informera resten.</p>
<p>2. De räknar med ungefär 1 års arbete för att omvända någon. Och då har vi räknat mantimmar, alltså. Detta baserat på antal mantimmar som spenderas på missionerandet kontra antalet omvända per år. “Men i Sverige tror jag det är närmare 10 år”. Och de tror att det här är det mest effektiva sättet att missionera.</p>
<p>3. Mitt vittne hade en förvånansvärt korrekt syn på den vetenskapliga processen och hur det här med teori, observation och revidering etc fungerar. Han har dock hakat upp sig lite på det här med evolutionsläran, och gav mig en fin liten bok som bland annat påstår att experiment som gjorts för att bevisa evolutionsläran “misslyckats”, och att det är omöjligt för liv att uppstå i vatten. Boken heter “Liv – ett resultat av evolution eller skapelse?” Jag skulle uppskatta väldigt om någon hade en länk till en bra genomgång av boken, framför allt dess källor: den är helt uppenbart riktad mot de jobbiga jävlar som inte går med på svepande trams om ögon och bananflugor, och är full av hänvisningar. Jag ska försöka ta mig igenom den när jag hinner, och försöka kolla upp några av källorna…</p>
<p>4. Vi var överens om att svenskar genom skolsystem etc får i sig vissa värderingar och så. Han tyckte att det var dåligt att hans dotter (som var med förra gången. Gissar lågstadiet) inte fick läsa “källkritiskt” om evolutionsteorin.</p>
<p>5. Jag eftersöker också någon praktisk liten skrift med vettiga evolutionsteoretiska argument eller kanske bara allmänvetenskapliga. Som jag kan ge honom. Han och jag är väldigt överens om att det är OK för mig att försöka omvända honom, i och med att det är han som frivilligt kommer till min dörr.</p>
<p>6. Han upplever Jehovas som en platt organisation som inte lägger sig i hur han lever sitt liv. Det kan jag såklert inte säga emot; jag har aldrig varit med i organisationen.</p>
<p>Nästa gång funderar jag på att prata bögerier med honom. Och lesbianism, och djur. Och det här med att ha på sig kläder med olika textilier och att äta skaldjur. Och översättningar.</p>
<p>All in all, ett ganska trevligt möte. Jag har inget alls emot mitt vittne. Han är förhållandevis vettig jämfört med andra vittnen jag träffat, verkar ändå erkänna det vettiga i den vetenskapliga metoden och så.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krank.se/?feed=rss2&#038;p=336</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tankar kring SCUM</title>
		<link>http://www.krank.se/?p=332</link>
		<comments>http://www.krank.se/?p=332#comments</comments>
		<pubDate>Wed, 23 Nov 2011 06:14:11 +0000</pubDate>
		<dc:creator>krank</dc:creator>
				<category><![CDATA[Politik]]></category>

		<guid isPermaLink="false">http://www.krank.se/?p=332</guid>
		<description><![CDATA[Det kan väl knappast ha undgått någon att det pratats mycket om Valerie Solanas SCUM-manifest på sista tiden; eller mer exakt Turteaterns uppsättning av manifestet i pjäsform. Jag kan tyvärr säga att en del av reaktionerna varit&#8230; tja, inte helt överraskande, men förtvivlat frustrerande likafullt. Så, jag tänkte dela med mig av mina egna funderingar. [...]]]></description>
				<content:encoded><![CDATA[<p>Det kan väl knappast ha undgått någon att det pratats mycket om Valerie Solanas SCUM-manifest på sista tiden; eller mer exakt Turteaterns uppsättning av manifestet i pjäsform. Jag kan tyvärr säga att en del av reaktionerna varit&#8230; tja, inte helt överraskande, men förtvivlat frustrerande likafullt.</p>
<p>Så, jag tänkte dela med mig av mina egna funderingar. Framför allt är det här reaktioner på saker som ifrågasatts, men förhoppningsvis är det läsbart ändå.</p>
<p><span id="more-332"></span></p>
<p><strong>Underordning</strong></p>
<p>SCUM-manifestet är resultatet av ett plågat liv. Plågat av sjukdom, och av trauma. Det tycker jag att man bör komma ihåg. Solanas slår ur underläge; visar sin frustration genom en våldsam fantasi. Det gjorde Marquis de Sade också &#8211; ni vet, killen som på allvar hade åsikten att alla skulle ha rätten att våldta precis den de ville, på det sätt de ville, och den enda rättighet offret skulle ha var att få göra samma sak tillbaks.</p>
<p>Marquis DeSade ifrågasätts inte på samma vis.</p>
<p>Men nå; grejen är här att Solanas både genom sin könstillhörighet och de fruktansvärda händelser hon varit med om befinner sig i och slår ur ett underläge. Plötsligt har jämställdisterna, ni vet de som tycker att Per Ström är det bästa sedan Caligula kom på DVD, blivit postmodernister. &#8220;Amen vaddå underläge? Vem bestämmer vem som är i underläge?&#8221; Varpå jag ställer mig frågan huruvida de verkligen är inkapabla att greppa att en sådan sak som ett underläge skulle kunna finnas, liksom på riktigt. Att här hänvisa till att Hitler också tyckte att han var i underläge är riktigt, riktigt smaklöst.</p>
<p>Det finns något sådant som ett underläge; där en person eller en grupp har mer makt över en annan person eller grupp än vice versa. Jag är själv rätt postmodernistisk av mig, men nånstans finns det gränser&#8230;</p>
<p><strong>Skolföreställning</strong></p>
<p>Det har gapats massor om att de som sätter upp pjäsen (alternativt &#8220;statsfeministerna&#8221;) vill &#8220;tvinga&#8221; svenska skolungdomar, framför allt då killar, att gå och &#8220;bli mobbade&#8221;. Jag undrar om de som har den åsikten förstår hur en skolföreställning fungerar.</p>
<p>För det första <em>erbjuder</em> teatern skolföreställningar. Det betyder att intresserade skolor/lärare kan boka in sig. Det finns alltså väldigt, väldigt lite tvång inblandat här, vare sig från Turteatern eller från &#8220;statsfeminismen&#8221;. De enda som möjligen skulle kunna göra tvingandet är alltså enskilda lärare i samråd med skolledning.</p>
<p>Som lärare vet jag att det är ett ganska ordentligt projekt att ta med sig ungdomar på teater. Inget man gör i en handvändning. Hur många kompetenta lärare drar med sig sina barn till kvinnohataren Strindbergs pjäser utan att ha diskuterat saken först? Utan efterarbete? Inte många. Jag tycker att det är anmärkningsvärt att vi hört noll och intet från eventuella lärare och skolklasser som valt att utnyttja erbjudandet om skoluppsättning. Jag skulle vilja veta hur det tagits emot; känner sig de killar som sett pjäsen mobbade? Eller är det jämställdister som får bestämma att sagda killar bör, eller ska, känna sig mobbade?</p>
<p>(Jag har själv varit mobbad. På riktigt. Jag blir ganska förbannad av det här oerhört respektlösa sättet att använda ordet.)</p>
<p><strong>Vad jag tycker om manifestet och föreställningen</strong></p>
<p>Jag har inte sett föreställningen, och kommer inte att ha tid att göra det heller. Jag har inte heller haft tid att läsa hela manifestet, tyvärr. MEN: jag sympatiserar inte med de åsikter och värderingar manifestet ger uttryck för. Jag ser det inte som en politisk skrift, utan som ett rop på hjälp. Och jag tycker att det har relevans i och med att det så ofta refereras till av framför allt antifeminister. Det finns en folkbildningstanke här. Jag tycker att amn som feminist BÖR lära manifestet. Eller se det som en föreställning. Varför? För att kunna ta avstånd på ett trovärdigt sätt. För att kunna förklara sig när jämställdisterna börjar påstå att alla feminister tycker som Solanas.</p>
<p>Om jag läser en bok skriven av en mörkhyad som led i sydafrikas Apartheid, och han där uttrycker en önskan om att utöva våld på alla vita, så håller jag inte med honom. Men jag förstår hans situation, var han kommer från. Och jag tycker att hans röst förtjänar att höras.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krank.se/?feed=rss2&#038;p=332</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The hunt for something to write in</title>
		<link>http://www.krank.se/?p=328</link>
		<comments>http://www.krank.se/?p=328#comments</comments>
		<pubDate>Mon, 24 Oct 2011 18:43:12 +0000</pubDate>
		<dc:creator>krank</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.krank.se/?p=328</guid>
		<description><![CDATA[I&#8217;m a software snob. I admit it. I can&#8217;t be like everyone else and just write everything in Word or even OpenOffice Writer&#8230; No, I have to be special. I have to set my standards so high that apparently there are no applications out there, apparently, that fit my criteria. And so I&#8217;m stuck. I [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m a software snob. I admit it. I can&#8217;t be like everyone else and just write everything in Word or even OpenOffice Writer&#8230; No, I have to be <em>special</em>. I have to set my standards so high that apparently there are no applications out there, apparently, that fit my criteria.</p>
<p>And so I&#8217;m stuck. I find myself not writing, simply because I don&#8217;t have the energy to move everything to a new format later. So to save time and energy, I&#8217;m doing nothing &#8211; or rather, I&#8217;m wasting a lot of time and energy on nothing.</p>
<p><span id="more-328"></span>These are the things I want:</p>
<ul>
<li>Basic formatting. Can be BBcode or LaTeX or whatever, doesn&#8217;t have to be WYSIWYG. I&#8217;m flexible.</li>
<li>Hierarchal navigation and/or ordering. My mind organizes things through hierarchies, and I need my software to do, too. Word&#8217;s Outline view is very nice. As are various Outline applications.</li>
<li>Online-sync. The ability to show others what I&#8217;ve written, preferably with the ability to let them comment on the text (gdocs-like). I&#8217;d like this to be as transparent as possible, not converting through a multitude of formats and then back.</li>
<li>The ability to edit the same documents on an Android tablet or phone. The OPML format is nice, but it&#8217;s hard to find apps that use it, and have proper export/import.</li>
<li>It&#8217;d be nice to be able to export to something InDesign can use. Preferably making use of the formating under bullet #1.</li>
</ul>
<p>Now, are these things REALLY that hard to get? Apparently.</p>
<p>Apparently, I need to choose. I&#8217;ve been searching for six months now, and I&#8217;m beginning to think that my best solution would be to just use plaintext files in a hierarchal folder system, synced by Dropbox. That would work, except for the comment-on-gdocs part. And the formatting-in-InDesign thing, unless I write HTML or InDesign Tagged Text in the plaintext files.</p>
<p>I have a very neat INDTT export plugin for DokuWiki, but DokuWiki is online-editing only and doesn&#8217;t have commenting functionality.</p>
<p>Google Docs has comments, but its HTML export is crap and there seems to be few or no Android apps capable of offline syncing <em>and</em> respecting the folder hierarchy at the same time.</p>
<p>Vault3 is a neat outliner, but lacks commenting and exports only to SQlite or a homebrew XML format.</p>
<p>Checkvist s a nice online outliner, and exports OPML, but almost no other software seems to use OPML. And there&#8217;s no commenting.</p>
<p>What have I missed? Or should I just man up and get back to my wiki, or to gdocs? Or should I waste time trying to put together something that leverages the power of gdocs, dokuwiki and plaintext editing on the Andoid all in one?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krank.se/?feed=rss2&#038;p=328</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
