<?xml version="1.0"?>
<rss version="2.0">
<channel>
  <title>Markus&#039; Blog - programming tag</title>
  <link>http://www.tower-net.de:80/blog/tags/programming/</link>
  <description>Frenzied programming..., tech..., climbing..., sports..., mountain..., nature... and futile notes</description>
  <language>en</language>
  <copyright>Markus Kolb</copyright>
  <lastBuildDate>Wed, 20 Jul 2011 18:43:00 GMT</lastBuildDate>
  <generator>Pebble (http://pebble.sourceforge.net)</generator>
  <docs>http://backend.userland.com/rss</docs>
  
  <image>
    <url>http://www.tower-net.de/blog/favicon.ico</url>
    <title>Markus&#039; Blog</title>
    <link>http://www.tower-net.de:80/blog/</link>
  </image>
  
  
  <item>
    <title>Amazon EC2 boot script to associate elastic ip</title>
    <link>http://www.tower-net.de:80/blog/2011/07/20/1311187380000.html</link>
    
      
      
        <description>
          After installation of the AWS API tools you can associate an elastic ip address to the instance from the instance itself during boot process.&lt;br /&gt;
&lt;br /&gt;
I&#039;ve written an SysV RC script.&lt;p&gt;&lt;a href=&#034;http://www.tower-net.de:80/blog/2011/07/20/1311187380000.html&#034;&gt;Read more...&lt;/a&gt;&lt;/p&gt;
        </description>
      
    
    
    
    <category>os_unix</category>
    
    <category>tech</category>
    
    <category>programming</category>
    
    <comments>http://www.tower-net.de:80/blog/2011/07/20/1311187380000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2011/07/20/1311187380000.html</guid>
    <pubDate>Wed, 20 Jul 2011 18:43:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Reform the JCP</title>
    <link>http://www.tower-net.de:80/blog/2010/11/03/1288799280000.html</link>
    
      
        <description>
          Dan Allen and Lincoln Baxter like to have a reformation of the JCP.&lt;br /&gt;
With this &lt;a href=&#034;http://ocpsoft.com/opensource/open-letter-to-the-jcp-executive-committee-calling-for-jcp-reform/&#034;&gt;article&lt;/a&gt; they want to make their position clear.&lt;br /&gt;
It is demanded nearly a total turnaround from the current process to an open, better community ruled process.&lt;br /&gt;
A better way would be to make small steps for opening the process peu &amp;agrave; peu.&lt;br /&gt;
Although I don&#039;t completely confirm their petition, but it would be cooler than the current situation, I&#039;ve signed their &lt;a href=&#034;http://www.petitiononline.com/fixjcp/petition.html&#034;&gt;petition&lt;/a&gt; online.
        </description>
      
      
    
    
    
    <category>tech</category>
    
    <category>programming</category>
    
    <comments>http://www.tower-net.de:80/blog/2010/11/03/1288799280000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2010/11/03/1288799280000.html</guid>
    <pubDate>Wed, 03 Nov 2010 15:48:00 GMT</pubDate>
  </item>
  
  <item>
    <title>vim tab settings</title>
    <link>http://www.tower-net.de:80/blog/2010/11/03/1288783500000.html</link>
    
      
        <description>
          Useful tab settings vor the &lt;a href=&#034;http://www.vim.org/&#034;&gt;vim&lt;/a&gt; editor:&lt;br /&gt;
&lt;br /&gt;
:set tabstop=4 softtabstop=4 shiftwidth=4 expandtab
        </description>
      
      
    
    
    
    <category>programming</category>
    
    <comments>http://www.tower-net.de:80/blog/2010/11/03/1288783500000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2010/11/03/1288783500000.html</guid>
    <pubDate>Wed, 03 Nov 2010 11:25:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Oneliner to handle file system limitations on file move</title>
    <link>http://www.tower-net.de:80/blog/2010/10/31/1288481460000.html</link>
    
      
        <description>
          A simple oneliner to move files to a file size limited file system (e.g. 2Gb)...&lt;br /&gt;
destdir=/destinationdir/../.. ; for f in * ; do s=$(stat -c %s &amp;quot;$f&amp;quot;) ; if [ $s -ge $((2*1000*1000*1000)) ] ; then 7z a -mx=0 -tzip -v2000m &amp;quot;$destdir&amp;quot;/&amp;quot;$f&amp;quot;.zip&amp;nbsp; &amp;quot;$f&amp;quot; ; else mv -v &amp;quot;$f&amp;quot; &amp;quot;$destdir&amp;quot;/&amp;quot;$f&amp;quot; ; fi ; done
        </description>
      
      
    
    
    
    <category>os_unix</category>
    
    <category>programming</category>
    
    <comments>http://www.tower-net.de:80/blog/2010/10/31/1288481460000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2010/10/31/1288481460000.html</guid>
    <pubDate>Sat, 30 Oct 2010 23:31:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Java 7 supports creating symbolic links</title>
    <link>http://www.tower-net.de:80/blog/2010/07/06/1278442200000.html</link>
    
      
        <description>
          Just discovered at&lt;br /&gt;
&lt;a href=&#034;http://openjdk.java.net/projects/nio/javadoc/java/nio/file/Path.html#createSymbolicLink%28java.nio.file.Path,%20java.nio.file.attribute.FileAttribute...%29&#034;&gt;http://openjdk.java.net/projects/nio/javadoc/java/nio/file/Path.html#...&lt;/a&gt;&lt;br /&gt;
that Java 7 might support the developer in creating symbolic links to  files and directories.
        </description>
      
      
    
    
    
    <category>os_unix</category>
    
    <category>programming</category>
    
    <comments>http://www.tower-net.de:80/blog/2010/07/06/1278442200000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2010/07/06/1278442200000.html</guid>
    <pubDate>Tue, 06 Jul 2010 18:50:00 GMT</pubDate>
  </item>
  
  <item>
    <title>DWH n days ago up to now</title>
    <link>http://www.tower-net.de:80/blog/2010/04/20/1271748000000.html</link>
    
      
        <description>
          To query data for a datawarehouse report starting at n-days ago at midnight up to newest available data, I can use the following SQL:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;timestamp(char(date(current timestamp - 2 days)) concat &#039;-00.00.00.000000&#039;)
        </description>
      
      
    
    
    
    <category>tech</category>
    
    <category>programming</category>
    
    <comments>http://www.tower-net.de:80/blog/2010/04/20/1271748000000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2010/04/20/1271748000000.html</guid>
    <pubDate>Tue, 20 Apr 2010 07:20:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Snoop USB data stream in Linux</title>
    <link>http://www.tower-net.de:80/blog/2010/02/10/1265817780000.html</link>
    
      
        <description>
          Greg Kroah-Hartman provided some older article to use printk in the USB driver of the Linux kernel to output complete data: &lt;a href=&#034;http://www.linuxjournal.com/article/7582?page=0,0&#034;&gt;http://www.linuxjournal.com/article/7582?page=0,0&lt;/a&gt;
        </description>
      
      
    
    
    
    <category>os_unix</category>
    
    <category>programming</category>
    
    <comments>http://www.tower-net.de:80/blog/2010/02/10/1265817780000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2010/02/10/1265817780000.html</guid>
    <pubDate>Wed, 10 Feb 2010 16:03:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Yipiiih - first successful deployment</title>
    <link>http://www.tower-net.de:80/blog/2009/11/06/1257528660000.html</link>
    
      
        <description>
          An hour ago I&#039;ve got our new Latte2 build environment to successful deploy the first application.&lt;br /&gt;
This has been a long way and there is still some work to be done next week.&lt;br /&gt;
But now I think it&#039;ll become a full success.
        </description>
      
      
    
    
    
    <category>programming</category>
    
    <category>was</category>
    
    <comments>http://www.tower-net.de:80/blog/2009/11/06/1257528660000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2009/11/06/1257528660000.html</guid>
    <pubDate>Fri, 06 Nov 2009 17:31:00 GMT</pubDate>
  </item>
  
  </channel>
</rss>

