Live data from Hacker News

Viewing profile — vq

vq

HN member
Joined
Sun, Nov 27, 2011, 5:11 PM UTC
HN karma
700
Public activity
99 items

About vq

No profile information was provided.

Recent public activity

  1. comment
    Comment #48952889

    TI-83 was built on Z80 as well. I remember hand-assembling a program for it with pen and paper, something I did earlier with the Sinclairs.

  2. comment
    Comment #48282631

    And Haskell is an ensemble of rainbows. It's very fun and pretty to look at. Type classes can smooth over some of it but it's not unusual to have to do some plumbing.

  3. comment
    Comment #47479803

    I didn't consider inlining but I believe you're correct, you could regain the optimisation for this example since the function is non-recursive and the application is shallow. The …

  4. comment
    Comment #47478542

    One slightly contrived example would be if you had a function that returned the point of a set closest to another given point. getClosest :: Set Point -> Point -> Point You could i…

  5. comment
    Comment #47478235

    One "feature of currying" in Haskell that isn't mentioned in the fine article is that parts of the function may not be dependent on the last argument(s) and only needs to be evalua…

  6. comment
    Comment #46914225

    It may or may not change everything.

  7. comment
    Comment #44464839

    Emacs is practically a product of AI research. Even if it didn't, it's distributed with a psychotherapist mode, hippie-expand (which I use almost every day) and dabbrev.

  8. comment
    Comment #43137497

    I maintain a couple of Debian servers and this is how I do it too. Reverse proxy, DB, etc from Debian. The application server is built and deployed with nix. The Python version (an…

  9. comment
    Comment #43132854

    Are you aware of Sioyek[0]? It's a PDF viewer with a fairly minimal UI and a focus on keyboard interaction. [0]: https://sioyek.info

  10. comment
    Comment #42807146

    It reminded me of the Sinclair Zeta[0][1]. I hope their product work out better. [0]: http://rk.nvg.ntnu.no/sinclair/vehicles/zeta.htm [1]: https://www.grantsinclair.com/vehiclehis…

  11. comment
    Comment #42500648

    The reason I spelled it out is because I don't use them even though they are available. I realise now that what I wrote is ambiguous, thanks for mentioning it.

  12. comment
    Comment #42500573

    I work almost exclusively in Emacs without the modern LSP-based tools. I believe I do keep more in my head than programmers that use more advanced IDEs. In code I have control over…

  13. comment
    Comment #42451736

    My python+numpy+matplotlib version from when I was playing around with it: import numpy as np import matplotlib.pyplot as plt n = 2048 X, Y = np.mgrid[:n,:n] plt.imshow(X^Y, cmap=p…

  14. comment
    Comment #42281018

    I've had luck with the Prologix Ethernet GPIB adapters[0]. At $500 I wouldn't call them cheap but they are a lot easier to integrate than those old NI/Keysight PCI/USB-based interf…

  15. comment
    Comment #41734682

    I live in Sweden where we have minimum 25 paid vacation days (I have 28) and 9 paid holidays. https://en.wikipedia.org/wiki/List_of_minimum_annual_leave_b...

  16. comment
    Comment #40056388

    Also not mentioned: SAAB 36[0], the supersonic bomber intended to carry nukes. [0]: https://en.wikipedia.org/wiki/Saab_36

  17. comment
    Comment #38844165

    The auto-quotation in jupyter-notebook (codemirror?) drives me bonkers. I certainly sympathise with the author.

  18. comment
    Comment #36920320

    Ericsson had an internal IRC server a long time ago.

  19. comment
    Comment #36890734

    Seems like I'm just slightly older (230381) with a two letter username.

  20. comment
    Comment #34470487

    Photopia by Adam Cadre. https://ifdb.org/viewgame?id=ju778uv5xaswnlpl It's short and sweet game and a good introduction to interactive fiction (IF) in my opinion.

  21. comment
    Comment #34103498

    I've used nix on Ubuntu and AlmaLinux. I'm betting that nix works on all the distros you listed.

  22. comment
    Comment #34015396

    You recall correctly. https://www.dell.com/community/XPS/FAQ-Modern-Standby/td-p/7...

  23. comment
    Comment #33588147

    I doubt there could ever be something official, but for me (and others,) nixpkgs serves as a central source for a huge amount of C and C++ code.

  24. comment
    Comment #33141695

    I'm closing in on 15 years of git usage as well. Before that for a short period I really wanted to get into darcs, the first DVCS I used. I was constantly confused about what comma…

  25. comment
    Comment #32885208

    I always run small mutations like that in a transaction. BEGIN; DELETE FROM product WHERE id=123; ROLLBACK; --COMMIT; And then I remove/comment the ROLLBACK and enable the COMMIT w…