frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Immunotherapy drug eliminates aggressive cancers in clinical trial

https://www.rockefeller.edu/news/38120-immunotherapy-drug-eliminates-aggressive-cancers-in-clinic...
189•marc__1•2h ago•32 comments

All vibe coding tools are selling a get rich quick scheme

https://varunraghu.com/all-vibe-coding-tools-are-selling-a-get-rich-quick-scheme/
60•Varun08•1h ago•37 comments

iPhone Air

https://www.apple.com/newsroom/2025/09/introducing-iphone-air-a-powerful-new-iphone-with-a-breakt...
389•excerionsforte•5h ago•943 comments

Anthropic judge rejects $1.5B AI copyright settlement

https://news.bloomberglaw.com/ip-law/anthropic-judge-blasts-copyright-pact-as-nowhere-close-to-done
127•nobody9999•14h ago•148 comments

Memory Integrity Enforcement

https://security.apple.com/blog/memory-integrity-enforcement/
270•circuit•5h ago•110 comments

E-paper display reaches the realm of LCD screens

https://spectrum.ieee.org/e-paper-display-modos
151•rbanffy•5h ago•66 comments

Claude can now create and edit files

https://www.anthropic.com/news/create-files
371•meetpateltech•9h ago•224 comments

Axial Twist Theory

https://en.wikipedia.org/wiki/Axial_twist_theory
31•lordnacho•2d ago•0 comments

I don't want AI agents controlling my laptop

https://sophiebits.com/2025/09/09/ai-agents-security
40•Bogdanp•2h ago•13 comments

The Dying Dream of a Decentralized Web

https://spectrum.ieee.org/web3-hardware-security
117•warrenm•4h ago•125 comments

We all dodged a bullet

https://xeiaso.net/notes/2025/we-dodged-a-bullet/
507•WhyNotHugo•8h ago•306 comments

Anthropic is endorsing SB 53

https://www.anthropic.com/news/anthropic-is-endorsing-sb-53
25•antfarm•2h ago•23 comments

Tomorrow's emoji today: Unicode 17.0

https://jenniferdaniel.substack.com/p/tomorrows-emoji-today-unicode-170
72•ChrisArchitect•5h ago•109 comments

A new experimental Go API for JSON

https://go.dev/blog/jsonv2-exp
164•darccio•8h ago•53 comments

US HS students lose ground in math and reading, continuing yearslong decline

https://apnews.com/article/naep-reading-math-scores-12th-grade-c18d6e3fbc125f12948cc70cb85a520a
158•bikenaga•8h ago•213 comments

Ask HN: Why is there no native SSH hook to run a local command before connecting

5•tetris11•2d ago•2 comments

Show HN: Bottlefire – Build single-executable microVMs from Docker images

https://bottlefire.dev/
26•losfair•2d ago•7 comments

Microsoft is officially sending employees back to the office

https://www.businessinsider.com/microsoft-send-employees-back-to-office-rto-remote-work-2025-9
180•alloyed•6h ago•324 comments

Weave (YC W25) is hiring a founding AI engineer

https://www.ycombinator.com/companies/weave-3/jobs/SqFnIFE-founding-ai-engineer
1•adchurch•6h ago

DuckDB NPM packages 1.3.3 and 1.29.2 compromised with malware

https://github.com/duckdb/duckdb-node/security/advisories/GHSA-w62p-hx95-gf2c
280•tosh•13h ago•215 comments

Building a DOOM-like multiplayer shooter in pure SQL

https://cedardb.com/blog/doomql/
124•lvogel•8h ago•28 comments

YouTube is a mysterious monopoly

https://anderegg.ca/2025/09/08/youtube-is-a-mysterious-monopoly
94•geerlingguy•18h ago•157 comments

An attacker’s blunder gave us a look into their operations

https://www.huntress.com/blog/rare-look-inside-attacker-operation
112•mellosouls•7h ago•75 comments

Dropbox Paper mobile App Discontinuation

https://help.dropbox.com/installs/paper-mobile-discontinuation
113•mercenario•5h ago•94 comments

Inflation Erased U.S. Income Gains Last Year

https://www.wsj.com/economy/consumers/census-income-insurance-poverty-2024-31d82ad0
120•JumpCrisscross•3h ago•29 comments

ICE is using fake cell towers to spy on people's phones

https://www.forbes.com/sites/the-wiretap/2025/09/09/how-ice-is-using-fake-cell-towers-to-spy-on-p...
427•coloneltcb•7h ago•182 comments

A clickable visual guide to the Rust type system

https://rustcurious.com/elements/
233•stmw•4d ago•39 comments

Go for Bash Programmers – Part II: CLI Tools

https://github.com/go-monk/from-bash-to-go-part-ii
75•reisinge•1d ago•3 comments

Cities obey the laws of living things

https://nautil.us/cities-obey-the-laws-of-living-things-1236057/
27•dnetesn•2d ago•8 comments

You too can run malware from NPM (I mean without consequences)

https://github.com/naugtur/running-qix-malware
172•naugtur•13h ago•96 comments
Open in hackernews

Go for Bash Programmers – Part II: CLI Tools

https://github.com/go-monk/from-bash-to-go-part-ii
75•reisinge•1d ago

Comments

mrbluecoat•6h ago
I really like this style of showing steps that would be logical for those new to Go even if they're wrong then showing why it didn't work and walking through the fix. Nice linear progression of real-world learning.
pentaphobe•5h ago
Nice! You packed in so many things which are often drip fed, and take folk a while to find

Kudos

everybodyknows•5h ago
> We named the package hello_test instead of hello. This is possible and it allows for writing tests that use only the public API (identifiers starting with a capital letter) of the tested package as a real user would.

Would be good to highlight here that *_test packages are the sole exception from Go's standard rule of one-package-only per source directory -- special cases being always an unfortunate additional heightening of the beginner's learning curve.