frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

GenAI Image Editing Showdown

https://genai-showdown.specr.net/image-editing
2•Hard_Space•8m ago•0 comments

Show HN: Project Journal – Give AI coding assistants persistent memory

https://github.com/CursorWP/ai-project-journal
1•CursorWP•10m ago•0 comments

Sandbox Your Program Using FreeBSD's Capsicum [video]

https://www.youtube.com/watch?v=Ne4l5U_ETAw
1•todsacerdoti•10m ago•0 comments

TIL: Figma provides a helper function for gradient transforms

https://wpconverters.com/demystifying-figmas-gradient-transformations-a-developers-guide
1•drzivil•15m ago•1 comments

Scientists are racing to grow human teeth in the lab

https://www.cnn.com/science/lab-grown-human-teeth-spc
1•breve•18m ago•0 comments

We want to move Ruby forward

https://andre.arko.net/2025/10/26/we-want-to-move-ruby-forward/
2•ciconia•20m ago•0 comments

The Magic of Precision Engineering

https://www.hightechinstitute.nl/the-magic-of-precision-engineering/
2•o4c•42m ago•1 comments

Gluing and framing a 9000-piece jigsaw

https://river.me/blog/puzzle-glue-9000/
1•busymom0•49m ago•0 comments

AI Pullback Has Officially Started

https://www.planetearthandbeyond.co/p/ai-pullback-has-officially-started
3•danfritz•51m ago•0 comments

Lampedusa's 1958 Novel The Leopard skewered the super-rich

https://www.bbc.com/culture/article/20250304-the-leopard-the-1958-italian-novel-that-skewered-the...
1•walterbell•54m ago•0 comments

Practical Defenses Against Technofascism

https://micahflee.com/practical-defenses-against-technofascism/
3•HotGarbage•55m ago•0 comments

The Magna Anima Genius Project

https://magnaanimageniusproject.substack.com/
1•jbutlergenius•59m ago•0 comments

Raster Master v5.4 Sprite/Tile/Map Editor 88 Stars on GitHub

https://github.com/RetroNick2020/raster-master/releases/tag/v5.4R121
3•retronick2020•1h ago•0 comments

Salesforce Enterprise Deep Research

https://github.com/SalesforceAIResearch/enterprise-deep-research
2•Raven603•1h ago•2 comments

Operating Systems Written in Free Pascal

https://wiki.freepascal.org/Operating_Systems_written_in_FPC
2•kristianp•1h ago•0 comments

Sustained western growth and Artificial Intelligence

https://datagubbe.se/llmfix/
2•brazukadev•1h ago•0 comments

Tell HN: Don't Vibe Your Design

2•davidtranjs•1h ago•1 comments

Hey LLM, write production-ready code

https://wejn.org/2025/10/llm-write-production-ready-code/
1•wejn•1h ago•1 comments

Student Handcuffed After School's AI System Mistakes a Bag of Chips for a Gun

https://www.theguardian.com/us-news/2025/oct/24/baltimore-student-ai-gun-detection-system-doritos
4•m463•1h ago•0 comments

Show HN: I analyzed 3,465 remote job listings – 72% hide salary information

https://no-commute-jobs.com/blog/remote-work-statistics-2025
1•remimatteo•1h ago•1 comments

Why bosses need to wake up to dark patterns

https://www.economist.com/business/2025/10/16/why-bosses-need-to-wake-up-to-dark-patterns
1•Austin_Conlon•1h ago•0 comments

The Layer 1 Blockchain Built for AI Agent

https://harvestai.co/
1•salkahfi•1h ago•0 comments

Success Always Spawns Haters

https://world.hey.com/dhh/success-always-spawns-haters-75edaede
1•doppp•1h ago•0 comments

DHS Posts Video Featuring Song Popular with Nazi Creators

https://gizmodo.com/dhs-little-dark-age-nazi-video-2000676359
2•nobody9999•2h ago•1 comments

Language Modeling with Hierarchical Reasoning Models: Lessons from 1M Parameters

https://williamthurston.com/ml/language-models/transformers/2025/10/25/language-modeling-with-hie...
2•jhspaybar•2h ago•0 comments

GameStop Declares Console Wars Over

https://twitter.com/gamestop/status/1982213786221109263
2•avonmach•2h ago•1 comments

Quick Dungeon Crawler Update 3.5.0: New Passives, CRIT DMG Nerf

https://dungeon.werkstattl.com/
1•logTom•2h ago•3 comments

Jan van Eijk's wise lessons and advice

https://www.hightechinstitute.nl/jan-van-eijk-wise-lessons/
1•o4c•2h ago•0 comments

How I Used Lies About a Cartoon to Prove History Is Meaningless on the Internet (2016)

https://medium.com/pcmag-access/how-i-used-lies-about-a-cartoon-to-prove-history-is-meaningless-o...
2•jfil•2h ago•2 comments

Show HN: Zoto – low-level audio playback in Zig

https://github.com/braheezy/zoto
3•braheezy•2h ago•0 comments
Open in hackernews

Global key-value metadata storage for Scryer Prolog

https://github.com/jjtolton/environment.pl
11•triska•10h ago

Comments

shawa_a_a•7h ago
It's been a long time since I've programmed Prolog so I'm not sure if these ideas are even relevant (global state might be more than enough!) ; but at first impressions from the readme this really reminds me of ETS

https://www.erlang.org/doc/apps/stdlib/ets.html

Essentially system-global state under named tables.

Have/did you consider having named `env` instances? This would allow for say, feature flags to be kept in a `features` set of relations.

You could also draw from Erlang's 'match specs' and query with a predicate over the keys.