Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
undecidabot
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
undecidabot
3mo ago
It got 46.2 on DeepSWE in Z.ai's own run[1]. That would put it between Opus 4.7 xhigh and Opus 4.8 medium. [1] https://z.ai/blog/glm-5.2
2.
▲
by
undecidabot
5mo ago
PG wrote about this back in 2004: https://www.paulgraham.com/pypar.html > Hence what, for lack of a better name, I'll call the Python paradox: if a company chooses to write its software in a comparatively esoteric l
3.
▲
by
undecidabot
1y ago
Trusted publishing is a thing now for many package registries, including npm: https://github.blog/changelog/2025-07-31-npm-trusted-publish...
4.
▲
by
undecidabot
2y ago
Also worth reading: Compiling with Continuations, Continued (2007) [1] [1] https://www.microsoft.com/en-us/research/wp-content/uploads/...
5.
▲
by
undecidabot
4y ago
System programming languages also used to refer to non-scripting languages. See this paper by John Ousterhout (creator of Tcl) written in 1997: https://users.ece.utexas.edu/~adnan/top/ousterhout-scripting...
6.
▲
Fonts and Layout for Global Scripts
(simoncozens.github.io)
1 points
by
undecidabot
6y ago
|
0 comments
7.
▲
by
undecidabot
6y ago
Ullman's book is really accessible and what introduced me to SML as well, but for those looking for something that goes a little deeper, do read "ML for the Working Programmer" by Lawrence Paulson (author of Isabelle). It has
8.
▲
by
undecidabot
6y ago
Brian Kernighan (the K in K&R and AWK) also wrote a similar book with P. J. Plauger called "The Elements of Programming Style" [1]. There's even a talk by him about it online (2009) [2]. Kernighan also co-authored a (imo)
9.
▲
by
undecidabot
6y ago
Relevant GitHub issue: https://github.com/w3c/wcag/issues/695 Also, a related HN discussion: https://news.ycombinator.com/item?id=21357638
10.
▲
by
undecidabot
6y ago
You can configure ssh-agent to ask for confirmation if you set the `-c` flag in ssh-add or by setting `AddKeysToAgent` to `confirm` in your ssh config [1]. Once set, authentication will require confirmation via a GUI dialog provided by the
11.
▲
Micro-Max, a 133-line Chess Source
(home.hccnet.nl)
2 points
by
undecidabot
6y ago
|
0 comments
12.
▲
by
undecidabot
7y ago
Slides: https://www.slideshare.net/cloudinarymarketing/imagecon-2019... Background: JPEG XL is a combination of Cloudinary's FUIF [1] (successor of FLIF [2]) and Google's Pik [3]. Committee Draft (Aug 2019):
13.
▲
JPEG XL: Next-Generation of Image Format for the Internet [video]
(youtube.com)
7 points
by
undecidabot
7y ago
|
3 comments
14.
▲
by
undecidabot
7y ago
I apologize for going off topic, but if the author is reading this (perhaps I should email him instead), please be informed that your work has been plagiarized on Amazon, by a book called "Python Programming: A Step By Step Guide From
15.
▲
by
undecidabot
7y ago
If the lack of action creators is a serious concern, then the one-liner-each action creator I suggested should be sufficient without adding much bloat. How would the ReasonML example deal with that change though? Can the variant constructor
16.
▲
by
undecidabot
7y ago
I don't have experience with Redux so I cannot comment on that, but I do believe my rewrite is equivalent to the ReasonML example (it should express the same thing and still be typesafe). While I'm sure the author did not intentio
17.
▲
by
undecidabot
7y ago
Yes, I eliminated the action creators. I don't see why they're necessary (maybe there's something about redux I'm missing?). The type constructors of ReasonML cannot be used as functions, so I think my rewrite is fair. I
18.
▲
by
undecidabot
7y ago
Looks like another biased comparison to me. You could easily rewrite the TypeScript reducer example (which fails to compile btw) to be similarly concise while being as safe. interface State { movies: string[] } // you
19.
▲
Build Your Own Language Runtime
(base9.xyz)
2 points
by
undecidabot
7y ago
|
0 comments
20.
▲
by
undecidabot
7y ago
Nice list. You might want to consider setting a "Referrer-Policy"[1] for sites with URLs that you'd prefer not to leak. Also, for "Set-Cookie", the relatively new "SameSite"[2] directive would be a good ad
21.
▲
by
undecidabot
7y ago
Link was taken from the course website[1]. TeX source is also on GitHub[2]. [1] https://iu.instructure.com/courses/1735985 [2] https://github.com/IUCompilerCourse/Essentials-of-Compilatio...
22.
▲
A Scheme Journey from Red to Tangerine and Beyond [video]
(vimeo.com)
1 points
by
undecidabot
7y ago
|
0 comments
23.
▲
Essentials of Compilation – An Incremental Approach [pdf]
(dropbox.com)
1 points
by
undecidabot
7y ago
|
1 comments
24.
▲
by
undecidabot
7y ago
It's mentioned in the design doc under "Properties of the proposed design": https://go.googlesource.com/proposal/+/master/design/32437-t...
25.
▲
Bare Metal Programming on Raspberry Pi 3
(github.com)
5 points
by
undecidabot
7y ago
|
0 comments
26.
▲
by
undecidabot
7y ago
For those who want to see it in action, there's actually a talk about kOS on YouTube: https://www.youtube.com/watch?v=kTrOg19gzP4 . The talk is by the fourth member, Geo, who also frequents HN (geocar).
27.
▲
OOP in C
(bearssl.org)
1 points
by
undecidabot
7y ago
|
0 comments
28.
▲
by
undecidabot
8y ago
Another great but lesser known CS book is "The Functional Approach to Programming". It uses Caml (a predecessor of OCaml). Like SICP, it covers a wide range of CS topics, although it's probably not as accessible as HtDP.
29.
▲
by
undecidabot
8y ago
For those who want a taste of Factor, check: http://re-factor.blogspot.com/ (You might want to scroll down past the release notes.)
30.
▲
by
undecidabot
8y ago
I don't think ML has the `where` clause. Haskell got it from Miranda, which got it from SASL, which got it from ISWIM.
More ›