Willkommen ~Gast!
Registrieren || Einloggen || Hilfe/FAQ || Staff
Probleme mit der Registrierung im Forum? Melde dich unter registerEin Bild.
Autor Beitrag
000
01.04.2010, 10:32
Fratzi



Keine Aprilscherze dieses Jahr!
Der Hund hat alle Hasen gefressen. :(

;-)

--

Source SDK

zum Seitenanfang zum Seitenende Profil || Suche
001
01.04.2010, 10:32
Fratzi



Ist das Bild zu krass? Vermutlich :X

--

Source SDK

zum Seitenanfang zum Seitenende Profil || Suche
002
01.04.2010, 11:06
maurice



--

Interstellar - visual love

I'm not random, i just have many thoug... Oh look, a Squirrel!

zum Seitenanfang zum Seitenende Profil || Suche
003
01.04.2010, 11:12
Bluthund



Oh snap. Ich dachte die Kooperation mit cstrike.de wird bekannt gegeben... :P

--

The C language combines all the power of assembly language with all the ease-of-use of assembly language.
"humorig is n blödwort :>" by -CarniGGeLjumpR-

zum Seitenanfang zum Seitenende Profil || Suche
004
01.04.2010, 13:01
Kriz



http://www.tagesschau.de/ausland/internetabschaltung100.html

Und die Auflösung...

http://www.tagesschau.de/inland/internetabschaltung104.html

Also Leute, für einen Moment dachte ich echt: Oh Scheiße, kein IPv6 am Start!

Der Aprilscherz war echt heftig für mich :)

--

K:R-I)Z++
"CSS ist cascading style sheets. Und nicht so'n Ranzspiel." - dp
In memory of Voice († 2005/03/30)

zum Seitenanfang zum Seitenende Profil || Suche
005
01.04.2010, 22:13
Bluthund



Andere imho gute Aprilscherze:

unixkcd (mit netten Antworten des CLI auf einige der haeufig genutzten Tools)
Google Reader - ReaderAdvantage™ Program

edit:
Und noch einer:
Google Annotations Gallery

--

The C language combines all the power of assembly language with all the ease-of-use of assembly language.
"humorig is n blödwort :>" by -CarniGGeLjumpR-


Dieser Beitrag wurde am 02.04.2010 um 00:19 von Bluthund bearbeitet.
zum Seitenanfang zum Seitenende Profil || Suche
006
02.04.2010, 11:17
Seker



Natural selection 2 _______' Reveal

--

http://www.naturalselection2.com/


Dieser Beitrag wurde am 02.04.2010 um 11:18 von Seker bearbeitet.
zum Seitenanfang zum Seitenende Profil || Suche
007
06.04.2010, 16:51
Raziel



Kann man das Bild rausnehmen oder als Link reinstellen? Ostern ist vorbei und ich hab keine Lust das Bild für die nächsten paar Monate immer als erstes zu sehen, wenn ich thewall aufrufe. Wollt nicht kleinlich sein :/

--

zum Seitenanfang zum Seitenende Profil || Suche
008
06.04.2010, 17:46
Bluthund



Quellcode:// ==UserScript==
// @name           thewall.de I don't like hare-eating dogs
// @include        http://www.thewall.de/
// ==/UserScript==

if (document.location == 'http://www.thewall.de/') {
    (function() {
        var badPicUrl = 'http://i886.photobucket.com/albums/ac66/Xtreme_airy/Posters/Easter.jpg'

        for (i in document.images) {
            if (document.images[i].src == badPicUrl) {
                var oldNode = document.images[i];
                var newNode = document.createElement('a');
                newNode.setAttribute('href', badPicUrl)
                newNode.textContent = badPicUrl;

                oldNode.parentNode.replaceChild(newNode, oldNode);
                break;
            }
        }
    }())
}
There ya go, mate.

Oder etwas kompakter in der Geschmacksrichtung XPath:
Quellcode:// ==UserScript==
// @name           thewall.de I don't like hare-eating dogs
// @include        http://www.thewall.de/
// ==/UserScript==

if (document.location == 'http://www.thewall.de/') {
    (function() {
        var badPicUrl = 'http://i886.photobucket.com/albums/ac66/Xtreme_airy/Posters/Easter.jpg'
        var oldNode = document.evaluate('//img[@src="'+ badPicUrl +'"]', document.documentElement, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;

        var newNode = document.createElement('a');
        newNode.setAttribute('href', badPicUrl)
        newNode.textContent = badPicUrl;

        oldNode.parentNode.replaceChild(newNode, oldNode);
    }())
}

--

The C language combines all the power of assembly language with all the ease-of-use of assembly language.
"humorig is n blödwort :>" by -CarniGGeLjumpR-


Dieser Beitrag wurde am 06.04.2010 um 18:00 von Bluthund bearbeitet.
zum Seitenanfang zum Seitenende Profil || Suche
009
06.04.2010, 19:29
Dopefish



... oder adblock.

--

Resetting politics:
http://www.onlinepartei.eu

zum Seitenanfang zum Seitenende Profil || Suche