Viewing profile — vq
vq
HN member- Joined
- Sun, Nov 27, 2011, 5:11 PM UTC
- HN karma
- 700
- Public activity
- 99 items
- HN profile
- View on Hacker News ↗
About vq
No profile information was provided.
Recent public activity
-
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.
-
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.
-
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 …
-
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…
-
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…
-
comment
Comment #46914225
It may or may not change everything.
-
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.
-
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…
-
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
-
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…
-
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.
-
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…
-
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…
-
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…
-
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...
-
comment
Comment #40056388
Also not mentioned: SAAB 36[0], the supersonic bomber intended to carry nukes. [0]: https://en.wikipedia.org/wiki/Saab_36
-
comment
Comment #38844165
The auto-quotation in jupyter-notebook (codemirror?) drives me bonkers. I certainly sympathise with the author.
-
comment
Comment #36920320
Ericsson had an internal IRC server a long time ago.
-
comment
Comment #36890734
Seems like I'm just slightly older (230381) with a two letter username.
-
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.
-
comment
Comment #34103498
I've used nix on Ubuntu and AlmaLinux. I'm betting that nix works on all the distros you listed.
-
comment
Comment #34015396
You recall correctly. https://www.dell.com/community/XPS/FAQ-Modern-Standby/td-p/7...
-
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.
-
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…
-
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…