<?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>Alexander Holbreich&#187; Personal</title> <atom:link href="http://alexander.holbreich.org/category/personal/feed/" rel="self" type="application/rss+xml" /><link>http://alexander.holbreich.org</link> <description>Everything becomes a little different as soon as it is spoken out loud.  ~Hermann Hesse</description> <lastBuildDate>Wed, 01 Feb 2012 22:44:21 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Jboss 7 setup on debian linux</title><link>http://alexander.holbreich.org/2011/11/jboss-7-setup-linux/</link> <comments>http://alexander.holbreich.org/2011/11/jboss-7-setup-linux/#comments</comments> <pubDate>Thu, 10 Nov 2011 20:29:33 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[JBoss]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[init.d]]></category> <category><![CDATA[open source]]></category> <category><![CDATA[setup]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=981</guid> <description><![CDATA[This is a short step by step explanation of the setup of JBoss 7.0.2 on your Linux (explicit debian). Nowadays there is still no official Debian package for JBoss 7 out there, so we have to do a couple of steps manually.  First i describe how to download and to prepare the jboss. Secondly we [...]]]></description> <content:encoded><![CDATA[<p><a href="http://alexander.holbreich.org/wp-content/uploads/2011/11/as7_logo.png?4c9b33"><img class="alignright size-full wp-image-1012" title="jboss7_logo" src="http://alexander.holbreich.org/wp-content/uploads/2011/11/as7_logo.png?4c9b33" alt="" width="128" height="150" /></a>This is a short step by step explanation of the setup of JBoss 7.0.2 on your Linux (explicit debian). Nowadays there is still no official Debian package for JBoss 7 out there, so we have to do a couple of steps manually.  First i describe how to download and to prepare the jboss. Secondly we do some basic configuration that you&#8217;ll be needed and at the end i will show you one of the ways to register JBoss as a service.</p><h3>1. download and prepare.</h3><p>Start by download  currently available version (7.0.2) of the JBoss 7.</p><pre class="brush: bash; title: ; notranslate">
#Web Profile version download.
wget http://download.jboss.org/jbossas/7.0/jboss-as-7.0.2.Final/jboss-as-web-7.0.2.Final.tar.gz
</pre><p>Extracting files to the final location <a title="Extracting tar, gzip, bzip2, z" href="http://alexander.holbreich.org/2009/02/tar-gzip/">using tar</a>.</p><p><span id="more-981"></span><pre class="brush: bash; title: ; notranslate">
&lt;pre&gt;tar zxvf jboss-as-web-7.0.2.Final.tar.gz -C /usr/local/
</pre><p>Now your JBoss 7 is placed inside /usr/local/jboss-as-web-7.0.2.Final/.I dont&#8217;t like that name.  It&#8217;s just cosmetics, but i prefer to rename the last part ot the path.</p><pre class="brush: bash; title: ; notranslate">
cd /usr/local/
mv jboss-as-web-7.0.2.Final/ jboss-7.0.2
</pre><p>Now important things. Some basic security and right management. I suppose  you don&#8217;t want to start your JBoss with root rights.<br /> Therefore we need to create new user and new group named  <em>jboss</em>. Make them owner of your JBoss stuff.</p><pre class="brush: bash; title: ; notranslate">
addgroup jboss
useradd -g jboss jboss
chown -R jboss:jboss /usr/local/jboss-7.0.2/
</pre><p>Your jboss 7 is almost installed now.</p><h3>2. Configuration and first test.</h3><p>Start your brand new  Jboss 7 server with:</p><pre class="brush: bash; title: ; notranslate">
sudo -u jboss sh /usr/local/jboss-7.0.2/bin/standalone.sh &amp;
</pre><p>Now it  is testable on your local machine with <em>http://localhost:8080.</em><br /> <strong>But!</strong> maybe you trying to install that jboss on remote machine and want to access this installation remotely. I that case you need to enable remote interface of your JBoss. I assume we start by standalone configuration, so  you have to edit <em>/usr/local/jboss-7.0.2/standalone/configuration/standalone.xml</em> file. The easiest way is to  find <em>&lt;interfaces&gt;</em> section and replace the 127.0.0.1 address with <em>&lt;any-address/&gt;</em></p><pre class="brush: xml; title: ; notranslate">
&lt;interfaces&gt;
   &lt;interface name=&quot;management&quot;&gt;
     &lt;any-address/&gt;
     &lt;/interface&gt;
   &lt;interface name=&quot;public&quot;&gt;
    &lt;any-address/&gt;
   &lt;/interface&gt;
 &lt;/interfaces&gt;
</pre><p>Beware with this configuration you expose also the management console to the public. The console is bounded to interface named=&#8221;management&#8221; by default.  In production environments you have to put more attention to this. but now you can access your jboss from anywhere.</p><h3>3. Jboss as Service</h3><p>Now we have a basic configured JBoss, but i want to maintain it as a service. Unfortunately Jboss archive has no predefined <em>init.d</em> scripts, so i have to to it on my own. But this is not a big problem, just straightforward following some Debian conventions and useful scripts.</p><p>Ok, let&#8217;s create jboss maintenance script.</p><pre class="brush: bash; title: ; notranslate">
touch /etc/init.d/jboss
chmod 755 /etc/init.d/jboss
</pre><p>Ready! Now put following inside.</p><pre class="brush: bash; title: ; notranslate">
#!/bin/sh
### BEGIN INIT INFO
# Provides: jboss
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Management of JBoss AS v7.x
### END INIT INFO

#Defining JBOSS_HOME
JBOSS_HOME=/usr/local/jboss-7.0.2

