<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
    <channel>
        <title>arved&apos;s weblog</title>
        <link>http://arved.priv.at/weblog/</link>
        <description></description>
        <language>en</language>
        <copyright>Copyright 2012</copyright>
        <lastBuildDate>Mon, 13 Feb 2012 15:00:27 +0100</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>annoying things in GIT</title>
            <description><![CDATA[<p>git does not display moves per default.</p>

<p>Workaround:<br />
<pre><br />
git config alias.lof "log --follow"<br />
</pre></p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2012/02/annoying-things.html</link>
            <guid>http://arved.priv.at/weblog/archives/2012/02/annoying-things.html</guid>
            
            
            <pubDate>Mon, 13 Feb 2012 15:00:27 +0100</pubDate>
        </item>
        
        <item>
            <title>Formatting Dates in JExcel</title>
            <description><![CDATA[<p>Jexcel has an annoying Feature: It exports Dates always as UTC.</p>

<p>They have published some kind of workaround for reading Excelfiles, but it does not work for Writing Excel files.</p>

<p>My workaround:<br />
<pre><br />
TimeZone tz = TimeZone.getDefault();<br />
int offset = tz.getOffset(date.getTime());<br />
Calendar cal = new GregorianCalendar();<br />
cal.setTime(date);<br />
cal.add(Calendar.MILLISECOND, offset);<br />
DateTime datetime = new DateTime(j,i, cal.getTime());<br />
WritableCellFormat cf = new WritableCellFormat(df);<br />
datetime.setCellFormat(cf);<br />
</pre></p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2011/11/formatting-date.html</link>
            <guid>http://arved.priv.at/weblog/archives/2011/11/formatting-date.html</guid>
            
            
            <pubDate>Thu, 24 Nov 2011 12:24:50 +0100</pubDate>
        </item>
        
        <item>
            <title>Useful Thunderbird Addons</title>
            <description><![CDATA[<p>* Display Mail User Agent<br />
* Enigmail<br />
* Lightning<br />
* SmartTemplate</p>

<p>On Kubuntu:<br />
* Theme Font & Size Changer</p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2011/10/useful-thunderb.html</link>
            <guid>http://arved.priv.at/weblog/archives/2011/10/useful-thunderb.html</guid>
            
            
            <pubDate>Tue, 18 Oct 2011 16:24:28 +0100</pubDate>
        </item>
        
        <item>
            <title>Things not working in Ubuntu oneirc </title>
            <description><![CDATA[<p>* Upgrading the flashplugin. Solution: deinstall the flashplugin before doing a system upgrade</p>

<p>* Nvidia-Twinview + unity. Solution: Don't use unity<br />
* Migrating .kde from 4.6 to 4.7: So far none, i made a new user<br />
* Booting is hanging for 2minutes if there is no network connection.<br />
Solution: So far none. </p>

<p>Resume: Don't upgrade now</p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2011/10/things-not-work.html</link>
            <guid>http://arved.priv.at/weblog/archives/2011/10/things-not-work.html</guid>
            
            
            <pubDate>Mon, 17 Oct 2011 18:57:54 +0100</pubDate>
        </item>
        
        <item>
            <title>Modifying Keyboard layouts on Ubuntu</title>
            <description><![CDATA[<p>1. Modify the layouts in /usr/share/X11/xkb/symbols<br />
2. Delete xkm files in /var/lib/xkb/*<br />
3. Call setxkbmap</p>

<p>All the tutorials on the internet don't mention the xkm files, so it took me some time time to find out, why my changes were not applied.</p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2011/04/modifying-keybo.html</link>
            <guid>http://arved.priv.at/weblog/archives/2011/04/modifying-keybo.html</guid>
            
            
            <pubDate>Wed, 13 Apr 2011 09:03:29 +0100</pubDate>
        </item>
        
        <item>
            <title>jboss5 + seam on FreeBSD</title>
            <description><![CDATA[<ol>
	<li>Install jboss5 port</li>
<li>ln -sf /var/jboss5 /usr/local/share/jboss5/server</li>
<li>edit /etc/rc.conf: 
<pre>
jboss5_enable="YES"
jboss5_jvm_opts="-server -Xms128m -Xmx512m -XX:MaxPermSize=256m \
-Dorg.jboss.resolver.warning=true \
-Dsun.rmi.dgc.client.gcInterval=3600000 \
-Dsun.rmi.dgc.server.gcInterval=3600000 -Djboss.bind.address=0.0.0.0 \
-Djava.awt.headless=true"
</pre>
Notice the jboss.bind.address and java.awt.headless=true (to prevent annoying warnings about missing X11).
<li>Edit /etc/sysctl.conf:
<pre>
kern.ps_arg_cache_limit=1024
</pre>Necessary for the shutdown script to work</li>
<li>Add <pre>jboss.home=/usr/local/share/jboss5</pre> to seam's build.properties</li>
<li>...to be continued</li>
</ol>]]></description>
            <link>http://arved.priv.at/weblog/archives/2010/11/jboss5-seam-on-.html</link>
            <guid>http://arved.priv.at/weblog/archives/2010/11/jboss5-seam-on-.html</guid>
            
            
            <pubDate>Fri, 12 Nov 2010 17:49:29 +0100</pubDate>
        </item>
        
        <item>
            <title>New tool discovered: pftop</title>
            <description><![CDATA[<p>Long time no blog...</p>

<p>Today i discovered a nifty litte tool: <a href="http://www.eee.metu.edu.tr/~canacar/pftop/">pftop</a> written by Can Erkin Acar lets you monitor network connections on your pf firewall.</p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2010/11/new-tool-discov.html</link>
            <guid>http://arved.priv.at/weblog/archives/2010/11/new-tool-discov.html</guid>
            
            
            <pubDate>Tue, 02 Nov 2010 21:52:41 +0100</pubDate>
        </item>
        
        <item>
            <title>MT 5.02</title>
            <description><![CDATA[<p>I am considering dropping maintainership, since i will not have much time the next months.</p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2010/05/mt-502.html</link>
            <guid>http://arved.priv.at/weblog/archives/2010/05/mt-502.html</guid>
            
            
            <pubDate>Sun, 30 May 2010 16:59:19 +0100</pubDate>
        </item>
        
        <item>
            <title>MT 5.01</title>
            <description><![CDATA[<p>Another major release of Movable Type. This is the obligatory testposting.</p>

<p>The webfrontend seems to look more clear, but it feels again very slow and bloaty.</p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2010/02/mt-501.html</link>
            <guid>http://arved.priv.at/weblog/archives/2010/02/mt-501.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">About this Blog</category>
            
            
            <pubDate>Sat, 06 Feb 2010 22:34:20 +0100</pubDate>
        </item>
        
        <item>
            <title>Bustraveling in Turkey</title>
            <description><![CDATA[<p>I recently traveled a week in Turkey by bus. Here are my experiences:</p>

<p><b>Metro</b>: Traveld Kapıkule/Edirne-Istanbul, Kapıkule/Edirne-Bursa. Sales Office Experience: <!-- People at the Metro Counter in Sofia are very friendly and speak English -->. At the Metro Haskovo Counter they speak understandable Turkish and are also very friendly. At the Edirne Counter  (Metro Volkan) personal was very stressed and unfriendly. Avoid travelling to or from Edirne with Metro anyway, the bus stops somewhere on the highway, if it stops (In my case it didn't which resulted in some adventourus hitchhiking to Haskovo).</p>

<p><b>Ulusoy</b>: Traveled Bursa-Ankara. Sales Office Bursa was friendly, but the Conductor was not very friendly and threw his garbage out into the nature.  Ulusoy uses its own otogar in Ankara, which is not really convenient.</p>

<p><b>Kamil Koc</b>: Traveled Ankara-Canakkale. Not the fastes but the most luxurious bus with personal TV stations and a big plus for the head phones.</p>

<p><b>Canakkale Truva/Soma Seyahat</b>: Traveled Canakkale-Edirne: Unprofessional counter personal. Suicidal driver. I am lucky i survived.</p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2009/10/bustraveling-in.html</link>
            <guid>http://arved.priv.at/weblog/archives/2009/10/bustraveling-in.html</guid>
            
            
            <pubDate>Tue, 06 Oct 2009 16:20:50 +0100</pubDate>
        </item>
        
        <item>
            <title>MT 4.31 released</title>
            <description><![CDATA[<p>If everything works, port will be upgraded in a few minutes.</p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2009/08/mt-431-released.html</link>
            <guid>http://arved.priv.at/weblog/archives/2009/08/mt-431-released.html</guid>
            
            
            <pubDate>Mon, 31 Aug 2009 10:07:11 +0100</pubDate>
        </item>
        
        <item>
            <title>Movable Type 2.61 released</title>
            <description></description>
            <link>http://arved.priv.at/weblog/archives/2009/06/movable-type-26.html</link>
            <guid>http://arved.priv.at/weblog/archives/2009/06/movable-type-26.html</guid>
            
            
            <pubDate>Sat, 20 Jun 2009 15:27:18 +0100</pubDate>
        </item>
        
        <item>
            <title>Fighting for (battery) power</title>
            <description><![CDATA[<p>Alexander Motin describes in <a href="http://lists.freebsd.org/pipermail/freebsd-current/2009-May/006436.html">this useful post</a> how to save power on FreeBSD laptops.</p>

<p>It makes me want a FreeBSD laptop again....</p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2009/05/fighting-for-ba.html</link>
            <guid>http://arved.priv.at/weblog/archives/2009/05/fighting-for-ba.html</guid>
            
            
            <pubDate>Sun, 10 May 2009 11:24:17 +0100</pubDate>
        </item>
        
        <item>
            <title>MT 4.25 released.</title>
            <description><![CDATA[<p>Testentry. If it works, the FreeBSD port will be upgraded soon.</p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2009/03/mt-425-released.html</link>
            <guid>http://arved.priv.at/weblog/archives/2009/03/mt-425-released.html</guid>
            
            
            <pubDate>Sun, 29 Mar 2009 19:00:07 +0100</pubDate>
        </item>
        
        <item>
            <title>last.fm wants my $$$</title>
            <description><![CDATA[<p><a href="http://blog.last.fm/2009/03/24/lastfm-radio-announcement">Since i am not living in de/uk/US last.fm wants to force me to subscribe again</a>.</p>

<p>Probably i will spend some minutes on trying to get the last.fm proxy working on my server. </p>

<p>But because most of the users with similar or interesting taste don't live in the three markets and the music catalogue will probably also focus on the three big markets. I guess last.fm will be boring in the future.</p>

<p>Looking for alternatives now...</p>]]></description>
            <link>http://arved.priv.at/weblog/archives/2009/03/lastfm-wants-my.html</link>
            <guid>http://arved.priv.at/weblog/archives/2009/03/lastfm-wants-my.html</guid>
            
            
            <pubDate>Thu, 26 Mar 2009 12:24:30 +0100</pubDate>
        </item>
        
    </channel>
</rss>

