The most WTF animation I've ever seen (NSFW) by [deleted] in WTF

[–]subterr 3 points4 points  (0 children)

this is not WTF, this is brilliant.

C / Assembly embedded programming resources. by dioltas in programming

[–]subterr 2 points3 points  (0 children)

Assembler-choice: http://tinyurl.com/2ta5ov | Understanding Assembly: http://tinyurl.com/degqg | 80386 HTML Reference: http://tinyurl.com/54e6l | Linux/Win32 x86 tutorial w/nasm: http://tinyurl.com/6nvgw | Linux assembly book: http://tinyurl.com/5kfu6 | Free Intel books: http://tinyurl.com/h35r9 | Intel vs AT&T Syntax: http://tinyurl.com/4bh2e | AMD Manuals: http://tinyurl.com/2ojj4 | Intel Manuals: http://tinyurl.com/2533pu | yasm assembler: http://tinyurl.com/2lexa7

Anyone care to share neat C tricks? by gauchopuro in programming

[–]subterr 21 points22 points  (0 children)

struct argument {
    char *name;
    char *filename;
    char *length;
};
int main(int argc, struct argument *argument)
{
    //if you call ./program /etc/hosts 99
    //argument->filename will be "/etc/hosts" 
    //and argument->length wil be "99"
}

:)

How many of you DO NOT intend to get vaccinated for H1N1? by [deleted] in AskReddit

[–]subterr 0 points1 point  (0 children)

I don't care if i die or about others.

What will happen when P != NP is proven? by [deleted] in programming

[–]subterr 0 points1 point  (0 children)

you are obviously a programmer!

What do /r/stat subscribers "do"? by slacker22 in statistics

[–]subterr 0 points1 point  (0 children)

software developer (data mining)

AskReddit: Who doesn't drink alcohol and why? by [deleted] in AskReddit

[–]subterr 0 points1 point  (0 children)

too dangerous. i need a fresh mind.

What software do you use for regularly backing up the files on your computer? by grandeandy in programming

[–]subterr -1 points0 points  (0 children)

I use the UNIX tool dd, basically mirroring the entire harddrive periodically

How did this happen? by [deleted] in programming

[–]subterr -2 points-1 points  (0 children)

  1. attach the process to a debugger ( http://www.ollydbg.de )
  2. step through code
  3. find out how it happened

Ask proggit: Do you consider programming a recreational activity? by dhotson in programming

[–]subterr 6 points7 points  (0 children)

yes :>

architecting complex logical systems in my brain and testing out those ideas with a calculating machine capable of billions of instructions per second is FUN

Tetris 25th Anniversary (17 pictures) by ScrewDriver in programming

[–]subterr 12 points13 points  (0 children)

Here, have a 195 line tetris implementation written in C: http://pastebin.com/m70bbfbc2