case &quot;$1&quot; in
start)
echo &quot;Starting JBoss AS7...&quot;
sudo -u jboss sh ${JBOSS_HOME}/bin/standalone.sh &amp;
;;
stop)
echo &quot;Stopping JBoss AS7...&quot;
sudo -u jboss sh ${JBOSS_HOME}/bin/jboss-admin.sh --connect command=:shutdown
;;
log)
echo &quot;Showing server.log...&quot;
tail -1000f ${JBOSS_HOME}/standalone/log/server.log
;;
*)
echo &quot;Usage: /etc/init.d/jboss {start|stop|log}&quot;
exit 1
;; esac
exit 0
</pre><p>This file is ready to use. You can use it self for manual start and stop of your jboss, you also can follow the server.log by using &#8220;log&#8221; parameter.<br /> But let&#8217;s make it to the end, as an automatic starting service. It&#8217;s easy with update-rc.d script:</p><pre class="brush: bash; title: ; notranslate">
update-rc.d jboss defaults
</pre><p>Now your ready and your JBoss will be shutdown on machine shutdown and it should start on machine start-up.</p><p>Of course this is not the only way to start using JBoss 7. Your ideas are welcome!</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2011/11/jboss-7-setup-linux/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Favorite Eclipse UML Plugin</title><link>http://alexander.holbreich.org/2011/08/favorite-eclipse-uml-plugin/</link> <comments>http://alexander.holbreich.org/2011/08/favorite-eclipse-uml-plugin/#comments</comments> <pubDate>Sun, 21 Aug 2011 21:06:00 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[java]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Software Engineering & Architecture]]></category> <category><![CDATA[architectural details]]></category> <category><![CDATA[class diagram]]></category> <category><![CDATA[eclipse]]></category> <category><![CDATA[eclipse ide]]></category> <category><![CDATA[ide]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[reverse engineering]]></category> <category><![CDATA[uml]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=957</guid> <description><![CDATA[What is your favorite Free or Open-Source UML Plug-in? Every year i try some of them and  remove them after few hours. As i remember, they where resource-hungry or just bad in reverse engineering Some weeks ago i tried ObjectAid UML Explorer Class Diagram and liked it. It could quick and easy create simple class [...]]]></description> <content:encoded><![CDATA[<p>What is your favorite Free or Open-Source UML Plug-in?</p><p>Every year i try some of them and  remove them after few hours. As i remember, they where resource-hungry or just bad in reverse engineering</p><p>Some weeks ago i tried <a href="http://www.objectaid.com/class-diagram">ObjectAid UML Explorer Class Diagram</a> and liked it. It could quick and easy create simple class Diagrams &#8211; just by Drag &amp; Drop. And i had no problems with static constructors or inner classes and other stuff in the code which causes problems to another Plug-ins.</p><p>Unfortunately Object Aid Sequence Diagram are not free but cost not much for private usage. Maybe i&#8217;ll try it soon.</p><p><strong>But first i would ask you what is your favorite Eclipse IDE Plug-in for fast and easy (e.g. partly) revers engineered UML diagrams which can be used to show some architectural details to your colleagues?</strong></p><p>Thank you for comments!</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2011/08/favorite-eclipse-uml-plugin/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Bootcharting</title><link>http://alexander.holbreich.org/2011/07/bootcharting/</link> <comments>http://alexander.holbreich.org/2011/07/bootcharting/#comments</comments> <pubDate>Sun, 10 Jul 2011 13:10:13 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[linux]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[boot]]></category> <category><![CDATA[bootchart]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=931</guid> <description><![CDATA[The pictureon the right (klick to enrange)  shows  how Ubunto boot process is going on my 5 years old Thinkpad T60. Bootchart utility does such charts automatically. If you interestiong how easy it it to enable such bootcharting read below. Installing bootchart See how to install bootchart logger on ubuntu, and other linux distributions. Yo [...]]]></description> <content:encoded><![CDATA[<pre><a href="http://alexander.holbreich.org/wp-content/uploads/2011/07/aho-ThinkPad-T60-natty-20110707-1.png?4c9b33"><img class="size-large wp-image-932 alignright" title="aho-ThinkPad-T60-natty-20110707-1" src="http://alexander.holbreich.org/wp-content/uploads/2011/07/aho-ThinkPad-T60-natty-20110707-1-213x1024.png?4c9b33" alt="" width="213" height="200" /></a></pre><p>The pictureon the right (klick to enrange)  shows  how Ubunto boot process is going on my 5 years old Thinkpad T60. Bootchart utility does such charts automatically. If you interestiong how easy it it to enable such bootcharting read below.</p><h2>Installing bootchart</h2><p>See how to install bootchart logger <a href="https://wiki.ubuntu.com/BootCharting">on ubuntu</a>, and <a href="http://www.bootchart.org/download.html">other linux distributions</a>.</p><p>Yo need bootchart and, pybootchartgui</p><pre class="brush: bash; title: ; notranslate">
apt-get install bootchart

