frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A tiny recursive reasoning model achieves 45% on ARC-AGI-1 and 8% on ARC-AGI-2

https://alexiajm.github.io/htpps://alexiajm.github.io/2025/09/29/tiny_recursive_models.html
1•stared•15s ago•0 comments

Cows Wear High-Tech Collars Now

https://www.nytimes.com/2025/10/05/technology/cows-ai-collars.html
1•reaperducer•25s ago•0 comments

LocalPDF – Privacy-first PDF tools that work in browser

https://localpdf.online
1•ulinycoin•3m ago•1 comments

YC Founders and Ruby Friends at SF Ruby Conf

https://sfruby.substack.com/p/meet-yc-founders-and-ruby-friends
3•nonconstant•5m ago•1 comments

NextGen Acela rides on old-gen infrastructure

https://www.fastcompany.com/91413859/acela-amtrak-train-new-york
2•ohjeez•10m ago•0 comments

Daily routines of well-known people

https://routines.club
1•andrewstetsenko•13m ago•0 comments

Ask HN: How many of you now use AI over doctors

1•wonderwonder•14m ago•1 comments

[Open Source]Echo Mode – a middleware to stabilize LLM tone and persona drift

https://github.com/Seanhong0818/Echo-Mode
1•teamechomode•17m ago•1 comments

Tesla's 'affordable' EVs are just stripped down versions of the Model 3 and Y

https://www.theverge.com/transportation/793302/tesla-model-y-moidel-3-standard-affordable-price-s...
2•ceejayoz•18m ago•0 comments

Show HN: DictaFlow – Privacy-first voice dictation for Windows (hold-to-talk)

https://dictaflow.vercel.app/
1•ryanshrott•18m ago•0 comments

Hacktoberfest shouldn't be AI generated PRs

https://iparaskev.com/blog/hacktoberfest_shouldnt_be_ai
1•iparaskev•20m ago•0 comments

Qualcomm's buying Arduino – what it means for makers

https://www.jeffgeerling.com/blog/2025/qualcomms-buying-arduino-%E2%80%93-what-it-means-makers
1•todsacerdoti•21m ago•1 comments

Gemini 2.5 Computer Use model

https://blog.google/technology/google-deepmind/gemini-computer-use-model/
27•mfiguiere•23m ago•2 comments

Electrodeposition of Metallic Magnesium in Ionic Liquids: A Systematic Review

https://www.mdpi.com/2075-163X/15/10/1021
1•PaulHoule•25m ago•0 comments

Cadence Workflow Joins the Cloud Native Computing Foundation

https://www.uber.com/blog/cadence-workflow-joins-the-cloud-native-computing-foundation/
1•enz•26m ago•0 comments

Banning controversy reveals Bluesky's decentralized aspiration isn't reality

https://plus.flux.community/p/banning-controversy-reveals-blueskys
5•gregsadetsky•28m ago•0 comments

Today is the Feast of Our Lady of the Rosary, app if want to pray it

https://www.prayholyrosary.com
2•javierbuilds•28m ago•0 comments

Evolving AltStore PAL – alternative iOS app store connects with the Fediverse

https://rileytestut.com/blog/2025/10/07/evolving-altstore-pal/
1•gloxkiqcza•30m ago•1 comments

Denmark leads EU push to copyright faces in fight against deepfakes

https://www.techpolicy.press/denmark-leads-eu-push-to-copyright-faces-in-fight-against-deepfakes/
1•anigbrowl•30m ago•0 comments

Words of Type Encyclopedia

https://wiki.wordsoftype.com/
1•esadek•33m ago•0 comments

Sora 2 Stole the Show at OpenAI DevDay

https://www.aiengineering.report/p/sora-2-stole-the-show-at-openai-devday
1•waprin•33m ago•0 comments

Drinking Through the Generations

https://news.flinders.edu.au/blog/2025/10/07/drinking-through-the-generations/
1•01-_-•34m ago•0 comments

Designing a SIMD Algorithm from Scratch

https://mcyoung.xyz/2023/11/27/simd-base64/
1•solfleur•36m ago•0 comments

Python Violates PEP 8 – Invent with Python

https://inventwithpython.com/blog/sweigarts-law-of-pep-8-complaints.html
1•rbanffy•36m ago•0 comments

From Caller to Suspect: Behaviors That Trigger Suspicion in 911 Calls

https://osf.io/preprints/psyarxiv/9kts5_v1
5•gnabgib•36m ago•0 comments

Tesla unveils cheaper versions of its Model 3 and Model Y

https://www.cnn.com/2025/10/07/cars/tesla-model-y-3-cheaper-evs
3•supportengineer•37m ago•2 comments

ThalamusDB: Query text, tables, images, and audio

https://github.com/itrummer/thalamusdb
1•itrummer•37m ago•0 comments

Federal shutdown deals blow to hobbled cybersecurity agency

https://theconversation.com/federal-shutdown-deals-blow-to-already-hobbled-cybersecurity-agency-2...
2•rntn•38m ago•0 comments

Fear, not hope, permeates today's technology hype

https://paulkrugman.substack.com/p/why-arent-we-partying-like-its-1999
1•treadump•42m ago•0 comments

Html.yeah – Clojure schema-based HTML components

https://github.com/brianium/html.yeah
2•stepbeek•44m ago•0 comments
Open in hackernews

Show HN: Bewaker – File protection for AI-assisted coding

https://github.com/bewakerai/bewaker
1•bewaker•2h ago
I built Bewaker to prevent AI coding assistants from accidentally modifying sensitive files (configs, secrets, infrastructure code).

It uses policy-based file locking with a cryptographic lockfile (.guardlock, Merkle + Ed25519). Protected files require an explicit unlock before changes land. Enforcement happens in VS Code and at commit via git hooks.

Everything is local - no backend, no telemetry. Audit logs and keys stay on your machine.

Website: https://www.bewaker.ai

GitHub: https://github.com/bewakerai/bewaker (Apache-2.0)

Marketplace: https://marketplace.visualstudio.com/items?itemName=BewakerA...

Comments

bewaker•56m ago
Hi HN,

I built Bewaker because AI coding assistants can accidentally touch files you really don’t want changed (infra-as-code, auth, payments, etc.).

Bewaker's approach is to enforce cryptographic guarantees directly in the local environment. It uses a Merkle tree to verify the integrity of all protected files in a policy, and an Ed25519 signature to prevent the lockfile itself from being tampered with. The goal is to block a problematic edit before a commit is even created.

One of the key distinctions from a tool like CODEOWNERS is that this enforcement happens locally, pre-commit, rather than during a PR review. It's designed to be a guardrail for the developer, not just the repository.

Feedback on the architecture, security model, or potential blind spots is particularly welcome. Happy to answer questions.