<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="https://www.kargl.net"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Frank Kargl&#039;s Homepage</title>
 <link>https://www.kargl.net</link>
 <description>This is my little place in the World Wide Web. Here I store some personal information and data to distribute.</description>
 <language>en</language>
<item>
 <title>Informatik an Hamburger Schulen kein Pflichtfach mehr</title>
 <link>https://www.kargl.net/node/169</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;Informatik spielt in den Schulen wohl keine große Rolle mehr, zumindest schafft es Hamburg gerade als Pflichtfach ab.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.heise.de/newsticker/meldung/Hamburg-wertet-Informatik-als-Schulfach-ab-1873399.html&quot;&gt;http://www.heise.de/newsticker/meldung/Hamburg-wertet-Informatik-als-Sch...&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Von einem Pflichtfach Informatik können wir in BaWue natürlich nur träumen. Die Leute, die über solche Dinge entscheiden, scheinen dabei nur eingeschrÃ¤nkt Ã¼ber Sachkompetenz zu verfÃ¼gen: &lt;/p&gt;
&lt;p&gt;Walter Scheuerl, Vorsitzender des Schulausschusses der Hamburger BÃ¼rgerschaft lÃ¤sst jedenfalls per Twitter verlauten, Informatik wÃ¤re wie Mechanik ein Teil der Physik und brÃ¤uchte deswegen kein eigenes Schulfach:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://mobile.twitter.com/Walter_Scheuerl/status/339817809183924224&quot;&gt;https://mobile.twitter.com/Walter_Scheuerl/status/339817809183924224&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Einige weitere Absonderlichkeiten finden sich dort ebenfalls. Als Informatik Professor fehlen mir ehrlich gesagt ein wenig die Worte, so absurd erscheint mir eine solche These. Genauso kÃ¶nnte man behaupten, Mathematik wÃ¼rde schon im Erdkundeunterricht ausreichend abgedeckt oder man benÃ¶tige keine Biologie mehr, weil die Entstehung der Arten ja schon in Religion diskutiert wÃ¼rde.&lt;/p&gt;
&lt;p&gt;Die GrÃ¼nde fÃ¼r ein anhaltend niedriges Interesse am Studiengang Informatik liegen bei einer solchen WertschÃ¤tzung bei Vertretern des Bildungssystems wohl auf der Hand.&lt;/p&gt;
&lt;p&gt;Wobei wir hier ein Henne Ei Problem haben: wie soll jemand, der in keiner Weise verstanden hat, was Informatik eigentlich ist, weil er damit nie in Kontakt gekommen ist, Ã¼ber die Relevanz von Informatik im Schulcurriculum entscheiden?&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Thu, 30 May 2013 21:20:24 +0000</pubDate>
 <dc:creator>fkargl</dc:creator>
 <guid isPermaLink="false">169 at https://www.kargl.net</guid>
 <comments>https://www.kargl.net/node/169#comments</comments>
</item>
<item>
 <title>Tuning Mac OS Snow Leopard for SSD</title>
 <link>https://www.kargl.net/node/141</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;&lt;strong&gt;Perform these changes at own risk! You may wreck your system, so make sure to have a current backup!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I just upgraded my mid 2010 15&quot; Macbook Pro with an OCZ Vertex 2 SSD and 8 GB of RAM. Browsing the net for hints how to optimize the system when using an SSD, I applied the following changes to my system:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Installed Trim Enabler from &lt;a href=&quot;http://www.groths.org/&quot;&gt;http://www.groths.org/&lt;/a&gt; to activate trim support on Snow Leo with non-Apple SSDs.&lt;/li&gt;
&lt;li&gt;Deactivated sudden motion sensor (only if you have no harddisks left in your system). Use &lt;code&gt;pmset -a sms 0&lt;/code&gt;. You can even store this in &lt;code&gt;/etc/rc.local&lt;/code&gt; to ensure it is not changed.&lt;/li&gt;
&lt;li&gt;
Mount the SSD filesystem with noatime option set. Write the following to a file &lt;code&gt;/Libary/LaunchDaemons/com.nullvision.noatime.plist&lt;/code&gt;:
&lt;p&gt;&lt;code&gt;&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;
&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;
&amp;lt;!DOCTYPE plist PUBLIC &quot;-//Apple//DTD PLIST 1.0//EN&quot;
        &quot;http://www.apple.com/DTDs/PropertyList-1.0.dtd&quot;&amp;gt;
