Mrz 31 2009

I hate… II

Christoph

// I hate documentation work and I won’t document this code
// before any one besides me actually uses it. So if you want
// to use it simply write a mail on the ClanLib User list and
// I will do what I can :-)

Quelle: Direktlink zum Source Code
Package / Software: ClanLib
Programmiersprache: C++

1 Star2 Stars3 Stars4 Stars5 Stars (5 Bewertungen, Durchschnitt: 4.60 von 5)
Loading ... Loading ...

Mrz 30 2009

You dont know how to code

Christoph

if($info =~ /(.+)<br./>.<b>Warning.(.+)<br./>.<b>Warning/)
# this is pretty funny that you capture two strings and only
# use one. showing again that you dont know how to code
# but instead copy paste also what is the point of <br./>?
# were you trying to match <br >? they have this thing
# called “s” it stands for “space” not that you would know
# for reasons mentioned before. also why do you have
# Warning.(.+) ? did you mean to escape the special
# character “.”? Do you even know what escaping is…….
# How about:
# if($info =~ /(.+)<brs/>.<b>Warning..+<brs/>.
# <b>Warning/){
    print “$finaln”;
    last;
# ^ SEE THE TAB MAKES YOUR CODE READABLE NOT LIKE ANYONE USES
# YOUR BULLSH*T ANYWAY

Quelle: Direktlink zum Source Code
Package / Software: Perl Underground
Programmiersprache: Perl

1 Star2 Stars3 Stars4 Stars5 Stars (4 Bewertungen, Durchschnitt: 5.00 von 5)
Loading ... Loading ...

Mrz 28 2009

No sleep til brookyn

Christoph

# I wrote this very late at night. It may well be total shit
# but it appears to work. I am stressed out and should
# probably go to bed.

Quelle: Direktlink zum Source Code
Package / Software: 20,000 Light Years Into Space
Programmiersprache: Python

1 Star2 Stars3 Stars4 Stars5 Stars (2 Bewertungen, Durchschnitt: 4.50 von 5)
Loading ... Loading ...

Mrz 27 2009

Nifty thing

Christoph

my $port = 1;
$file = “/home/retail/perl/ports.txt”;
# Why do you declare $port with my, and then make $file
# a package variable?
while($port < 10000){
    # You've got to be kidding me...
    # See, in Perl, we have this nifty thing called a
    # for() loop. It's very useful in situations like this.
    # for my $port (1..10000) {
    # ...
    # }
[...]

Quelle: Direktlink zum Source Code
Package / Software: Perl Underground
Programmiersprache: Perl

1 Star2 Stars3 Stars4 Stars5 Stars (3 Bewertungen, Durchschnitt: 5.00 von 5)
Loading ... Loading ...

Mrz 26 2009

Learn to code

Christoph

/*
 * [ sarcastic program description here ]
 * pff, hey kiddiez! this program sends mad packets to some
 * foo from every broadcast address on earth, mad leet yo…
 * (you really wanna know what it does? LEARN TO CODE! and
 * stop being a gayass f*ckin script kiddie)
 */

Quelle: Direktlink zum Source Code
Package / Software: Packet St0rm
Programmiersprache: C

1 Star2 Stars3 Stars4 Stars5 Stars (4 Bewertungen, Durchschnitt: 5.00 von 5)
Loading ... Loading ...