Archive for the 'Verschiedenes' Category

EU will mit “Telecom-Paket” weiter Bürgerrechte abbauen

Mit dem “Telecom-Paket” zeigt sich mal wieder die bedrohliche Seite der Europäischen Union - wie schon bei der Vorratsdatenspeicherung. Anscheinend versuche Lobbyisten erzwungene Spyware, Internetsperren und eine Abschaffund der Netzneutralität einzubringen.

Bei Netzpolitik und Fefe gibt es dazu gute Beiträge.

Meine Empfehlung: Lesen, Nachdenken und dann handeln, damit wir auch noch morgen in einem freiheitlich, demokratischen Staat leben können!

Planetquake Forum gefährlich?

Eclipse 3.4 Issues

After migrating to the latest Eclipse Release 3.4 aka Ganymede, I had to reinstall the essential plugins. Neither PDT nor Subclipse did work OOTB. For PDT you can follow the instructions from the PDT Wiki and for Subclipse have a look at the mailing list archives.

DDTSS

Did you every want to actually improve your favorite distribution? Then go to http://ddtp.debian.net/ddtss/index.cgi/xx and help translating Debian to your language!

Eclipse 3.4 - New Features

An interesting Screencast showing some of the new features in Eclipse 3.4 Ganymede can be found at the Screencast Blog.

Teamspeak 2 on Linux

Is was trying to get Teamspeak 2 (Client) running on a recent Version of Debian Lenny. The Problem was that, the Kernel was compiled w/o OSS Support. Installing “alsa-oss” solved my problem and Teamspeak ran perfect.

Hell freezes over

tarzan: M$ will odf als standartformat anbieten und amd liefert seine neuen grafikkarten mit linux treibern auf der cd aus…
tarzan:  komischer tag
tarzan:  wenn heute mal nicht die hölle zufriert

RESTlet: Selective Guards

When creating RESTful WebServices using the RESTlet API you may wan’t to create a selective Guard, i.e. a password protection for special HTTP methods only. Perhaps you want to allow all GET requests but require authentification for modifying requests like PUT or POST.

In this case you’ll need to extend the Guard class and overwrite the methods authenticate and authorize. An example implementation would look like this:

Continue reading ‘RESTlet: Selective Guards’

Visual Representation of SQL Joins

Coding Horror provides a great visual representation of SQL Joins, just in case you need one.

Apache: Force all Visitors to use HTTPS

When using Apache with SSL you may want to force all Visitors to use HTTPS instead of HTTP.

After configuring Apache for SSL you can achieve this by using this VirtualHost definition:

<VirtualHost <your-ip>:80>
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
</VirtualHost>

You should have the SSL-enabled VirtualHost running on the same IP.