&amp;lt;plist version=&quot;1.0&quot;&amp;gt;
    &amp;lt;dict&amp;gt;
        &amp;lt;key&amp;gt;Label&amp;lt;/key&amp;gt;
        &amp;lt;string&amp;gt;com.nullvision.noatime&amp;lt;/string&amp;gt;
        &amp;lt;key&amp;gt;ProgramArguments&amp;lt;/key&amp;gt;
        &amp;lt;array&amp;gt;
            &amp;lt;string&amp;gt;mount&amp;lt;/string&amp;gt;
            &amp;lt;string&amp;gt;-vuwo&amp;lt;/string&amp;gt;
            &amp;lt;string&amp;gt;noatime&amp;lt;/string&amp;gt;
            &amp;lt;string&amp;gt;/&amp;lt;/string&amp;gt;
        &amp;lt;/array&amp;gt;
        &amp;lt;key&amp;gt;RunAtLoad&amp;lt;/key&amp;gt;
        &amp;lt;true/&amp;gt;
    &amp;lt;/dict&amp;gt;
&amp;lt;/plist&amp;gt;
&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;
&lt;p&gt;followed by a&lt;/p&gt;
&lt;p&gt;&lt;code&gt;sudo chown root:wheel /Library/LaunchDaemons/com.nullvision.noatime.plist&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;There are also some things that I haven&#039;t tried out yet, but that might also speed up things or that might be beneficial to the lifetime of your SSD:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Remove sleepimage:
&lt;p&gt;&lt;code&gt;&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;
$ sudo pmset -a hibernatemode 0
$ sudo rm /var/vm/sleepimage
&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Be aware: this may result in data loss if running out of power during sleep as nothing is written persistently to disk.
&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;This blog entry describes in detail, how you can moving temporary dirs into a ramdisk: &lt;a href=&quot;http://blogs.nullvision.com/?p=357&quot;&gt;http://blogs.nullvision.com/?p=357&lt;/a&gt;
&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Most of the tips were taken from &lt;a href=&quot;http://blogs.nullvision.com/?p=275&quot;&gt;http://blogs.nullvision.com/?p=275&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Sun, 22 May 2011 13:02:41 +0000</pubDate>
 <dc:creator>fkargl</dc:creator>
 <guid isPermaLink="false">141 at https://www.kargl.net</guid>
 <comments>https://www.kargl.net/node/141#comments</comments>
</item>
<item>
 <title>Deadline Extension IEEE WIVEC 2011</title>
 <link>https://www.kargl.net/node/140</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;Please note that we have extended the call-for-papers deadline for the IEEE WIVEC 2011 by two weeks. The new deadline is March 14, 2011. For details and submissions, visit &lt;a href=&quot;http://www.ieeevtc.org/wivec2011/&quot;&gt;http://www.ieeevtc.org/wivec2011/&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 28 Feb 2011 14:41:49 +0000</pubDate>
 <dc:creator>fkargl</dc:creator>
 <guid isPermaLink="false">140 at https://www.kargl.net</guid>
 <comments>https://www.kargl.net/node/140#comments</comments>
</item>
<item>
 <title>Drupal 7</title>
 <link>https://www.kargl.net/node/138</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;I recently had a strong need for upgrading my server and I had the strange idea of also going to Drupal 7 when doing so. After some fighting with all the non-ported modules, I think most of my site (and some other sites, too) are running now nicely on the new platform.&lt;/p&gt;
&lt;p&gt;Still, I think the Drupal community deserves some criticism. The core Drupal system is really just that: the core. And they made the switch to a new major release without caring that a lot of the important modules (e.g., for inlining pictures, managing bibliography, ...) are more alpha than beta or not available at all. In general, the multitude of different modules (often doing the same things) is quite confusing for newcomers to the platform. IMHO Drupal should define a set of important modules and only do a new release when all those modules are also ready.&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Wed, 16 Feb 2011 14:24:18 +0000</pubDate>
 <dc:creator>fkargl</dc:creator>
 <guid isPermaLink="false">138 at https://www.kargl.net</guid>
 <comments>https://www.kargl.net/node/138#comments</comments>
</item>
<item>
 <title>27. VDI/VW Gemeinschaftstagung Automotive Security</title>
 <link>https://www.kargl.net/node/137</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;I am member of the program committee of the 27th joint VDI/VW symposium on Automotive Security (&lt;a href=&quot;http://www.vdi-wissensforum.de/index.php?id=102&amp;amp;user_vdiev_pi1[cmd]=single&amp;amp;user_vdiev_pi1[uid]=01TA102011&amp;amp;cHash=2b004dca35c61310e4bb9ccc7687a36e&quot;&gt;27. VDI/VW Gemeinschaftstagung Automotive Security&lt;/a&gt;) which is an excellent venue for (German) academics and industry to interface and discuss about the status of automotive security. The call for papers is still ongoing and closes on the 21.03.2011. Please consider if you want to submit a paper there (see website for submission).&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Wed, 16 Feb 2011 14:06:15 +0000</pubDate>
 <dc:creator>fkargl</dc:creator>
 <guid isPermaLink="false">137 at https://www.kargl.net</guid>
 <comments>https://www.kargl.net/node/137#comments</comments>
</item>
<item>
 <title>Applications</title>
 <link>https://www.kargl.net/applications-ut</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;You want to send me an application for an internship, PhD, or other position here at the University of Twente?&lt;/p&gt;
