frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hiii

1•sathana•46s ago•0 comments

From Tethered Spinal Cord to C1 Paralysis

https://medium.com/freedomofthought/from-tethered-spinal-cord-to-c1-paralysis-and-five-years-of-b...
1•raynchad•1m ago•0 comments

OpenClaw 2.0, Accidentally

https://openclaw.ai/blog/openclaw-2-accidentally
1•doppp•2m ago•0 comments

Amazon Stonehenge: Parque Arqueológico Do SolstíCIO

https://en.wikipedia.org/wiki/Parque_Arqueol%C3%B3gico_do_Solst%C3%ADcio
1•nycdatasci•3m ago•0 comments

UC Berkeley indefinitely suspends international student work authorizations

https://www.dailycal.org/news/campus/after-second-ice-threat-uc-berkeley-indefinitely-suspends-in...
1•cbzbc•6m ago•0 comments

Harvard Professor on Why You Should Learn C in 2026 [video]

https://www.youtube.com/watch?v=vhgI_F-WMwA
1•rramadass•8m ago•0 comments

Intrusive Linked Lists

https://www.data-structures-in-practice.com/intrusive-linked-lists/
1•tripdout•12m ago•0 comments

Wrapture

https://grahamdumpleton.me/posts/2026/08/introducing-wrapture/
1•simonw•14m ago•0 comments

Engineering a support "teammate" with human memory

https://www.coinbase.com/blog/ceecil-engineering-a-support-teammate-with-human-memory
1•dukebartnik•17m ago•0 comments

P99 0 ms* autocomplete for 240M domain names

https://ruurtjan.com/articles/p99-0ms-autocomplete-for-240-million-domain-names
1•dbalatero•20m ago•0 comments

Transfer files over an Ethernet patch cable

https://maurycyz.com/misc/etherfiles/
2•jllyhill•21m ago•0 comments

Language Trees and Zipping

https://arxiv.org/abs/cond-mat/0108530
1•zainhsn•22m ago•0 comments

Workers Builds Are Degraded – Cloudflare Status

https://www.cloudflarestatus.com/incidents/yj2zk6n6rz1c
1•kyisaiah47•24m ago•0 comments

Not All Optical Interconnect Startups Are Building the Same Thing

https://invisiblelayerhw.substack.com/p/not-all-optical-interconnect-startups
1•missionfission•27m ago•0 comments

Urban Dead is shutting down

https://urbandead.com/shutdown.html
3•potomak•28m ago•1 comments

Salad Theory

https://saladtheory.github.io/
1•colinprince•29m ago•0 comments

Show HN: ScriptSpool – Create code animations in the browser

https://scriptspool.pixzens.com/en
1•MikeLuLu•35m ago•0 comments

Google Maps now shows "Lake America"

https://www.thehindu.com/news/international/google-maps-now-shows-lake-america-in-us-not-lake-ont...
2•tesnorindian•37m ago•1 comments

Hugo Awards

https://www.thehugoawards.org/hugo-history/2026-hugo-awards/
2•demritocracy•39m ago•0 comments

Show HN: Growtics – an AI growth agent that tells you what to do next

https://growtics.io
1•jabed•40m ago•0 comments

Show HN: MaCcyP – coding agents push text to a clipboard manager's Agents view

https://github.com/harleensahni/MaCcyP
1•hstun•42m ago•0 comments

On Inevitability

https://borretti.me/article/on-inevitability
2•nozzlegear•45m ago•0 comments

Implicit Function Theorem (IFT)

https://en.wikipedia.org/wiki/Implicit_function_theorem
1•peter_d_sherman•45m ago•1 comments

SolarWindow launches 0.85 mm-thick, self-adhesive solar film

https://www.pv-magazine.com/2026/08/27/https-www-pv-magazine-com-2026-08-27-solarwindow-launches-...
12•thelastgallon•50m ago•4 comments

Enormous 12TB Steam leak includes abandoned Half-Life 2: Episode 3 assets

https://www.theverge.com/games/986552/12tb-steam-leak-half-life-2-episode-3
4•droidjj•54m ago•1 comments

The Deadline Dividend

https://deadline-dividend.onrender.com
3•gmays•55m ago•0 comments

Show HN: Prove your code produced your claims without making reviewers rerun it

https://github.com/27-GROUP/kveritas-go/
2•Mkld27•55m ago•0 comments

Flock Safety's controversial CEO just got a taste of his own medicine

https://www.neowin.net/news/the-ceo-of-americas-biggest-surveillance-network-just-got-a-taste-of-...
23•devonnull•56m ago•2 comments

The Verification Gap: Who Audits the Agents?

https://gist.github.com/ecksbe/c48919c653ec2fba4b9ee17eb534efc3
3•evidence-lab•56m ago•0 comments

Mark Zuckerberg sends message to Meta employees

https://www.thestreet.com/technology/mark-zuckerberg-shocking-message-meta-employee-layoffs-artif...
3•georgecmu•56m 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/