frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Censured Administrations – AAUP

https://www.aaup.org/about/programs/protecting-academic-freedom/censured-administrations
1•pcfwik•4m ago•0 comments

KiroCrew

https://github.com/kirodotdev/KiroCrew
1•rainhacker•4m ago•0 comments

Show HN: AppScreenshots – App Store screenshots in minutes, not hours

https://appscreenshots.net
1•horace168•5m ago•0 comments

A/I Collective Propaganda

https://www.inventati.org/propaganda/
1•andsoitis•8m ago•0 comments

Encoding Mod Files Optically on Paper, as Amiga's Legacy Will Outlast M-Disks

https://hackaday.com/2026/08/26/encoding-mod-files-optically-on-paper-because-amigas-legacy-will-...
1•oxonia•16m ago•1 comments

If u need to control a super smart looking slop blob, try Liquid Orb Editor

https://github.com/LerSent001/orb
1•interweb•22m ago•0 comments

Ask HN: LinkedIn, but only for people you've physically met?

2•Riphyak•25m ago•1 comments

Ezducate an AI powered special education platform

https://www.ezducate.ai/
1•alexandertrish•27m ago•0 comments

Vercel Status – Elevated errors for Workflow streams

https://www.vercel-status.com/incidents/ybx6km0j1gwk
1•kyisaiah47•28m ago•0 comments

A Cop's Case for Flock

https://worksinprogress.co/issue/a-cops-case-for-flock/
1•mvlipwig•35m ago•0 comments

Interactive Model View zai-org/GLM-5.3

https://hfviewer.com/zai-org/GLM-5.3
4•ResearchAtPlay•36m ago•0 comments

Andrew Garfield on Playing Sam Altman in "Artifical"

https://variety.com/2026/film/news/andrew-garfield-talks-playing-sam-altman-artificial-open-ai-12...
3•nreece•38m ago•0 comments

Citations in AI-written reports did not exist

https://www.stipple.sh/resources/ai-citation-hallucination-benchmark
4•gcsydney•43m ago•0 comments

Messy

https://www.observed.life/messy
2•andsoitis•44m ago•0 comments

I'm the Guy Who Destroys Antique Books After We Scan Them into Our Company's AI

https://www.mcsweeneys.net/articles/im-the-guy-who-destroys-antique-books-after-we-scan-them-into...
9•9woc•44m ago•1 comments

Debian Votes to Allow "Responsible Use of Generative AI"

https://www.phoronix.com/news/Debian-Votes-Responsible-AI-Use
5•mappu•45m ago•0 comments

OpenAI and Anthropic are ruining San Francisco

https://www.sfgate.com/local/article/open-ai-anthropic-ruining-sf-22404657.php
8•spking•45m ago•0 comments

Agents in IMessages that can do anything

https://hirealpha.chat/
2•Sashank_Singh•46m ago•0 comments

A deep dive into Grok Bot

https://flaviocopes.com/grok-bot/
2•thoughtpeddler•50m ago•0 comments

OpenAI Dumps Cursor

https://www.bloomberg.com/news/articles/2026-08-29/openai-to-end-partnership-with-cursor-after-sp...
2•MehrdadKhnzd•53m ago•1 comments

A shelf with counts in HTML (no JavaScript)

https://webwithoutjs.com/lab/shelf/
3•nreece•57m ago•0 comments

Terminal-Bench 4.0

https://www.tbench.ai/news/terminal-bench-4-0
2•mji•57m ago•0 comments

Quest for the Eternal Dock – Lambdock

https://jointhefreeworld.org/blog/articles/gnu-linux/quest-for-eternal-dock/index.html
3•signa11•59m ago•0 comments

Box breathing: Inside the 'most powerful hack' to control stress

https://www.bbc.com/news/articles/c5y5jqly153o
3•1659447091•59m ago•1 comments

Why this philosopher turned down Anthropic

https://www.ft.com/content/bdb3b820-905b-431e-82c0-386535755af1
2•outside1234•59m ago•0 comments

Show HN: SlideX – Open-source presentations with MDX

https://www.slidexdeck.com/en/
1•zz41354899•1h ago•0 comments

Personal Dynamic Media (1977)

https://ieeexplore.ieee.org/document/1646405
2•gone35•1h ago•0 comments

LSPs for LLMs

https://ianbarber.blog/2026/08/11/lsps-for-llms/
2•ocamoss•1h ago•0 comments

Show HN: Metis – An agent harness pushing DeepSeek to Opus-tier coding (82%)

https://github.com/Wholiver/metis
2•oliverhuchenrui•1h ago•0 comments

Subs, a cloud native agent harness

https://github.com/substructureai/subs
1•xwil•1h 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/