&lt;p&gt;Here are some things to keep in mind:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt; All specific job openings that we have are listed on the &lt;a href=&quot;http://www.utwente.nl/vacatures/en/&quot;&gt;central vacancies site&lt;/a&gt; of UT. You will also have to apply via this portal to any of these positions (not internships). &lt;/li&gt;
&lt;li&gt; If you apply for one of these vacancies, I expect you to send in an application that explicitly addresses the needs and requirements described in the job posting. I put a significant effort in creating a good description, so you should do so likewise in creating a good and specific application. &lt;/li&gt;
&lt;li&gt; In general, we do not hire people without having an explicit vacancy available. Exceptions may be, if you bring your own funding and/or are an outstanding candidate from an outstanding university with outstanding reference letters from outstanding colleagues. You get the idea? ;-) In both cases, you may send an email and we will discuss your case in detail. The more specifically your email addresses why you are the right candidate for us and we are the right place for you, the higher your chances of being read and considered.&lt;/li&gt;
&lt;li&gt; The same is valid for internships. &lt;/li&gt;
&lt;li&gt; I receive a lot of applications, most very unspecific, often not even mentioning my name, our University or group, or which position the candidate applies for. I consider this another form of impolite spam and just send you a reply pointing at this webpage. I hope you learn from it to raise your chances for future applications.&lt;/li&gt;
&lt;li&gt; If you haven&#039;t received an answer after 1 week, you may send an inquiry, but please do not just re-send your application in a second spam wave. &lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 24 Jan 2011 07:28:40 +0000</pubDate>
 <dc:creator>fkargl</dc:creator>
 <guid isPermaLink="false">136 at https://www.kargl.net</guid>
 <comments>https://www.kargl.net/applications-ut#comments</comments>
</item>
<item>
 <title>IEEE WiVEC 2011 - CfP</title>
 <link>https://www.kargl.net/node/134</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;I am also TPC Co-Chair of the 4th International Symposium on Wireless Vehicular Communications (&lt;a href=&quot;http://www.ieeevtc.org/wivec2011/&quot;&gt;IEEE WiVEC 2011&lt;/a&gt;). The CfP is just out and you can submit papers until February 28, 2011.&lt;/p&gt;
&lt;p&gt;Again, any additional advertisement you do among colleagues is highly appreciated, as is submitting a paper.&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Wed, 10 Nov 2010 09:34:47 +0000</pubDate>
 <dc:creator>fkargl</dc:creator>
 <guid isPermaLink="false">134 at https://www.kargl.net</guid>
 <comments>https://www.kargl.net/node/134#comments</comments>
</item>
<item>
 <title>Posters and Demos CfP - ACM WiSec 2011</title>
 <link>https://www.kargl.net/node/133</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;As poster and demo chair of the ACM Conference on Wireless Network Security (WiSec 2011), I want to highlight that the CfP is open and if you are working in this area, you should seriously consider submitting a full paper, poster, or demo their. You find all the details on the &lt;a href=&quot;http://www.sigsac.org/wisec/WiSec2011/&quot;&gt;conference webpage&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can submit full papers until December 1, 2010 and posters and demos until February 28, 2011.&lt;/p&gt;
&lt;p&gt;Please also spread the word as widely as possible.&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Wed, 10 Nov 2010 09:31:35 +0000</pubDate>
 <dc:creator>fkargl</dc:creator>
 <guid isPermaLink="false">133 at https://www.kargl.net</guid>
 <comments>https://www.kargl.net/node/133#comments</comments>
</item>
<item>
 <title>Resources on good presentation techniques</title>
 <link>https://www.kargl.net/node/131</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;As I regularly speak about this and take a strong personal interest in enhancing my presentation skills, I added a longer page on &lt;a href=&quot;/node/130&quot;&gt;good presentation techniques&lt;/a&gt; to my website.&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Tue, 03 Aug 2010 08:22:38 +0000</pubDate>
 <dc:creator>fkargl</dc:creator>
 <guid isPermaLink="false">131 at https://www.kargl.net</guid>
 <comments>https://www.kargl.net/node/131#comments</comments>
</item>
<item>
 <title>Privacy in ITS Applications Workshop in Berlin</title>
 <link>https://www.kargl.net/node/129</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;A last-minute notice: I am co-organizer of a &lt;a href=&quot;http://www.preciosa-project.org/index.php/workshop-details&quot;&gt;Privacy in ITS Applications Workshop&lt;/a&gt; that PRECIOSA is presenting on July 20 in Berlin, Germany. The &lt;a href=&quot;http://www.preciosa-project.org/index.php/workshop-agenda&quot;&gt;program&lt;/a&gt; is very interesting and there is still time to sign up.&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 12 Jul 2010 13:33:20 +0000</pubDate>
 <dc:creator>fkargl</dc:creator>
 <guid isPermaLink="false">129 at https://www.kargl.net</guid>
 <comments>https://www.kargl.net/node/129#comments</comments>
</item>
</channel>
</rss>
