frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Category Theory Illustrated – Orders

https://abuseofnotation.github.io/category-theory-illustrated/04_order/
42•boris_m•2h ago•9 comments

Amiga Graphics

https://amiga.lychesis.net/
33•sph•2h ago•1 comments

Show HN: I made a calculator that works over disjoint sets of intervals

https://victorpoughon.github.io/interval-calculator/
139•fouronnes3•7h ago•22 comments

Claude Design

https://www.anthropic.com/news/claude-design-anthropic-labs
1023•meetpateltech•17h ago•669 comments

The simple geometry behind any road

https://sandboxspirit.com/blog/simple-geometry-of-roads/
19•azhenley•2d ago•3 comments

Measuring Claude 4.7's tokenizer costs

https://www.claudecodecamp.com/p/i-measured-claude-4-7-s-new-tokenizer-here-s-what-it-costs-you
601•aray07•17h ago•427 comments

Towards trust in Emacs

https://eshelyaron.com/posts/2026-04-15-towards-trust-in-emacs.html
97•eshelyaron•2d ago•11 comments

All 12 moonwalkers had "lunar hay fever" from dust smelling like gunpowder (2018)

https://www.esa.int/Science_Exploration/Human_and_Robotic_Exploration/The_toxic_side_of_the_Moon
324•cybermango•14h ago•190 comments

Rewriting Every Syscall in a Linux Binary at Load Time

https://amitlimaye1.substack.com/p/rewriting-every-syscall-in-a-linux
38•riteshnoronha16•4d ago•13 comments

Spending 3 months coding by hand

https://miguelconner.substack.com/p/im-coding-by-hand
200•evakhoury•16h ago•197 comments

A simplified model of Fil-C

https://www.corsix.org/content/simplified-model-of-fil-c
171•aw1621107•11h ago•87 comments

It is incorrect to "normalize" // in HTTP URL paths

https://runxiyu.org/comp/doubleslash/
21•pabs3•2h ago•10 comments

Are the costs of AI agents also rising exponentially? (2025)

https://www.tobyord.com/writing/hourly-costs-for-ai-agents
194•louiereederson•2d ago•48 comments

Brunost: The Nynorsk Programming Language

https://lindbakk.com/blog/introducing-brunost
56•atomfinger•4d ago•22 comments

Show HN: Smol machines – subsecond coldstart, portable virtual machines

https://github.com/smol-machines/smolvm
326•binsquare•15h ago•99 comments

Slop Cop

https://awnist.com/slop-cop
171•ericHosick•17h ago•100 comments

Show HN: PanicLock – Close your MacBook lid disable TouchID –> password unlock

https://github.com/paniclock/paniclock/
186•seanieb•16h ago•78 comments

"cat readme.txt" is not safe if you use iTerm2

https://blog.calif.io/p/mad-bugs-even-cat-readmetxt-is-not
173•arkadiyt•14h ago•93 comments

Hyperscalers have already outspent most famous US megaprojects

https://twitter.com/finmoorhouse/status/2044933442236776794
188•nowflux•16h ago•147 comments

Middle schooler finds coin from Troy in Berlin

https://www.thehistoryblog.com/archives/75848
229•speckx•18h ago•102 comments

NASA Force

https://nasaforce.gov/
268•LorenDB•16h ago•266 comments

Landmark ancient-genome study shows surprise acceleration of human evolution

https://www.nature.com/articles/d41586-026-01204-5
75•unsuspecting•10h ago•61 comments

Making Wax Sealed Letters at Scale

https://waxletter.com/
16•hjconstas•2d ago•12 comments

NIST gives up enriching most CVEs

https://risky.biz/risky-bulletin-nist-gives-up-enriching-most-cves/
198•mooreds•17h ago•50 comments

Casus Belli Engineering

https://marcosmagueta.com/blog/casus-belli-engineering/
34•b-man•7h ago•7 comments

The Unix executable as a Smalltalk method (2025) [video]

https://www.youtube.com/watch?v=sZjPQ7vtLNA
52•surprisetalk•1d ago•3 comments

Introducing: ShaderPad

https://rileyjshaw.com/blog/introducing-shaderpad/
91•evakhoury•2d ago•18 comments

Arc Prize Foundation (YC W26) Is Hiring a Platform Engineer for ARC-AGI-4

https://www.ycombinator.com/companies/arc-prize-foundation/jobs/AKZRZDN-platform-engineer-benchma...
1•gkamradt_•11h ago

The GNU libc atanh is correctly rounded

https://inria.hal.science/hal-05591661
89•matt_d•3d ago•19 comments

Ban the sale of precise geolocation

https://www.lawfaremedia.org/article/it-is-time-to-ban-the-sale-of-precise-geolocation
693•hn_acker•18h ago•176 comments
Open in hackernews

FIXAPL

https://fixapl.netlify.app/
59•tosh•6d ago

Comments

tosh•1d ago
FIXAPL is an interesting spin on APL without overloading on arity.

Many array languages overload glyphs on arity so they basically behave depending on if you call them with 1 argument (in "monadic form") vs 2 arguments ("dyadic form")

monadic: G A1

dyadic: A1 G A2

where G is the glyph and AN are arguments

The overloading can lead to confusion (but is also interesting in its own way because you can reduce the number of glyphs in the language surface).

That overloading is I would say also one of the reasons array languages might not be as approachable and one aspect of the 'difficult to read' argument.

Maybe even more important: avoiding overloading on arity helps with composition (I still have to dig into this deeper).

vegabook•1d ago
How does typescript perform on arrays compared with BQN for example whose reference CBQN implementation extensively uses AVX / Neon?
mlajtos•1d ago
This is a good idea.

Monadic/dyadic case for single glyph works nice only when you have a default value associated with it. For example `√16` is actually `2√16`. Or `log 100` is `10 log 100`. And `-3` is `0-3`.

electroly•1d ago
I like it. Genuinely, I think APL only reuses glyphs for dramatically different monadic vs. dyadic behavior because there were limited positions available on a Selectric type ball. Many glyphs are reused as-is for multiple meanings, and they had to build some glyphs by overstriking a second glyph on top of an existing one. None of this is a concern these days.

That said, some of the reuses do make sense. ⍴ as monadic shape and dyadic reshape makes perfect sense. In FIXAPL, shape is △ and reshape is ⍴; the symbols have nothing to do with each other. I think that particular separation is a loss rather than a gain.