apt-get install pybootchartgui
</pre><p><span id="more-931"></span></p><pre></pre><p>That will automatically add bootchart logger to your grub configuration . Restart your machine and look for an image file in /var/log/bootchart directory.</p><h2>Disabling bootchart</h2><p>Someday you maybe wan&#8217;t to disable bootchart again.</p><p>To disable it just throw it out of your GRUB configuration. On GRUB 2  (which is default on ubuntu since v. 9.10) you have to change file <strong>/etc/default/grub. </strong></p><p>Change line</p><pre>GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
to
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash bootchart=disable"</pre><p>and then run:</p><pre class="brush: bash; title: ; notranslate">
sudo update-grub
</pre><p>You done.</p><p>On GRUB 1 you have to edit <strong>/boot/grub/menu.lst.</strong></p><p style="text-align: center;"><strong>Any comments?</strong></p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2011/07/bootcharting/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>GIT</title><link>http://alexander.holbreich.org/2011/02/git/</link> <comments>http://alexander.holbreich.org/2011/02/git/#comments</comments> <pubDate>Sat, 26 Feb 2011 12:12:20 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[linux]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Software Engineering & Architecture]]></category> <category><![CDATA[git]]></category> <category><![CDATA[git-core]]></category> <category><![CDATA[setup]]></category> <category><![CDATA[source control]]></category> <category><![CDATA[source versioning]]></category> <category><![CDATA[tutorial]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=765</guid> <description><![CDATA[I want to share with you some thoughts on GIT because I think that was a right invention to the right time and place. (This article should be finished half year ago right after i wrote , but unfortunatelly i didn&#8217;t find any time to finish it untill now.) Motivation My first version control system [...]]]></description> <content:encoded><![CDATA[<p>I want to share with you some thoughts on GIT because I think that was a right invention to the right time and place.</p><p><em>(This article should be finished half year ago right after i wrote </em><a href="http://alexander.holbreich.org/2010/11/subversion-on-debian-linux/"><em>about svn server installation</em></a><em>, but unfortunatelly i didn&#8217;t find any time to finish it untill now.)</em></p><h2>Motivation</h2><p><img class="alignleft" style="margin: 10px 15px;" title="Git Logo by by Henrik Nyh" src="http://henrik.nyh.se/uploads/git-logo.png" alt="" width="97" height="188" />My first version control system (VCS) was CVS and i used it with eclipse 2.0 for programming in java. I found CVS quite impressive and liked it a lot. It was also quite reliable and moderatelly fast.<br /> Then someone at the university told us to use SVN, because it has &#8220;plenty&#8221; of advantages. Somehow i found SVN not bad even if the eclipse svn plugin quality was never quite good. However SVN matured  and became powerful source control system and many many people and companies started using it. I think it&#8217;s the most used version control system.</p><p>I like SVN for easy branching and tagging (with good eclipse plugin support), for global version numbers, for understanding &#8220;http://&#8221; (with Web-Dav) as well as for more comfortable managing tools and <a href="http://alexander.holbreich.org/2010/11/subversion-on-debian-linux/"> easy installation and configuration</a>.</p><p>But that&#8217;s all what i like&#8230; There is no more practical advantages over CVS and moreover there are even some disadvantages also in comparison to cvs.</p><ul><li>SVN is slow and double slow over HTTP. It may not be critical if you do your changes on several files and them commits &#8216;em. I&#8217;m doing so in my  java project and it&#8217;s ok. But there could be also other scenarios e.g. if you deal with such &#8220;monsters&#8221; like <a href="http://alexander.holbreich.org/tag/magento/">magento</a>, performance gain very fast on importance <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></li><li>Folder movement is a nightmare. With the subversion you have to know what you do when you start move around your folders. <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></li><li>Ugly <em>.svn</em> folders in the folder tree of your project. O course cvs had them too. But do we really need them? Sometimes i just wanna to copy my project tree without that stuff.</li><li>Not closed connection (don&#8217;t know if it is an server or eclipse plugin bug). Sometimes svn commits leave not closed connection. Eclipse hangs. <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_sad.gif?4c9b33" alt=':(' class='wp-smiley' /></li><li>SVN consumesa lot of space, more than cvs local and on the server.</li><li>You need to be online if you want to commit.</li></ul><p>All of these disadvantages i mentioned above are fixed in GIT. Git is much faster, flexible. So let  install it!<span id="more-765"></span></p><h2>Installation</h2><p>We start with installing the git-core component from linux (debian in my case) public repositories.</p><pre class="brush: bash; title: ; notranslate">
$ apt-get update
$ apt-get install git-core
</pre><p>After executing of these commands, which takes only approx. 2 seconds. you have installed the git-core on your machine. So now you can test it by checking the version or common commands list</p><pre class="brush: bash; title: ; notranslate">
$ git --version
# Returns e.g.:  git version 1.5.6.5
$ git
# Returns usage options
</pre><p>First good thing to do after a fresh git installation is to define some global properties:</p><pre class="brush: bash; title: ; notranslate">
$ git config --global user.name &quot;Alexander Holbreich&quot;
$ git config --global user.email &quot;alexander@xxxxx.org&quot;
$ git config --global color.status auto
$ git config --global color.branch auto
</pre><p>There are also more properties and configuration possibilities for git. But for normal usage you will never need them. If you think different see <a href="http://www.kernel.org/pub/software/scm/git/docs/git-config.html">git config manual</a>.</p><p>Normally you will be ready with git installation now.</p><h2>Usage (Remote repositories)<img class="alignright" style="margin: 10px 15px;" title="GitWeb Logo" src="https://git.wiki.kernel.org/images-git/c/cc/Git-logo-jengelh.png" alt="" width="200" height="80" /></h2><p>First you should think about your branching model. Start by<a href="http://nvie.com/posts/a-successful-git-branching-model/"> nvie model</a>. It looks  a bit complicated, but it covers nearly every aspect in big project work.  In an agile team such an approach is very easy maintained by git. See also related <a href="http://stackoverflow.com/questions/2621610/what-git-branching-models-actually-work-the-final-question/dontfollow" target="_blank">Stackoverflow discussion</a>.</p><p>There is a lot of documentation <a href="http://gitref.org/dontfollow" target="_blank">on git usage</a> on the internet so it makes not much sense to cover everything here again. But if you was interested in installing git, maybe you plan to maintain new reposity, so let&#8217;s look at them.</p><p>Small teams maybe would prefer to work with one central repository (<a href="http://progit.org/book/de/ch5-2.html" target="_blank">centralized workflow</a>) for it is a common approach we know from svn and cvs times.</p><p>Below a bare repository is created as a central one:</p><pre class="brush: bash; title: ; notranslate">
$ git init --bare
</pre><p>Then you can clone this (remote) repository to the local one</p><pre class="brush: bash; title: ; notranslate">
$ git clone git://originrepository.place/somedir/
</pre><p>Continue to work with local repository, <em>add</em>, <em>remove</em>, and <em>commit </em>files to local one.  If you decide to propagate your changes, say at the end of a day, to the central repository, use:</p><pre class="brush: bash; title: ; notranslate">
$ git push origin master
</pre><p>Cloned repositories know their origin repository automatically. &#8220;Origins&#8221;  have to be <em>bare repository</em> because they have no checked-out working trees. If you push to a repository which has a checked-out working tree (which is still allowed) the working tree will not be updated, and that may lead to unexpected results. To sum up, let your central repositories be created by <em>git init &#8211;bare</em>.</p><p>In git it is possible to have several remote repositories for one local. You can add them like this:</p><pre class="brush: bash; title: ; notranslate">
# here http is used as example
$ git remote add  somelib http://someremoteplace/lib/repo..
</pre><p>where &#8220;somelib&#8221; is the alias of repo. Next command shows known remote locations:</p><pre class="brush: bash; title: ; notranslate">
$ git remote -v # shows defined remote repositories aliases with URLs.
</pre><p>I hope this gives you a motivation to start using GIT. Hope also to see your questions or ideas in the comments.</p><h3>More Info and Tools<img class="alignright" style="margin: 10px 15px;" title="Git logo by Dylan Beattie" src="http://www.dylanbeattie.net/git_logo/git_logo_192x106.jpg" alt="" width="192" height="106" /></h3><ul><li><a href="http://gitref.org/" target="_blank">Git command reference</a></li><li><a href="http://www.vogella.de/articles/Git/article.html#remote">Usage tutorial</a></li><li><a href="http://www.kernel.org/pub/software/scm/git/docs/user-manual.html">Git user manual</a></li><li><a href="http://progit.org/book/dontfollow" target="_blank">Git Pro Book </a>(Online)</li><li><a href="http://code.google.com/p/msysgit/">msysgit</a> git for windows</li></ul> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2011/02/git/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>102 Post so far</title><link>http://alexander.holbreich.org/2010/11/102-posts/</link> <comments>http://alexander.holbreich.org/2010/11/102-posts/#comments</comments> <pubDate>Tue, 23 Nov 2010 23:43:58 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[off topic]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[performance]]></category> <category><![CDATA[statistic]]></category> <category><![CDATA[visitors]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=705</guid> <description><![CDATA[I noticed that my was  a 101 post on this blog which is good occasion to do some self evaluation. I started to write here in January 2007 it&#8217;s nearly 4 years ago. You see I&#8217;m not very productive blogger. Nevertheless i wrote some interesting things which have attracted some people or comments. Here some [...]]]></description> <content:encoded><![CDATA[<p><em>I noticed that my <a href="http://alexander.holbreich.org/2010/11/ubuntu-vs-windows-xp/"> last post </a> was  a 101 post on this blog which is good occasion to do some self evaluation. </em></p><p>I started to write here in January 2007 it&#8217;s nearly 4 years ago. You see I&#8217;m not very productive blogger. Nevertheless i wrote some interesting things which have attracted some people or comments. Here some of them chronologically:</p><ul><li><a href="http://alexander.holbreich.org/2007/01/first-look-at-java-persistence-api/">First Look at Java Persistence API<br /> </a></li><li><a href="http://alexander.holbreich.org/2007/02/nofollow-considered-harmful/"> &#8220;No follow&#8221; considered harmful </a></li><li>First steps with <a href="http://alexander.holbreich.org/2007/12/magento/">Magento</a></li><li>My <a href="http://alexander.holbreich.org/2007/12/my-top-10-wordpress-plug-ins-i-wont-miss/">TOP 10 WordPress Plugins</a> in 2007. I think a have to make new version of it soon. <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></li><li>I&#8217;ve created a word <a href="http://alexander.holbreich.org/2007/12/socialolism/"><strong> socialolism</strong></a> and was cited on some link aggregaters relatively popular.</li><li>I was on of the  first hwo checked some <a href="http://alexander.holbreich.org/2008/01/geni/">new features</a> of Geni.com and gathered their attention, so they send me <a href="http://alexander.holbreich.org/2008/02/geni-t-short/">a T-shirt</a> <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></li><li>I&#8217;ve made an online  calendar of <a href="http://alexander.holbreich.org/2008/01/calender-of-beauties/">Russian beauties </a>which is unfortunately dessapeared with hosted site. However  i have a picture of it cover.</li><li>I wrote about my time with my son as my wive was away. <a href="http://alexander.holbreich.org/2008/02/father-and-son-adventures-day-one/">Part one</a> and <a href="http://alexander.holbreich.org/2008/02/father-son-adventures-234/">part two</a>.</li><li>I have introduced new <a href="http://alexander.holbreich.org/2008/02/wpopularity-plug-in/">Wordpress Plugin</a> which definitive need next update right now. I know, i know. I have it on my task list.</li><li>In 2008 we discussed <a href="http://alexander.holbreich.org/2008/05/little-story-about-school-education-in-germany/">school education in germany</a></li><li>Then many people found interesting my post about <a href="http://alexander.holbreich.org/2009/01/how-to-duplicate-magento-installation/">duplication of magento</a> installation. I plan to do new relese on this topic.</li><li>And Last but not least I wrote about <a href="http://alexander.holbreich.org/2010/01/software-raid-debian/">Software RAID</a> on linux, <a href="http://alexander.holbreich.org/2010/01/java-jboss-debian-linux/">installations of JBoss</a> and <a href="http://alexander.holbreich.org/2010/02/ssh-tunnel-without-password/">SSH tunels</a>.</li></ul><p>I&#8217;ve learned pretty much and i tried different themes. I think in the future i will write more and more technical stuff. So e.g. Java comes to short so far also web technologies where not covered while i have to do with them relatively often.<span id="more-705"></span></p><h3>User statistic</h3><p>My blog has humble user statistic. This is explainable. My blog has lot spread of themes and i has suffered from the movement to new domain a year ago.  However the number of visitors id growing. So i had 1548 unique visitors  in last 30 days here.</p><p style="text-align: center;"><a href="http://alexander.holbreich.org/wp-content/uploads/2010/11/visitors.gif?4c9b33"><img class="size-full wp-image-710  aligncenter" title="visitors" src="http://alexander.holbreich.org/wp-content/uploads/2010/11/visitors.gif?4c9b33" alt="" width="462" height="190" /></a></p><p>A maximum of visitior per day what this site experienced was 1500 per day. I believe it was post about Jboss installation (mentioned above) which passes pre-selection on some link composing site.<br /> And here is map which show where you maybe comes from.</p><p style="text-align: center;"><a href="http://alexander.holbreich.org/wp-content/uploads/2010/11/countries.gif?4c9b33"><img class="size-full wp-image-711  aligncenter" title="countries" src="http://alexander.holbreich.org/wp-content/uploads/2010/11/countries.gif?4c9b33" alt="" width="275" height="169" /></a></p><p>So stay whith me an you&#8217;ll be able to read next hundred of mega cool post very soon. <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2010/11/102-posts/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Ubuntu vs. Windows XP on my Thinkpad</title><link>http://alexander.holbreich.org/2010/11/ubuntu-vs-windows-xp/</link> <comments>http://alexander.holbreich.org/2010/11/ubuntu-vs-windows-xp/#comments</comments> <pubDate>Sat, 20 Nov 2010 22:07:04 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Hardware]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[performance]]></category> <category><![CDATA[thinkpad]]></category> <category><![CDATA[ubunto]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=678</guid> <description><![CDATA[Yesterday i  installed Ubuntu (10) linux alongside of Windows XP (SP3) on my Lenovo Thinkpad T60 &#8211; meanwhile 4 years  Laptop. To be short  i observe only start-time of both system on the same machine in this post. Here some hardware details: Intel Core Duo (T2400 -1,83 Mghz) 1 Gb RAM 60 GB 5400rpm  hard [...]]]></description> <content:encoded><![CDATA[<p>Yesterday i  installed Ubuntu (10) linux alongside of Windows XP (SP3) on my Lenovo Thinkpad T60 &#8211; meanwhile 4 years  Laptop. To be short  i observe only start-time of both system on the same machine in this post.</p><p>Here some hardware details:</p><ul><li>Intel Core Duo (T2400 -1,83 Mghz)</li><li>1 Gb RAM</li><li>60 GB 5400rpm  hard drive</li></ul><p>An here are starttimes on two Systems (in seconds):</p><p style="text-align: center;"><a href="http://alexander.holbreich.org/wp-content/uploads/2010/11/windows_vs_ubuntu.gif?4c9b33"><img class="size-full wp-image-679 aligncenter" title="windows_vs_ubuntu" src="http://alexander.holbreich.org/wp-content/uploads/2010/11/windows_vs_ubuntu.gif?4c9b33" alt="Windows vs. Ubuntu startup times" width="465" height="294" /></a></p><p>As we see Windows takes 1 minute from OS-Selection dialog till User-login dialog, whereas Ubunto takes  only 24 sec. Ok, windows checks  &#8220;security chip&#8221; (what it exactly means and why it so good for me i don&#8217;t know)  and that takes considerable time and i&#8217;m unsure whether Ubunto do something like this, but however i can&#8217;t change it.</p><p>On a graph we see also, that for the rest of &#8220;loading work&#8221; from login till first page appears in firefox browser windows takes more time again. It takes 95 seconds whereas Ubunto need only 19!  I was clicking on browser Icon as soon it appeared and was &#8220;clickable&#8221; and waited till pre-selected starting page (google) appears.</p><p>Of cause tas is not very strict measurement so maybe I&#8217;ve lost one or two seconds somewhere, who cares if</p><ul><li>Ubunto takes 24+19 =<strong>43 sec</strong></li><li>Windows takes 60+95 = <strong>155 sec</strong></li></ul><p>till i can use my typical day by day application. So now i can save more than a one and halfe minute of my life on every start of a system.</p><p>Respect Ubuntu, keep on going!</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2010/11/ubuntu-vs-windows-xp/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Get JIRA for 10$ only</title><link>http://alexander.holbreich.org/2010/05/use-jira/</link> <comments>http://alexander.holbreich.org/2010/05/use-jira/#comments</comments> <pubDate>Tue, 25 May 2010 21:44:45 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Software Engineering & Architecture]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[best time]]></category> <category><![CDATA[developer tools]]></category> <category><![CDATA[jira]]></category> <category><![CDATA[project tracking system]]></category> <category><![CDATA[simplicity]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=588</guid> <description><![CDATA[Probably most of modern IT related people know Atlassian JIRA &#8211; issue and project tracking system. Maybe many of you know other popular tracking system like Bugzilla, GNATS, und many many others. Personally I like JIRA last but not least because i worked many years with it and I&#8217;m impressed of a simplicity of the [...]]]></description> <content:encoded><![CDATA[<p>Probably most of modern IT related people know Atlassian JIRA &#8211; issue and project tracking system. Maybe many of you know other popular tracking system like Bugzilla, GNATS, und <a href="http://en.wikipedia.org/wiki/Comparison_of_issue_tracking_systems" target="_blank">many many others</a>. Personally I like JIRA last but not least because i worked many years with it and I&#8217;m impressed of a simplicity of the work flow and the realisation of the concepts around it.</p><p>However this is not one post which should bring JIRA near to you. But if you know that you need it, now is best time to get it, because Atlassian started their &#8220;<a href="http://www.atlassian.com/software/jira/pricing.jsp" target="_blank">Get Startet</a>&#8221; Price, which now allows you to by full functional <span style="text-decoration: underline;">JIRA for 10$ for ever</span> even with one year support. All you need is a little bit of free CPU time, root access, 10$ and if you buy it outside of USA, you will need a credit card.</p><p>I installed it  for my private purposes and it works fine! I just followed Atlassian documentation (Read it carefully). Maybe, the easiest way is to install the &#8220;all in one&#8221; solution which comes with Apache Tomcat. I choosed that one. But don&#8217;t forget to switch to serious database before you start really using it. Take MySQL for example like I did.</p><p>I will not provide here step by step how to do it, because <a href="http://simon.zambrovski.org/2010/05/jira-home-improvement/" target="_blank">Simon has already</a> described some of the important configurations moments as he heard about new pricing <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /> and as already mentioned the Atlassian installation guide is good and really answered all my questions.</p><p>Nevertheless feel free to ask questions here, about installation and configuration to.</p><p>Also i would like to discuss other Atlassian developer tools which also available for 10$. Is here outside someone experienced in bamboo?</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2010/05/use-jira/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Polja switched too.</title><link>http://alexander.holbreich.org/2009/01/polja-switched-to-holbreichorg-too/</link> <comments>http://alexander.holbreich.org/2009/01/polja-switched-to-holbreichorg-too/#comments</comments> <pubDate>Fri, 23 Jan 2009 12:06:13 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Personal]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=276</guid> <description><![CDATA[Now Polja&#8217;s blog has also completely moved from holbreich.de to holbreich.org.  I mean of cause I did it for her, like I . Enjoy her blog!]]></description> <content:encoded><![CDATA[<p>Now <a href="http://paulina.holbreich.org">Polja&#8217;s blog</a> has also completely moved from holbreich.de to holbreich.org.  I mean of cause I did it for her, like I . Enjoy her blog!</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2009/01/polja-switched-to-holbreichorg-too/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Cool Picture on Ice</title><link>http://alexander.holbreich.org/2009/01/cool-picture/</link> <comments>http://alexander.holbreich.org/2009/01/cool-picture/#comments</comments> <pubDate>Tue, 20 Jan 2009 00:13:59 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Personal]]></category> <category><![CDATA[flickr]]></category> <category><![CDATA[photo]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=260</guid> <description><![CDATA[Isn&#8217;t it?  I took it with my Canon 450D on the frozen sea near my home. The whole set for interested in photography.]]></description> <content:encoded><![CDATA[<p>Isn&#8217;t it?  I took it with my <a href="http://www.digitalexperiment.de/wissen/hardware/canon/eos450d">Canon 450D</a> on the frozen sea near my home.</p><p><img class="aligncenter size-full wp-image-261" title="On Ice" src="http://alexander.holbreich.org/wp-content/uploads/2009/01/3205055702_5b89ba7cdf.jpg?4c9b33" alt="On Ice" width="340" height="500" /></p><p>The <a href="http://www.flickr.com/photos/shuron/sets/72157612691517686/" target="_blank">whole set</a> for interested in photography.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2009/01/cool-picture/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>New Theme!</title><link>http://alexander.holbreich.org/2009/01/new-theme/</link> <comments>http://alexander.holbreich.org/2009/01/new-theme/#comments</comments> <pubDate>Mon, 19 Jan 2009 07:00:58 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Personal]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=256</guid> <description><![CDATA[Hello everybody! I&#8217;d like to present you my new theme for that Blog! The old theme was not good readable in my opinion. Please tell me if you encounter any bugs. Have a nice day!]]></description> <content:encoded><![CDATA[<div id="attachment_255" class="wp-caption alignleft" style="width: 277px"><img class="size-full wp-image-255" title="shurons-letters" src="http://alexander.holbreich.org/wp-content/uploads/2009/01/shurons-letters.gif?4c9b33" alt="Shuron's Letters" width="267" height="181" /><p class="wp-caption-text">Shuron&#39;s Letters</p></div><p>Hello everybody! I&#8217;d like to present you my new theme for that Blog! The old theme was not good readable in my opinion. Please tell me if you encounter any bugs.</p><p>Have a nice day!</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2009/01/new-theme/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Folder Monitr a Flickr Upload tool</title><link>http://alexander.holbreich.org/2009/01/folder-monitr-a-flickr-upload-tool/</link> <comments>http://alexander.holbreich.org/2009/01/folder-monitr-a-flickr-upload-tool/#comments</comments> <pubDate>Sat, 10 Jan 2009 21:26:16 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Personal]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[flickr]]></category> <category><![CDATA[tool]]></category><guid isPermaLink="false">http://alexander.holbreich.org?p=176</guid> <description><![CDATA[Folder Monitr allows automatically upload of Pictures to the Flickr. This tool is very useful to me because it can work automatically in the background and therefore reduce one manual step in my picture processing. So basically i can now use only Lightroom end export my developed pictures to the &#8220;watched&#8221; folder and they will [...]]]></description> <content:encoded><![CDATA[<p>Folder Monitr allows automatically upload of Pictures to the Flickr. This tool is very useful to me because it can work automatically in the background and therefore reduce one manual step in my picture processing. So basically i can now use only Lightroom end export my developed pictures to the &#8220;watched&#8221; folder and they will automatically upload to flickr in the background. All tags are taken and even Set can be specified by subfoldering, which is also cool..</p><p>There is just one drawback of this method. Uploaded images become automatically description, which say that that picture where uploaded by Folder Monitr (with a link) and a tag &#8220;FolderMonitr&#8221;. So I don&#8217;t like stuff like this. Unfortunately mass edit (or delete i my case) of tags and description is not so comfortable in flickr as it could be.</p><p>However I will use FolderMonitr further maybe the description and tag problem cannot outbalance the use of that tool.</p><p>P.S. If anybody knows the working way haw too upload pictures to flickr direct out of Lightroom in the version 2.0 is welcome to give me a hint <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /> thanks!</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2009/01/folder-monitr-a-flickr-upload-tool/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>2009: Happy new Year!</title><link>http://alexander.holbreich.org/2008/12/2009-happy-new-year/</link> <comments>http://alexander.holbreich.org/2008/12/2009-happy-new-year/#comments</comments> <pubDate>Wed, 31 Dec 2008 13:49:03 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[off topic]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[carriere]]></category> <category><![CDATA[new year]]></category><guid isPermaLink="false">http://alexander.holbreich.org/2008/12/2009-happy-new-year/</guid> <description><![CDATA[I wish all of you happy new year! May all your wishes come true in 2009! I wish to learn a perfect time management to made all of the thing that I have to do, and spend enough time with my family. Also I wish to achieve new level in project management and maybe new [...]]]></description> <content:encoded><![CDATA[<div id="attachment_192" class="wp-caption alignleft" style="width: 260px"><img class="size-full wp-image-192" title="ny-09" src="http://alexander.holbreich.org/wp-content/uploads/2008/12/ny-08.jpg?4c9b33" alt="New Year" width="250" height="150" /><p class="wp-caption-text">New Year</p></div><p>I wish all of you happy new year! May all your wishes come true in 2009!</p><p>I wish to learn a perfect time management to made all of the thing that I have to do, and spend enough time with my family. Also I wish to achieve new level in project management and maybe new career level! <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /> Why not? I feel ready! <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></p><p>Good luck!</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/12/2009-happy-new-year/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Successfull switch to alexander.holbreich.org</title><link>http://alexander.holbreich.org/2008/11/successfull-switch-to-alexanderholbreichorg/</link> <comments>http://alexander.holbreich.org/2008/11/successfull-switch-to-alexanderholbreichorg/#comments</comments> <pubDate>Fri, 28 Nov 2008 21:28:25 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Personal]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[subdomain]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=181</guid> <description><![CDATA[As you see, from now on you will find my blog at Alexander.Holbreich.org. Why the movement Primary it had to be done because of some problems with hosting service provider. But that is a long story, which I won&#8217;t tell you here. However ORG domain is much nicer? What do you think? wPopularity Plug-In Please [...]]]></description> <content:encoded><![CDATA[<p>As you see, from now on you will find my blog at Alexander.Holbreich.org.</p><h2>Why the movement</h2><p>Primary it had to be done because of some problems with hosting service provider. But that is a long story, which I won&#8217;t tell you here. However ORG domain is much nicer? What do you think?</p><h2>wPopularity Plug-In</h2><p>Please excuse me for not maintaining it. I just have time to keep this site alive, not really for a writing Plug-ins i free time. But I promise i try to find some hours in the winter holidays, to answer all your questions and maybe even to release new version. Thank you for you patience.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/11/successfull-switch-to-alexanderholbreichorg/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Dmitry Anatolyevich Medvedev &amp; Nikolay Alexandrovich Romanov (Nicholas II)</title><link>http://alexander.holbreich.org/2008/06/dmitry-anatolyevich-medvedev-nikolay-alexandrovich-romanov-nicholas-ii/</link> <comments>http://alexander.holbreich.org/2008/06/dmitry-anatolyevich-medvedev-nikolay-alexandrovich-romanov-nicholas-ii/#comments</comments> <pubDate>Wed, 18 Jun 2008 16:16:27 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[off topic]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[medvedev]]></category> <category><![CDATA[nicholas II]]></category><guid isPermaLink="false">http://alexander.holbreich.org?p=172</guid> <description><![CDATA[Look at this! It&#8217;s incredible! Don&#8217;t know them? The first one is the actual President of Russian Federation &#8211; Dmitry Medvedev, the second one, is the latest Russian Tsar -Nicholas II. Nicholas II was executed by Bolsheviks in 1918. However I found this similarity very funny but also somehow strange. Maybe beacuse of history. Nicholas [...]]]></description> <content:encoded><![CDATA[<p>Look at this! It&#8217;s incredible!<br /> <a href="http://alexander.holbreich.org/wp-content/uploads/2008/06/nicholaus1.jpg?4c9b33"><img class="alignnone size-full wp-image-174" title="nicholaus1" src="http://alexander.holbreich.org/wp-content/uploads/2008/06/nicholaus1.jpg?4c9b33" alt="" width="448" height="298" /></a></p><p>Don&#8217;t know them?</p><p>The first one is the actual President of Russian Federation &#8211; Dmitry Medvedev, the second one, is the latest Russian Tsar -<a href="http://en.wikipedia.org/wiki/Nicholas_II_of_Russia">Nicholas II</a>. Nicholas II was executed by Bolsheviks in 1918.</p><p>However I found this similarity very funny but also somehow strange. Maybe beacuse of history. Nicholas II stands for last moments of non communistic Russia . History has made Nicholas II  and his whole family (which was executed too)  very symbolic. It&#8217;s difficult to explain. However very strange for me.</p><p>P.S. As you see, I&#8217;m back again, have much to do, so  has to wait few days or even weeks <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_sad.gif?4c9b33" alt=':(' class='wp-smiley' /></p><p>I found this picture <a href="http://furious-lamb.livejournal.com/296766.html?thread=1244478#t1244478">here</a></p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/06/dmitry-anatolyevich-medvedev-nikolay-alexandrovich-romanov-nicholas-ii/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>12 day&#8217;s sun and sea</title><link>http://alexander.holbreich.org/2008/05/12-days-sun-and-sea/</link> <comments>http://alexander.holbreich.org/2008/05/12-days-sun-and-sea/#comments</comments> <pubDate>Sun, 25 May 2008 10:58:02 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Personal]]></category> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://alexander.holbreich.org?p=171</guid> <description><![CDATA[Tonight a plane will take us to our holiday destination. That means I&#8217;m not at a PC and maybe even not reachable on telephone for at least 12 days. That is my first big holiday trip since two years, and a first holiday with my little son. Nevertheless I have some ideas on improvement of [...]]]></description> <content:encoded><![CDATA[<p>Tonight a plane will take us to our holiday destination. That means I&#8217;m not at a PC and maybe even not reachable on telephone for at least 12 days. <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /> That is my first big holiday trip since two years, and a first holiday with my little son.</p><p>Nevertheless I have some ideas on improvement of W-Popularity Plug-in. I think we should give up compatibility of DB-Tables with Popularity Contest Plug in. As i think that should eliminate all possible inter-operation problems with the Plug-in of Alex King, including those activation problems, some of you have report in the comments to my <font style="position: absolute;overflow: hidden;height: 0;width: 0"><a href="http://kvantservice.com/">???????? ????? ????????</a></font>.</p><p>I started already work on version 0.9.4 but i will release it after I&#8217;m back again.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/05/12-days-sun-and-sea/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Little story about school education in Germany</title><link>http://alexander.holbreich.org/2008/05/little-story-about-school-education-in-germany/</link> <comments>http://alexander.holbreich.org/2008/05/little-story-about-school-education-in-germany/#comments</comments> <pubDate>Thu, 01 May 2008 14:00:23 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[off topic]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[education in germany]]></category> <category><![CDATA[education methods]]></category> <category><![CDATA[pisa study]]></category> <category><![CDATA[school education]]></category><guid isPermaLink="false">http://alexander.holbreich.org?p=166</guid> <description><![CDATA[This is a personal blog. Isn`t? &#8211; Yes. Can I write my personal opinion in my personal blog? Let me think&#8230; Of course! Should my personal opinion be somehow conform to the mainstream opinion? &#8211; I think you should know the answer However, during Google continues to mark my site with malware warnings (), because [...]]]></description> <content:encoded><![CDATA[<p><em>This is a personal blog. Isn`t? &#8211; Yes. Can I write my personal opinion in my personal blog? Let me think&#8230; Of course! Should my personal opinion be somehow conform to the mainstream opinion? &#8211; <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /> I think you should know the answer <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /> </em></p><p>However, during Google continues to mark my site with malware warnings (), because the Google test of cleaned sites takes Sooooooo Looong. <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_sad.gif?4c9b33" alt=':(' class='wp-smiley' /> , I want to tell you  one story, concerning a theme which scares me already for a long time. Don&#8217;t laugh, but I wanna speak about school education in Germany.<img class="alignright" style="margin: 5px; float: right;" title="Kluge Schüller" src="http://alexander.holbreich.org/wp-content/uploads/2008/05/reichenbach412-300x182.jpg?4c9b33" alt="" width="300" height="182" /></p><p>Maybe you heard already about Pisa Study Results of German &#8220;Schuler&#8221;? If not, I tell you, their results are really not impressive. How it comes&#8230;? Read in the following&#8230;</p><h3>Historical</h3><p>After the WW2 in West and East Germany began denazification. Germans have done good work and succeeded in that by throwing out everything of the Third Reich. Also the education methods in the Third Reich where considered as unappropriate, I&#8217;m not an expert but can imagine that they can appear as too strikt, too idealized for  modern times. And therefore totaly unappropriate for modern children. The same happened also after the &#8220;unification of Germany&#8221; in truly unification is the wrong word, West Germany incorporated East Germany. And of cause education concepts of the &#8220;East-Block&#8221; (also of the enemy) where thrown out of the window, not even to look on them.</p><h3>Personal Impression</h3><p>If I look around and speak with my friends, who have children in school age, I gain the opinion that, the primary school is a place where children are doing everything, except of learning.</p><p>So I&#8217;m also a big friend of playing. But excuse me, if my son goes to school, I expect that he  learns something there! In best case, my children should can read and write and simple math after the first year in school not after the third or even fifth one!</p><p>It&#8217;s nothing impossible for every child! But children have to be motivated to learn, to be smart, to be educated. I don&#8217;t wanna say they should be compeled to learn, mostly it won`t have much success without motivation, but teachers and parents have to be strikt with that in every case.</p><p>However, it&#8217;s very difficult to be a teacher in our times, teachers have NO rights and might over their  pupil, further they really believe ( because it is taught them at the university) that children can learn better without the stress of competition and without any effort and any pressure to perform at least in the beginning of the school. Bullshit! Children love to succeed, love competition. To compete, to win, to learn and to enjoy-this  is their natural urge, I can see it every day, when I look at my little son.</p><p>But let me tell you one story of many, which finally lead me to write this article, one story I heard today.</p><h3>The Story and the Questions</h3><p>One friend of my wife has a child, who is  the age of 5. The girl goes to the normal German preschool everyday, where they are doing something, as I think playing <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /> Once a week the same child also goes to a Russian preschool called &#8220;Azbuka&#8221;. Now the question: In which language does that child read? The Answer is indeed Russian!</p><p>The next question is: What the hell are they doing at the German preschool? With the same success if not better this child could play 5 days a week at a playground&#8230;</p><p>In my opinion these children are under-cultivated by the German education system in their best years! And many parents have no time to educate children at home because they are working hardly.<br /> P.S. I remember my first &#8220;Gymnasium&#8221; class teacher, who did laughed at me, when I talked to him that German School Education is far not the best in the world. It  was few years before the first smashing Pisa Study got publicity.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/05/little-story-about-school-education-in-germany/feed/</wfw:commentRss> <slash:comments>11</slash:comments> </item> <item><title>Back again</title><link>http://alexander.holbreich.org/2008/04/back-again/</link> <comments>http://alexander.holbreich.org/2008/04/back-again/#comments</comments> <pubDate>Wed, 16 Apr 2008 21:58:47 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[off topic]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[security]]></category><guid isPermaLink="false">http://alexander.holbreich.org2008/04/back-again/</guid> <description><![CDATA[It&#8217;s pretty difficult to start write again after such pause. My wife and my Son are away for a holidays, so I must found some time to write to my blog. But where to begin. So many thing are happened in the last time. Ok , I know I begin with the introducing of the [...]]]></description> <content:encoded><![CDATA[<p>It&#8217;s pretty difficult to start write again after such pause. My wife and my Son are away for a holidays, so I must found some time to write to my blog. But where to begin. So many thing are happened in the last time.</p><p>Ok , I know I begin with the introducing of the <a href="http://paulina.holbreich.de" title="Polja">My wife&#8217;s Blog</a>. It&#8217;s about books, travel and geography, because my darling do study at the Faculty of Geography. You might find it also interesting even when you will not find there many articles about IT <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /> However her English is much better than my <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></p><p>Back to this blog. As you know WordPress 2.5 is out. And somehow there are no security updates at that time. How it comes? Did the WordPress guys didn&#8217;t their work really good this time? <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' />   Seems to be. So I consider to upgrade in the next time.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/04/back-again/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>In the meantime</title><link>http://alexander.holbreich.org/2008/03/in-the-meantime/</link> <comments>http://alexander.holbreich.org/2008/03/in-the-meantime/#comments</comments> <pubDate>Wed, 19 Mar 2008 22:49:48 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Personal]]></category> <category><![CDATA[calendar]]></category> <category><![CDATA[car]]></category> <category><![CDATA[Google]]></category><guid isPermaLink="false">http://alexander.holbreich.org2008/03/in-the-meantime/</guid> <description><![CDATA[My last Post is nearly ten days ago &#8211; unforgivable Unfortunately I have had no time or better say I had few time, much small things to do and no motivation. Yesterday I had my birthday and thank goodness, that has marked some turning point in me. So today I was more productive and a [...]]]></description> <content:encoded><![CDATA[<p>My last Post is nearly ten days ago &#8211; unforgivable <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /> Unfortunately I have had no time or better say I had few time, much small things to do and no motivation. Yesterday I had my birthday and thank goodness, that has marked some turning point in me. So today I was more productive and a little motivated,  I&#8217;ve even begun write this article down. And I&#8217;m more confident about today and the weekend.</p><h3>Calender and Car</h3><p>Furthermore I realized that I need again my small personal calendar, Google online calender is not enough. After using it more than 1,5 years I realize that its comfortable to plan long term events with google online calendar, but maybe not so comfortable to plan activities for the next day or even for today.</p><p><img src="http://alexander.holbreich.org/wp-content/uploads/2008/heroes/homer.jpg?4c9b33" alt="homer.jpg" align="right" border="0" height="89" hspace="10" vspace="10" width="118" />I also noticed that it is also good to relax more often. So it is not good to drive 50 minutes to work by car. Driving car efforts brain activity. I prefer to drive fast, so driving deserves the biggest part of my attention, the other part is listen to the radio or slips <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /> And that not good. It is better to travel by subway, where you brain can be used for other things like thinking about mission of a day to be more effective, thinking about things you normally don&#8217;t&#8217; have time too, cause you work to much or just sleep <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /></p><p>So think twice and be effective, good luck!</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/03/in-the-meantime/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>DIGG Effect is worth it?</title><link>http://alexander.holbreich.org/2008/03/digg-effect/</link> <comments>http://alexander.holbreich.org/2008/03/digg-effect/#comments</comments> <pubDate>Mon, 10 Mar 2008 21:06:57 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[off topic]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[background information]]></category> <category><![CDATA[community]]></category> <category><![CDATA[content]]></category> <category><![CDATA[digg]]></category> <category><![CDATA[no time]]></category> <category><![CDATA[social communities]]></category> <category><![CDATA[time is money]]></category> <category><![CDATA[traffic load]]></category> <category><![CDATA[visitors]]></category><guid isPermaLink="false">http://alexander.holbreich.org2008/03/digg-effect/</guid> <description><![CDATA[My last article depicts few facts of success in social communities. Here I wanna be more concrete and give you some interesting Background information of the DIGG and DIGG effect. Finelly I give my personal adwise not to try to be the top DIGGER, read why.]]></description> <content:encoded><![CDATA[<p>My   depicts few facts of success in social communities. Here I wanna be more concrete and give you some interesting Background information of the <a href="http://digg.com" target="_blank">DIGG</a> and <a href="http://www.ndesign-studio.com/blog/updates/the-digg-effect/" target="_blank">DIGG effect</a>. Finelly I give my personal adwise not to try to be the top DIGGER, read why.</p><h3>DIGG Effect</h3><p>Eric Enge has wrote very <a href="http://www.stonetemple.com/articles/secrets-for-success-on-digg.shtml" title="Secrets to Success on Digg" target="_blank">good article about succes on digg</a>. Some of details he presents my be not true at the moment, because DIGG evolves and changes internal algorithms. However some facts are really interesting.</p><p>As he says, stories that where able to reach the digg home page receive an average of 129 links, and more than 10,000 visitors in an hour. Some stories have brought even more than 1,000 links and 100,000 visitors. This shows how important DIGG is and why there are so many legend and so much attention from SEOs. So it has happened many times that stories which have made the home page, have brought the server of the story site can&#8217;t handle the traffic load. This is well known phenomena is known as the &#8220;Digg Effect&#8221;.</p><p>Of cause the quality of this kind of visitors is &#8220;bad&#8221;. Don&#8217;t expect that they will by your products and click Ads. Do not expect big growth in comments, DIGG users often comment regarding a site on digg itself instead of on the dugg website. Digg users comes to see only that what they would inspect in the story description on DIGG itself.</p><h3>I don&#8217;t wanna be a Digger</h3><p>So after reading several articles about how to success on DIGG i realized that<u> it would take very very very much time</u>. So as every body know time is money, but moreover time is life! In my opinion the truly success on DIGG starting from null will deserve much to much time in comparison to the revenue.<br /> Personally I don&#8217;t have much time and will not spend it to fullish site like DIGG, voting for silly topics of US tanagers <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /> So at the moment and I think also in the future will not spend much time on DIGG or other communities.</p><p>I mean isn&#8217;t it better to spend time to create wonderful content? It would give you personal much more satisfaction than any DIGG effect. But however good content have in any case good chance to  achieve one DIGG effect after another!<br /> So by by DIGG, may others vote for my content, I will not spend my life for Digging <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></p><p>P.S. It doesn&#8217;t mean i will not continue submitting my articles to it <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/03/digg-effect/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Factors of Success in Social (News) Communities</title><link>http://alexander.holbreich.org/2008/03/factors-of-success-in-social-news-communities/</link> <comments>http://alexander.holbreich.org/2008/03/factors-of-success-in-social-news-communities/#comments</comments> <pubDate>Thu, 06 Mar 2008 19:21:18 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[community]]></category> <category><![CDATA[digg]]></category> <category><![CDATA[friendship]]></category> <category><![CDATA[news2.ru]]></category> <category><![CDATA[social network]]></category><guid isPermaLink="false">http://alexander.holbreich.org2008/03/factors-of-success-in-social-news-communities/</guid> <description><![CDATA[As I think there a only two main factors your success (success of your submissions) depends on. That are the quality of your stories and friendship. Yes only them two and some sub issues its quite simple. Such an statement my appear as vague for you, therefore I'll try to be more concrete. High quality stories are known as:* unique * unusual * very actual * interesting for everybody ]]></description> <content:encoded><![CDATA[<p style="font-style: italic">Initially I just wanted to report about  some experience on DIGG but then i noticed that i try to cover at least two different topics in one post, so I decided to split. In that article I will cover key factors of success on news driven Social communities like  well known DIGG and will cover my firs serious steps with DIGG in the next article.</p><p><img src="http://alexander.holbreich.org/wp-content/uploads/2008/logo2.gif?4c9b33" alt="logo2.gif" align="right" border="0" height="80" hspace="10" vspace="10" width="72" />Currently I&#8217;m the number <strong>49</strong> of top users of the Russian DIGG sister called <a href="http://news2.ru" target="_blank">news2.ru</a>, therefore I think to have some  experience and some kind of instinctive feeling for mechanisms we have on that page. News2.ru is a typical example of social news-driven page and is quite similar to DIGG. Therefore my experience can be useful also for DIGG users and other similar Web2.0 sites.</p><h2>Success  factors of digging</h2><p>As I think there a only two main factors your success (success of your submissions) depends on. That are the <strong>quality of your stories</strong> and <strong>friendship</strong>. Yes only them two and some sub issues its quite simple. Such an statement my appear as vague for you, therefore I&#8217;ll try to be more concrete.</p><h3>High quality stories</h3><p>High quality stories are known as:</p><ul style="font-weight: bold"><li>unique</li><li>unusual</li><li>very actual</li><li>interesting for everybody</li></ul><p>That are primary properties on successful story. Now you may think that the appreciation of these attributes is highly subjective, that is partly true. However everyone can achieve good objectivity by analysing the actuality of post. E.g. U.S. President election is quite actual at the moment, Cold War maybe not. However with some experience thee appraisal of these properties will get better and better. I can say I began to feel what kind of stories can reach the TOP.</p><p>To be actual and have many stories to choose, it is recommended to subscribe to RSS feeds of news portal of your wish or several of them. If your social-community portal presents websites statistic , you  are well advised to study it and chose some with the best success rate.</p><p><img src="http://alexander.holbreich.org/wp-content/uploads/2008/digger.jpg?4c9b33" alt="digger.jpg" align="left" border="0" height="113" hspace="10" vspace="10" width="117" /><strong>So what to do? How to begin?</strong> The answer is clear too, you just have to star and play a bit around. If you are non completely new in the field of social news community, then you just can&#8217;t leave this step out. However as already mentioned the success factor of your news will grow with experience.</p><p>It is difficult to provide some examples of good or bad news, because it&#8217;s highly depends on the time context and also other things like presentation! Presentation is one of the sub factors  I wanna  say some words about:</p><ul><li>Always use pictures! Choose them with care.</li><li>Use headlines that magnify attention (Compare: &#8220;Microsoft considers to by some Yahoo shares&#8221; vs. &#8220;Microsoft takes over Yahoo!&#8221;)</li><li>But use headlines that are precisely express what is in the content behind them. Otherwise your messages can be considered as spam or inaccurate.</li><li>Be aware of duplicates</li><li>The content at it self  should be good presented and layout carefully. Don&#8217;t write to much, but try to make your link sexy. Don&#8217;t lie.</li><li>Use the right category!</li></ul><p>Doing so you will create solid and high potential submissions, and you  has learned this, the second factor comes to a play which helps enormously to use the potential of your submissions.</p><h3>Friendship<img src="http://alexander.holbreich.org/wp-content/uploads/2008/friends_smaller.jpg?4c9b33" alt="friends_smaller.jpg" align="right" border="0" height="243" hspace="10" vspace="10" width="243" /></h3><p>If in the beginning of your &#8220;career&#8221; maybe non of your messages reach the top,  at a master level the rate of your positive submissions can rise up to 50-99 percent (depending on social service and other factors). But this success is only possible with a active circle of friends!</p><p>How to get friends on social communities? You should be able to answer this question at your-self, because it is not much different as in the real life. <span style="text-decoration: underline">Friendship grounds on mutuality and deserve much time</span>. Decide for yourself whether you are ready for it. However gaining new friends is in any case new experience and enrichment for everyone.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/03/factors-of-success-in-social-news-communities/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 2/128 queries in 0.098 seconds using disk: basic
Object Caching 1531/1831 objects using disk: basic

Served from: alexander.holbreich.org @ 2012-02-04 20:20:56 -->
