Live data from Hacker News

Viewing profile — byronr

byronr

HN member
Joined
Wed, Jun 17, 2020, 9:45 PM UTC
HN karma
108
Public activity
14 items

About byronr

No profile information was provided.

Recent public activity

  1. comment
    Comment #27179514

    100% on the team making the most difference. (An aside: a software project I've been admiring recently is the Apollo Guidance Computer's. To the moon and back on a 15-bit 1s comple…

  2. comment
    Comment #27179250

    It's awesome to see all this Java expertise on this thread but at its essence -- a jar file doesn't define the program that's going to run. It's the union of a jar and the JVM it r…

  3. comment
    Comment #27178779

    Go and Java are close cousins. The difference is of course the JIT -- with Go the single binary means you can disassemble it to find out what it's trying to do. JIT adds a layer of…

  4. comment
    Comment #27178269

    I have written hundreds of thousands of lines of plain old C, as well hundreds of thousands of lines of Go over a career spanning three decades. I've used Go in earnest since 2013.…

  5. comment
    Comment #26671735

    No coercion needed. Pre-ANSI C does not have a void type, so unless otherwise specified the return type of a function defaults to int.

  6. comment
  7. comment
    Comment #26666701

    As an IOCCC winner I've had my winning entry verbatim on my resume for years. It's small enough to look like a decorative footer and it always garners comments. Your question has a…

  8. comment
    Comment #26560737

    It's hosted on github now and still serves as the login shell for me and presumably many others!

  9. comment
    Comment #26558537

    Yes, I did! I used Duff's paper as a reference, and relied on the good taste of all my beta testers to guide me towards a working shell. Back when source code was distributed via s…

  10. comment
    Comment #24301423

    The key word is "nameplate", a colorful term implying engraving and rivets: https://en.wikipedia.org/wiki/Nameplate_capacity

  11. comment
    Comment #24145245

    Writeup of the blit terminal's operating system is here, it consists of a lot more than the bitblt primitive, with many whole-system performance concerns at play: http://a.papnet.e…

  12. comment
    Comment #24138038

    > Rob Pike probably has never written a program where performance really mattered Rob Pike has written window system software which ran in what now would be called a "thin client" …

  13. comment
    Comment #23624029

    One of the eyewitnesses to Bach's playing was Constantin Bellermann. (chronicled in the Bach Reader) Bellermann wrote about a pedal solo that Bach played: he “ran over the pedals s…

  14. comment
    Comment #23557164

    I wrote a toy lisp 1.5 interpreter in Go a few years ago, and part of the joy was making the core of the interpreter mimic McCarthy's typography. This is my apply function: func ap…