Monatsarchiv für July 2006

Links vom Montag, 31. Juli 2006

Alle Links »

Links vom Freitag, 28. Juli 2006

Alle Links »

On the roxx 06

Morgen! Dirty Alex Connection, Fenzl Experience, Monomania, Rolando Furioso, The Mozzies und viele andere beim On the Roxx '06 Festival.

ONTHEROXX06

Links vom Montag, 24. Juli 2006

Alle Links »

Links vom Sonntag, 23. Juli 2006

Alle Links »

Setting the HTTP User-agent in Java

Just testing the newly installed iG:Syntax Hiliter Plugin while trying not to post something completely useless ;)

JAVA5:
  1. String userAgent = "my-user-agent/1.0";
  2. URL url = new URL("http://www.example.com/"); // would have to handle MalformedURLException
  3. URLConnection connection = null;
  4. InputStream is = null;
  5. try {
  6.   connection = url.openConnection();
  7.   // here's the essential line:
  8.   connection.addRequestProperty("User-Agent", userAgent);
  9.   is = connection.getInputStream();
  10.   // ...do something with that input stream...
  11. } catch (IOException e) {
  12.   LOG.error("Error reading " + url, e);
  13. } finally {
  14.   if (is != null) {
  15.     try {
  16.       is.close();
  17.     } catch (IOException e) {
  18.       if (LOG.isWarnEnabled()) {
  19.         LOG.warn("Error closing input stream: " + url, e);
  20.       }
  21.     } // catch
  22.   } // if
  23. } // finally

Claimed

Giving the claim feeds function in Bloglines a try...

Update: Hm, got it to work with the RDF and Atom Feeds, but not with RSS 0.92 and 2.0 (the latter being the default feed). Looks like I'm not the only one.

CS-Ei Meidling

Stefan Weber Grad einen Anruf vom Dirty Alex gekriegt. Wir sollen Anfang August als Playback Band in einem Filmprojekt aus dem Drahdiwaberl Dunstkreis mitmachen - irgendwas mit CS-Ei Meidling - und dort ein, zwei eigene (!) Nummern spielen, bzw. zu spielen vortäuschen. Keine Ahnung worums da geht, aber wär auf jeden Fall eine große Ehre für mich was mit den Heros meiner Jugend zu machen. 2x hatte ich schon die Ehre (mit der Hallucination Company), was mir unvergesslich bleiben wird, wegen der "Stefan, Stefan" Chöre und dem tieffliegendem Mikro Ständer.

Auf der Mulatschag TV Webseitn ist CS-Ei Meidling jedenfalls auch erwähnt:

Erstausstrahlung: Freitag, 21.Juli 2006, 21:00Uhr
auf Kanal 8 (Okto,VHFIII/196,25 MHZ)im Wr. Telekabel.

... CS-Ei MEIDLING...

Hm, heute mal im okto reinschaun.

Als ich die Neuigkeit zum Anlass genommen hab ein bissl auf den Drahdiwaberl Homepages herumzusurfen, sind mir übrigens 2 Sachen aufgefallen:

Dirty Alex Connection im G.H.G.C.

20 Jahre Großenzersdorfer Hetz und Gaudi Club. Klingt irgendwie altbacken, so nach Tombola, Linedancing und Tina Turner Imitatorinnen. Nix da, ab 16h wird gerockt.

Links vom Donnerstag, 20. Juli 2006

Alle Links »