Search Results - JustLinux Forums


Search:

Type: Posts; User: Strogian

Page 1 of 20 1 2 3 4

Search: Search took 0.24 seconds.

  1. Replies
    9
    Views
    1,208

    have you checked the kde source code?

    have you checked the kde source code?
  2. Replies
    5
    Views
    951

    ok i'll say what it is i've been examing an...

    ok i'll say what it is

    i've been examing an NE-executable (DLL) file (old 16-bit windows format). I've mapped out the whole thing, but of course there are gaps in between segments, due to the...
  3. Replies
    5
    Views
    951

    binary file mystery

    if anyone can tell me what this is, i'll be seriously impressed:



    000eef0: 6b00 0000 0000 0000 0000 0000 0000 0000 k...............
    000ef00: 0000 0000 0000 0000 0000 0000 0000 0000 ...
  4. Replies
    15
    Views
    2,000

    level 0: machine language assembly: can do no...

    level 0: machine language
    assembly: can do no more than machine language
    C: can do no more than assembly
    CLI: can (usually) do no more than C
    GUI: can (usually) do no more than CLI

    that and...
  5. Replies
    2
    Views
    1,101

    Maybe there was an error during installation

    Maybe there was an error during installation
  6. Replies
    6
    Views
    6,680

    hmm don't think that did anything. ...

    hmm don't think that did anything.



    according to that, looks like i'm in vi mode, because uu definitely doesn't undo two things. :)
  7. Replies
    6
    Views
    6,680

    How Do I Undo A Write In Vim RIGHT NOW

    god, i'm an idiot. i knew i should've backed it up beforehand :D

    anyway, here's what i did:

    i made a file, ne.c, with all my functions in it.
    to make the ne.h, I figured I would just do a...
  8. er, well, you can only use the standard library...

    er, well, you can only use the standard library if you want it to be cross platform.

    how about freopen() ?
  9. Replies
    16
    Views
    1,522

    i'd tap that

    i'd tap that
  10. i've seen this before. iirc, the problem was...

    i've seen this before. iirc, the problem was somewhere in the CSS, i think in a width property
  11. Replies
    32
    Views
    2,899

    they don't keep it forever though, as far as we...

    they don't keep it forever though, as far as we know
  12. Replies
    8
    Views
    826

    because they can. ;) a stack is the most...

    because they can. ;) a stack is the most straightforward, and efficient way of modelling function calls. you can recurse infinitely, and all you have to do it keep throwing more stuff on the...
  13. Replies
    5
    Views
    735

    i don't plan on ever using pascal for anything,...

    i don't plan on ever using pascal for anything, ever. the only reason i'd ever learn is if i had to read pascal code. hasn't happened yet. i've never heard of a program written in pascal. :D
  14. Replies
    8
    Views
    826

    malloc() pulls space from the heap. all...

    malloc() pulls space from the heap. all automatic variables (i.e. declared in a function) are on the stack. main() is just a function, like any other, so its variables are on the stack, too.
    ...
  15. Replies
    10
    Views
    7,536

    do a google search for beej

    do a google search for beej
  16. Replies
    13
    Views
    1,046

    slackware has elvis. i remember that from long...

    slackware has elvis. i remember that from long ago, when i used to use linux.
  17. Replies
    8
    Views
    826

    Re: Consts and initialisation

    ok, well you seem to have misread, first off.

    i don't remember this stuff too well, but i am 100% sure that BSS does not hold constants of any sort. it holds uninitialized global data. (that...
  18. Replies
    5
    Views
    922

    RodNICE? More like RodMEAN..

    RodNICE? More like RodMEAN..
  19. Replies
    7
    Views
    789

    ahh, you don't need to do that, just run this...

    ahh, you don't need to do that, just run this script! :D


    xxd -ps $1 |
    (echo 'unsigned char edata[] = {' &&
    sed 's/[[:xdigit:]][[:xdigit:]]/0x&,/g' &&
    echo $'};') >> $1.def.c
    gcc -c...
  20. Replies
    7
    Views
    789

    a compiler turns a file into .o (gcc) a linker...

    a compiler turns a file into .o (gcc)
    a linker links it into your program. (ld)

    not exactly sure what you're asking ;)

    unless 'file' means 'ELF executable', then i have no idea :)
  21. another option: a named pipe mkfifo in bash...

    another option: a named pipe

    mkfifo in
    bash <in

    then on another terminal:
    echo "ls" >in

    doesn't work quite right like that (it terminates the special bash after running 'ls'), but it's...
  22. yeah, if you could emulate a '\n' then you...

    yeah, if you could emulate a '\n' then you wouldn't need to do any of this signal stuff. ;) what you'd need to do is put input wherever the session is reading it from.

    thinking of this, i wonder...
  23. you can set signal handlers on bash sessions,...

    you can set signal handlers on bash sessions, right? you could just set a signal handler on some unused signal, then send the process the signal you want whenever you want the command to run.
    ...
  24. Replies
    16
    Views
    1,871

    hmm, i thought that's how the power switch...

    hmm, i thought that's how the power switch worked, it just closes for a split secod
  25. Replies
    16
    Views
    1,691

    Ah, excellent way to learn C. Do what gives less...

    Ah, excellent way to learn C. Do what gives less segfaults. :D

    But yeah, really, a char* has to POINT TO something. (a char, to be precise). Either it has to be passed in already pointing to...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4