Search:

Type: Posts; User: fronty

Page 1 of 6 1 2 3 4

Search: Search took 0.01 seconds.

  1. When using a ready-made browser engine, you don't...

    When using a ready-made browser engine, you don't have to do anything but some menus and dialogs and tab system and like that. That isn't anything to be amazed from. The things to be amazed from are...
  2. Replies
    19
    Views
    41,550

    The language which K&R 2nd edition covers is...

    The language which K&R 2nd edition covers is "close enough" to C89 (== C90), nothing major happened after publishing of that book (during C89 development).
  3. Replies
    19
    Views
    41,550

    List of compilers - Wikipedia, the free...

    List of compilers - Wikipedia, the free encyclopedia
  4. No one is going to be impressed by some random UI...

    No one is going to be impressed by some random UI for some random browser engine if the UI doesn't have any amazing new concepts. So if the point is making ........ing amazing UI for a browser, just...
  5. What don't you understand about those operators?...

    What don't you understand about those operators?

    a AND b is true, if both a and b are true.
    a OR b is true, if at least one of a and b is true.
    NOT is negation, NOT true is false, NOT false is...
  6. With little effort all programmers can understand...

    With little effort all programmers can understand roughly any language, except maybe some exotic types of language.
  7. Replies
    5
    Views
    2,962

    IMO the main problem to solve is how to store the...

    IMO the main problem to solve is how to store the file contents internally, because everything else except some ui stuff is built over the internal data structure containing the file contents. Gap...
  8. Replies
    2
    Views
    1,109

    $ for f in $(find .); do > mv $f $f.tmp > ...

    $ for f in $(find .); do
    > mv $f $f.tmp
    > sed -e 's/<CERTAIN STRING>//g/' < $f.tmp > $f
    > rm $f.tmp
    >done
  9. Replies
    13
    Views
    2,812

    IMO you gave an image that it is specific to...

    IMO you gave an image that it is specific to Pelles C, which is wrong, and in that case it should've been noted that it isn't standard way.


    Your point here is...?


    IMO your information was...
  10. Replies
    13
    Views
    2,812

    In STANDARD C, that creates an unsigned 64-bit...

    In STANDARD C, that creates an unsigned 64-bit integer which has values 0-2^64-1. It isn't only Pelles C's feature, and your description of the value range was very vague.
  11. Replies
    261
    Views
    38,031

    Just a quick thought without much thinking behind...

    Just a quick thought without much thinking behind it:

    For a real number m in base-10 with n digits in decimal part and o digits in integer part: m = sum(i = o .. -n)(a_i * 10^i). Isn't 10m = sum(i...
  12. Replies
    5
    Views
    6,967

    No, the reason is that you can't generate truly...

    No, the reason is that you can't generate truly random numbers.
  13. Replies
    13
    Views
    3,054

    It can be any of those or some combination.

    It can be any of those or some combination.
  14. In fact it is originally a radio comedy by...

    In fact it is originally a radio comedy by Douglas Adams, but it's better known (at least in Finland and as far as I know in other parts of world) as a book, which is part of Adams book series, which...
  15. Replies
    5
    Views
    4,772

    Super user's uid is 0 on all posix-ish operating...

    Super user's uid is 0 on all posix-ish operating systems.
  16. Replies
    5
    Views
    4,772

    Why don't you do the thing id does by yourself?...

    Why don't you do the thing id does by yourself? It will be quite a lot simpler and cleaner. getuid(2) and geteuid(2).
  17. Replies
    11
    Views
    2,019

    I call raptors on a programmer who names his...

    I call raptors on a programmer who names his functions like standard functions but make them behave differently.



    That clarifies things.
  18. Replies
    11
    Views
    2,019

    No, you shouldn't have to. Linker is smart: the...

    No, you shouldn't have to. Linker is smart: the printf(3) in your objects will override the printf(3) coming from libraries.

    I don't understand how optimizing printf("%s\n", s) to puts(s) would be...
  19. Replies
    23
    Views
    4,347

    I think the hook here is to do it with recursion....

    I think the hook here is to do it with recursion. I think he would've come up with some other way to implement it if his job was just to implement that series.
  20. Replies
    6
    Views
    1,728

    If you're on UNIX or UNIX-ish system, check your...

    If you're on UNIX or UNIX-ish system, check your systems (or POSIX which I linked) manual for signal.h, sigaction(2) and then refer to other manuals if needed. ^C raises normally SIGINT, sometimes it...
  21. Replies
    6
    Views
    1,728

    Are you /completely/ sure you want to handle is a...

    Are you /completely/ sure you want to handle is a processor interrupt and not something like a user level signal? If so, you got to tell which processor architecture you are programming for so anyone...
  22. Replies
    6
    Views
    3,611

    Of course many can solve that. But what have you...

    Of course many can solve that. But what have you done so far?
  23. Replies
    25
    Views
    4,758

    If I take looots of snow, as much as I can, it's...

    If I take looots of snow, as much as I can, it's not snow anymore.

    If I take looots of green, as much as I can, it's lime, not green.

    EDIT: And by the way, at least all the limes I've seen are...
  24. Replies
    12
    Views
    5,061

    I wouldn't recommend Crenshaw articles to anyone....

    I wouldn't recommend Crenshaw articles to anyone. I think starting with something which provides good background and good implementation would be better, I don't think Crenshaws provide either of...
  25. Replies
    45
    Views
    8,533

    I think using linked list containing every line...

    I think using linked list containing every line on a node inside some very simple malloc'd dynamic array implementation won't be very hard, even simpler with hard coded maximum line length like in...
Results 1 to 25 of 132
Page 1 of 6 1 2 3 4