Live data from Hacker News

Viewing profile — _c_

_c_

HN member
Joined
Sun, Aug 21, 2016, 3:46 AM UTC
HN karma
20
Public activity
21 items

About _c_

No profile information was provided.

Recent public activity

  1. comment
    Comment #12402908

    https://archive.org/details/utzoo-wiseman-usenet-archive

  2. comment
    Comment #12374803

    Since we are joking, assuming that the MOV instruction exists on many CPU's, could the input for this compiler be considered a needed "portable assembly language"? http://cr.yp.to/…

  3. comment
    Comment #12370757

    In theory it should not make a difference but my scripts seem to run faster when I use exec after pipe. Normally I would only add exec to the last command in the script, as djb doe…

  4. comment
    Comment #12370592

    Thanks for taking the time to comment. Multiple arguments could be added if you want that. I personally do not need it as I search the cmdline patterns I need without using spaces.…

  5. comment
    Comment #12366570

    s/Unix/Linux/ The following can be adapted to provide other information: whatever procfs provides. This is a rough equivalent of "pgrep -fl .|less". Work-in-progress . Don't know i…

  6. comment
    Comment #12352332

    Why do programmers try to convince others which programming language to use? Why should they care what languages others are using?

  7. comment
    Comment #12351894

    I do not understand your argument. To give an example, there is a lot of free open source software mirrored all over the internet, mostly on ftp servers, but also on http, rsync, e…

  8. comment
    Comment #12349500

    So you are admitting you have not tested this and you are just going by what you read. When was the last time you used any "smaller Unices"? Anyway, even if the problems with -nogr…

  9. comment
    Comment #12349460

    Worse is that Google tries to stop scraping. It's like they don't want anyone to see past the first page of results. They could scrape your website and then they prevent you form s…

  10. comment
    Comment #12349241

    Are you saying you yourself do this? You're using BSD, running in VGA textmode, from which you run qemu with -nographic to load an image of another OS? You yourself are doing this?…

  11. comment
    Comment #12349182

    I was referring to how long it takes to build from source and how much RAM and CPU it uses while building. The interface is fine. I love Qemu. Bellard writes great software. My ear…

  12. comment
    Comment #12349148

    What OS are you using? Is it working for you in VGA text mode (no x11)? Is this now working on other UNIX-like OS besides Linux? I have had problems with -nographic in the past and…

  13. comment
    Comment #12344403

    From Rob Pike quote at the end, after the Ryan Dahl quote: "... the UNIX/POSIX/Linux systems of today are messier, clumsier and more complex than the systems the original UNIX was …

  14. comment
    Comment #12343926

    +1 for being able to run on Bochs. There's nothing minimalistic about Qemu. It's an enormous resource intensive program to build. And it's not even easy to run in text mode (no x11…

  15. comment
  16. comment
    Comment #12332902

    "While I wouldn't necesarily call it relevant to HN..." The song "Are you sure Hank done it this way?" was used in the computer game Grand Theft Auto V. I have always liked the gui…

  17. comment
    Comment #12332220

    MS-DOS was written for only one processor. UNIX kernels could run on a variety of processors, including ARM; UNIX was a relative latecomer to x86. As for Windows kernels, both then…

  18. comment
    Comment #12332120

    "It is simply a matter of familiarity." Your comment focuses on how fast the compiler generates lines of assembly, after the programmer has constructed a solution. But unless I hav…

  19. comment
    Comment #12329700

    Use int 80h for UNIX

  20. comment
    Comment #12329541

    How does Charles handle gzip,deflate? I use a short shell script for MITM. It simply runs two socats and netsed in between them. I create ca.pem and server2.pem with openssl, insta…

  21. comment
    Comment #12329474

    rm only removes OS "metadata" -- it removes the link to the reference. The file's data is not touched. Here's a stupid but effective way I came up with to delete the data in files …