Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-4041-

So, I'm going to program some C

Name: Anonymous 2008-07-02 11:47

*grabs debugger*

Name: Anonymous 2008-07-02 11:49

*grabs -O3*

Name: Anonymous 2008-07-02 11:50

I keep seeing it here, but what actually is -o3 ?

Name: Anonymous 2008-07-02 11:56

>>3
The compiler equivalent of V-TEC, it really speeds up a compiled program.

Name: Anonymous 2008-07-02 12:04

hax my anus

Name: Anonymous 2008-07-02 12:05

>>1
You don't need a debugger to program in C.

Name: Anonymous 2008-07-02 12:18

>>6
I don't need a debugger to program in C?  How do I inspect the state of my program at runtime?

Name: Anonymous 2008-07-02 12:20

It's dangerous to go alone take this!

*grabs dick*

xD

Name: Anonymous 2008-07-02 12:29

>>7
IMHO a debugger is a tool of last resort. Once you have exhausted every other avenue of diagnosis, and have given very careful thought to just rewriting the offending code, *then* you may need a debugger.

Name: Anonymous 2008-07-02 12:36

>>7
Terrible!

Name: Anonymous 2008-07-02 12:37

every other avenue of diagnosis
void main() {
    int i, j, *k;
    printf( "ENTERING MAIN LOOP\n" );
    printf( "SETTING VARIABLES\n" );
    i = 1;
    printf( "i=%d\n", i );
    j = 2;
    printf( "j=%d\n", j );
    k = 0;
    printf( "k=%d\n", k );

    printf( "PERFORMING LOGIC\n" );
    if ( i == j ) {
        printf( "THE VALUE OF I IS EQUAL TO J\n" );
        printf( "SETTING I TO THE VALUE AT K\n" );
        i = *k;
    }
    else {
        printf( "I = %d AND J = %d\n", i, j );
    }

    printf( "TIDYING UP THE STACK\n" );
}

Because using gdb to find the bug is much too difficult, and involves setting EXPERT CFLAGS.

Name: Anonymous 2008-07-02 12:48

>>11
This is not valid Java code. WTF are you doing?

Name: Anonymous 2008-07-02 12:51

>>9
How about you save us all a lot of headache and catch your memory errors with your debugger before making a release?

Name: Anonymous 2008-07-02 13:02

jdb is the Java debugger, incase you didn't know.

Name: Anonymous 2008-07-02 14:43

Debuggers are only useful to people that write buggy code.

Name: Anonymous 2008-07-02 14:52

>>15
I.e. you.

Name: Anonymous 2008-07-02 15:05

>>11,13
Since I started using Test Driven Development in 1999, I have not found a serious use for a debugger. The kinds of bugs I have to troubleshoot are easily isolated by my unit tests, and can be quickly found through inspection and a few judiciously placed print statements.

Name: Steve Ballmer 2008-07-02 15:06

DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS DEBUGGERS

Name: Anonymous 2008-07-02 16:55

I have never used a debugger in my two years of Haskelling :(

Name: Anonymous 2008-07-02 16:59

>>19
Now you have 2 problems.

Name: Anonymous 2008-07-02 17:12

Ah hate dem buggers

Name: Anonymous 2008-07-02 17:18

>>20
No, I never had a problem.

Name: Anonymous 2008-07-02 17:19

anus anus anus :(

Name: Anonymous 2008-07-02 17:25

I have never used a debugger in my two years of Haskelling :(

>>22

Name: Anonymous 2008-07-02 17:49

>>24
How does this post make sense?

Name: Anonymous 2008-07-02 19:09

>>25
I think >>24 was highlighting >>19,22's two problems.

Name: Anonymous 2008-07-02 20:22

I never need to debugger my code because i never bugger it to begin with.

Name: Anonymous 2008-07-02 21:01

>>9,17
2/10

Name: Anonymous 2008-07-03 12:51

I would gladly use GDB if it wasn't so unfriendly. But since it is, it's back to manual traces...

Name: Anonymous 2008-07-03 13:06

>>28
0/0

Name: Anonymous 2008-07-03 13:28

>>29
The only thing I really use GDB for is backtracing a segfault/etc. so I can find out where to look, and see the values of the variables at the time of the crash. Then it's back to manual traces.

Name: Anonymous 2008-07-03 13:48

>>29
Try M-x gdb or DDD.

Name: Anonymous 2008-07-05 17:55

>>31
Is there any other use?

Name: Anonymous 2008-07-07 10:46

>>31
valgrind + gdb =EXPERT DEBUGGER

Name: Anonymous 2008-07-07 10:54

DDD was very useful. Sadly, it died on 2008-05-06.

(2008/05/06) New plans for DDD. The ne problemw maintainer has communicated to the official DDD distribution list about the intention of change the GUI to a Qt based interface. At the end, it seems that what is going to happens is that DDD will have two branches, one with a GUI based in Qt and other based in Gtkmm, with a common core that will be independent of the GUI. So, it will be possible putting any other GUI based in any other library. As you know Qt is GPL v3 licensed.

Name: Anonymous 2010-12-17 1:38

Erika once told me that Xarn is a bad boyfriend

Name: Anonymous 2011-02-03 3:39

Name: Anonymous 2011-02-04 14:50

Name: Sgt.Kabukiman鴘ꪃ 2012-05-24 9:48

All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy
 All work and no play makes Jack a dull boy

Name: bampu pantsu 2012-05-29 4:02

bampu pantsu

Don't change these.
Name: Email:
Entire Thread Thread List