frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Paying for frontier AI models buys 4-month head start at 5x the cost

https://arstechnica.com/ai/2026/09/exclusive-open-chinese-models-close-gap-with-silicon-valleys-f...
1•torrance•2m ago•0 comments

Show HN: Respawn – content-addressed filesystem snapshots and undo (Rust)

https://github.com/savageAZfck/respawn
1•savag3AZfckk•4m ago•0 comments

Squeeze every token from your mid-tier subs

https://github.com/0gsd/sidepeace
1•0gs•4m ago•1 comments

Show HN: Ukodus – A Sudoku galaxy where every solve becomes a star (Rust/WASM)

https://ukodus.now/
1•kcirtapfrmspc•7m ago•0 comments

Show HN: Circle Crop Image – A lightweight, privacy-first circle cropper

https://circlecropimage.dev
1•steve200512•10m ago•0 comments

Anthropic 25x CI in six months

https://claude.com/blog/agentic-coding-is-straining-ci-heres-how-we-scaled-test-impact-analysis-a...
1•juanfatas•12m ago•0 comments

The Books We Read Too Late–and That You Should Read Now

https://www.theatlantic.com/books/archive/2022/09/books-younger-selves-recommendations/671601/
1•the-mitr•13m ago•0 comments

Negativland, Culture Jamming, and the Art of Making Something New

https://blog.archive.org/2026/09/11/negativland-culture-jamming-and-the-art-of-making-something-new/
4•bananaboy•19m ago•0 comments

Show HN: SeaSearch – Lightweight, S3-backed multi-tenant search engine

2•Daniel-Pan•19m ago•2 comments

Small Tech: The Need for Principle-Driven Software

https://cdox.studio/small-tech
5•jethronethro•21m ago•0 comments

Every US Electrical Outlet Explained

https://practical.engineering/blog/2026/9/15/every-us-electrical-outlet-explained
1•vismit2000•23m ago•0 comments

American Incomes Hit Record Last Year as Women Gained Ground

https://www.wsj.com/economy/consumers/american-incomes-hit-record-last-year-as-women-gained-groun...
1•kaycebasques•23m ago•0 comments

HashNotch – Available NOW for Mac OS 27 at its most stable release

https://github.com/Hash-7777/HashNotch/releases/tag/v1.5.0
1•New_Hash•25m ago•0 comments

AI is not going to kill you

https://sufficientlyadvanced.blog/ai-is-not-going-to-kill-you/
2•mohonishc•26m ago•1 comments

The Shadows Lurking in the Equations – Underwater Islands

https://gods.art/articles/equation_shadows
1•vismit2000•27m ago•0 comments

Musk's companies must explain why they dropped antitrust claims against Apple

https://www.politico.com/news/2026/09/15/elon-musk-antitrust-apple-openai-01078840
5•CharlesW•28m ago•0 comments

A History of Mathematics – Victor J. Katz

https://books.google.com/books/about/A_History_of_Mathematics.html
1•vismit2000•28m ago•0 comments

Ask HN: Shifting Reoccuring Agentic Workflow to ML Process?

1•wwolfson97•33m ago•1 comments

Sony SMC-70

https://zzxio.com/about-us/sony-smc-70/
1•Bluestein•34m ago•0 comments

The New Moscow: A Digital Utopia Doubling as a Surveillance Trap

https://www.nytimes.com/2026/09/14/world/europe/moscow-russia-putin-digital-surveillance.html
1•reaperducer•35m ago•0 comments

You can run Git on object storage if you re-make packfiles

https://www.tigrisdata.com/blog/objgit-packfiles/
2•xyzzy_plugh•37m ago•0 comments

The walls and avenues of Chang-An (2018)

http://dragonsarmory.blogspot.com/2018/05/chang-the-city-of-eternal-peace-part-2.html
1•gone35•38m ago•0 comments

Stay discoverable in search while disallowing AI training

https://blog.cloudflare.com/accountable-mixed-use-ai-crawlers/
19•djfergus•40m ago•7 comments

Implement a credit freeze to increase your financial security

https://graphthinking.blogspot.com/2016/11/to-increase-your-financial-security.html
1•physicsgraph•40m ago•0 comments

Mark Zuckerberg: Labs should self-regulate

https://twitter.com/finkd/status/2099997096896274533
4•mfiguiere•41m ago•1 comments

Show HN: Graft – local-first persistent memory for coding agents

https://github.com/AEndrix03/Graft
1•AEndrix03•41m ago•0 comments

The extreme engineering of aircraft windows

https://www.bbc.com/news/articles/c0lr69zeyrwo
2•1659447091•44m ago•0 comments

Computer Use for iPad

https://twitter.com/jamiepinheiro/status/2099981750046953653
2•jamiepinheiro•48m ago•0 comments

Free Palestine

https://www.theguardian.com/us-news/2026/sep/15/ed-sheeran-macklemore-palestine-openers-finneas
6•mo7061•53m ago•0 comments

Open HamClock Backend

https://ohb.works/
3•firesteelrain•54m ago•0 comments
Open in hackernews

Automatically add missing "async/await" keywords to your TypeScript code

https://github.com/stanNthe5/typescript-autoawait
7•theThree•1y ago

Comments

bastawhiz•1y ago
Is this a problem that people actually have?
xeromal•1y ago
Fun side project man!
primitivesuave•1y ago
I took a peek at the implementation - I think this only works for a case where the typing explicitly contains the string "Promise". For example, I don't think it would work if I use `SomeInterface["some_promise_key"]` or might incorrectly add an async if I use `Awaited<Promise<...>>`.

I think what you're trying to build might be best served by Typescript's VFS - https://www.npmjs.com/package/@typescript/vfs. You can load the local files into an in-memory type system, and quickly extract async/await hints that might be more useful for a typical TS developer. I think there's a lot of really interesting static analysis you could do to improve async/await safety, as it certainly leads to issues from time to time.

joshstrange•1y ago
I do not want to be mean but I think you'd be much better served with ESLint rules to yell at you when you don't await when you should or do when you shouldn't.

This should _not_ be an automatic operation since it can change behavior in ways that will be unclear to the developer (completely undoing any gain from them being added automatically).

theThree•1y ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•1y ago
I created a ticket, using comments is not necessary because there is already the `void` syntax for when you don't want to wait:

https://github.com/stanNthe5/typescript-autoawait/issues/1

nextweek2•1y ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/