Kategorie: computer

  • Fedora 11 ist da!

    Endlich, nach nur einigen kleinen Verzögerungen, ist es endlich erschienen: Fedora 11, genannt „Leonidas“! Was alles neu ist, das lässt sich den Release Notes entnehmen. Technischere Details zu einigen der Neuigkeiten kann man auch auf der „Feature List“-Seite im Wiki nachlesen. Wem jetzt schon das Wasser im Munde zusammenläuft, oder wer Fedora oder Linux allgemein…

  • Der kleine Unterschied

    Man beachte den kleinen Unterschied zwischen PHP und Python, der mich einige Zeit erstmal gekostet hat: PHP: &lt;?php class T { &nbsp;&nbsp;&nbsp;&nbsp;var $x = array(); } $a = new T(); array_push($a-&gt;x, 1); echo count($a-&gt;x); // <strong>Ausgabe: 1</strong> $b = new T(); array_push($b-&gt;x, 2); echo count($b-&gt;x); // <strong>Ausgabe: 1</strong> Dagegen ein nahezu äquivalentes Konstrukt in Python:…

  • Safe ’n‘ Simple

    Security is hard Sicherheit ist nicht einfach. Dies gilt allgemein, aber auch und insbesondere für Linux-Systeme. Denn wenn man – wie man es machen sollte – die /tmp-Partition mit noexec einbindet, so kommt es des öfteren vor, dass aptitude bzw. apt-get Probleme haben, da auf /tmp Skripte ausgeführt werden sollen. Das hat mich bei der…

  • Global Solutions!?

    Acting Globally – that usually means, that a company acts everywhere, right? Well, what about they act for everybody? Shouldn’t that be a part of calling oneself „global“? If so, at least one big, German company doesn’t get it: PS: The site does not really work with Firefox, either. That’s why I tried Opera in…

  • Snake-o-matic

    During my final diploma thesis, I need to collect a lot of data. Something like website-scraping, though a little bit different. Anyway, I needed (and still do need) some scripting language. I could have taken Perl, PHP, Ruby, … But no, there is also a snake present – so I decided to use Python as…