Skip to content

web - Kampagne “Bauer sucht Land”

Die Agrarstruktur in Ostdeutschland ändert sich rasant. Spekulation und „Landgrabbing“ außer-landwirtschaftlicher Investoren sorgen für explodierende Bodenpreise und Mega – Betriebe, denen es nur um kurzfristige Gewinne und das Abschöpfen von Subventionen geht. Sie agieren ohne regionale Verankerung und Wertschöpfung. Umweltschutz, Nachbarschaftshilfe oder die Lebensqualität ländlicher Regionen spielen für diese Investoren kaum eine Rolle. Bäuerliche Betriebe und ExistenzgründerInnen haben in diesem „Agrar-Monopoly“ schlechte Karten. Die derzeitge Agrarpolitik begünstigt Großbetriebe und kapitalkräftige Investoren. Sie führt in den ostdeutschen Bundesländern zum Gegenteil dessen, was offiziell zur Zukunft der unserer ländlichen Räume postuliert wird: Die ländlichen Regionen bluten weiter aus. Tausende Arbeitsplätze auf dem Land gehen verloren. Regionale Kreisläufe werden durch die Agrarindustrie verdrängt. Die Artenund Sortenvielfalt sinkt. Massentierhaltung, Agrarwüsten, Lebensmittel- und Umwelt-skandalen sind Tor und Hof geöffnet. Kurz: Unsere Agrarkultur geht den Bach runter! Für die Folgen dieser Politik zahlen nicht die Verursacher, sondern alle. [...]
Quelle - und weiterlesen

Es hat nur Nachteile, wenn große Konzerne unser Land besitzen und bewirtschaften. Was passiert wenn der Bauern "von Gegenueber" durch ein Konzern ersetzt wird? Mann kann nichts mehr direkt beim Bauern kaufen. Der Großkonzern wird Monokulturen und "Ideal Standard Saatgut" (mit Gentechnik) benutzen, weil er nicht auf die aktuellen Gegebenheiten achtet, sondern auf allen Feldern das gleiche System fahren möchte. Die Produktvielfalt sinkt, eben wegen jenen Monokulturen. Gewinnen wandern zum Großkonzern und verbleiben dort auf irgend einer Steueroase, der Bauer "von um die Ecke" investiert in seine Gegend und das Geld bleibt dadurch in der Wertschöpfungskette.

web - Wir fordern starken Datenschutz in Europa! - digitalcourage.de

Mitmachen! Innenminister briefen Innenminister Hans-Peter Friedrich ist dafür zuständig, deutsche Positionen zur neuen Europäischen Datenschutzgrundverordnung in den Ministerrat der Europäischen Union hineinzutragen. Hier versuchen - vor allem us-amerikanische - Lobbyisten, Datenschutz nahezu abzuschaffen. Durch geschickte Formulierungstricks und viele Ausnahmebestimmungen würde das neue Europäische Datenschutzrecht nahezu wirkungslos. Und das Schlimmste: Unser bisheriges bundesdeutsche Datenschutzgesetz wird dadurch ausgehebelt. Auf Youtube gibt's ein kleines Erklär-Video dazu. Hier müssen wir aktiv werden. Wir müssen Druck auf Ministerrat und Parlamentarier ausüben, damit diese nicht nur Konzerninteressen vertreten, sondern auch uns Menschen in Europa. Wir sammeln deswegen hier bis zum 2. Juni 2013 Unterzeichnerinnen und Unterzeichner unseres offenen Briefes an Innenminister Friedrich, den wir ihm anschließend übergeben werden.
Mitmachen

howto - zfsonlinux zpool export device busy arch linux

Since i migrate to zfs where it is possible, i did this also with an usb storage. Today, i want to export a pool to use it in my laptop. I finished all i want to do and want to remove the zpool from my system via

zpool export mypool
. The result:
umount: /foo/bar/mypoo/foobar: target is busy. (In some cases useful info about processes that use the device is found by lsof(8) or fuser(1)) cannot unmount '/foo/bar/mypoo/foobar': umount failed
Ok, maybe it needs some time to finish writing/flushing the cache so i gave him another 15 minutes. I tried again and the same error message. I used "lsof" but nothing inside when i grep for "mypool". After taking a long look over the internet, the only solution i found was using
zpool export -f mypool
but again, same error. After strange threads talking about "you have to restart your usb module" i just took a look to the current running systemd units by using
systemctl list-units
and guess what? There are units running for each mountpoint the zfs pool had. All i had to do is to stop the unites and the run "
zpool export mypool
the last time :-).

tool php classmap generator packagist

After a month, i've finished a tool to create a classmap from a php project. The current stable version is v1.4 and can be found on github.com as well as on packagist.org. Why? Well, obviously because i can (and wanted to learn a few things like tokens, or symfony console) ;-). But for real, when you have to deal with legacy projects or code but want to remove the strange and slow existing autoloader (with all its exception), the easiest way to do this is by using a classmap. I also tried to find a classmap generator that can deal with psr-0 and not psr-0 files, all i could find are generators that support psr-0 files. A classmap itself is just a php array. The key is the full qualified classname and the value is the relative path to the file. Creating a classmap on your own is suitable when you have to manage a number of files below 20. But when it comes to more you can not effort the time to maintain that file. So for a lot of files that are not covert by composer, the classmap generator should be well suitable. It is planned to implement a "phar" classmap generation for the upcoming version. When you want to create phar files, this could be a timesaver as well. The classmap generator is build by using symfony\console and yes, it is a joy to work with that component! Shame on me, the current version is not covered by unittests. After i implemented the current features from the todo list, this will be my major task.

The classmap generator can handle all kind of php files like: - Interface - Abstract Class - Class The generator can handle files with or without namespace. Even files with multiple definitions (interface, abstract class and class in one file) is no problem. Furthermore, you can create multiple configuration files and update this classmaps when needed. Like well known from the composer, the classmap generator is able to create a autoloader file for you. The created autoloader will use the created classmap file and supports psr-0 autoloading. source/link to the wiki

What is left to write? Of course i'm proud about this. What you see right now is the work of one month and after i finished the core design, i rebuild a lot by replacing my cli application class with the symfony\console component. I hope you can use the tool. If you need help or found a bug, contact me on github.com