frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Working Class Face a 'Class Ceiling' in Elite Occupations

https://www.nytimes.com/2026/09/18/business/class-barrier-academia.html
1•marojejian•43s ago•1 comments

Proxmox runs QEMU-img convert with cache=unsafe; write errors are dropped

https://bugzilla.proxmox.com/show_bug.cgi?id=8054
1•alfonsokuen•2m ago•0 comments

No Easy Fix for Bogus Respondents in Online Opt-In Polls

https://www.pewresearch.org/methods/2026/08/27/no-easy-fix-for-bogus-respondents-in-online-opt-in...
1•hn_acker•3m ago•0 comments

I scraped all the ivf cycles that have ever been posted on the internet

https://eggs.help
1•grapefruitjuice•4m ago•0 comments

A social network where posts are minigames generated from tweet-sized prompts

https://gamecrumbs.online/
1•saint_angels•5m ago•1 comments

Vitaebase – an interactive map of longevity research

https://www.vitaebase.net
1•oibafcodes•5m ago•2 comments

FBI memo warned ICE agents could be targeted by fake 'tradwife' dating profiles

https://www.theguardian.com/us-news/2026/sep/17/fbi-ice-tradwife-doxing
1•hn_acker•6m ago•1 comments

Show HN: Jev to JSON-Schema

https://github.com/Kiln-AI/jev_jsonschema
1•scosman•9m ago•0 comments

Warning Signs [Economics of AI]

https://newleftreview.org/sidecar/posts/warning-signs
1•ckmate-king-2•11m ago•0 comments

A Consciousness Is a Dedekind Cut

https://www.evalapply.org/posts/consciousness-lives-in-a-dedekind-cut/index.html
1•andsoitis•11m ago•0 comments

Frustrated at state of commentary of economic impact of AI

1•erads•12m ago•0 comments

A new kind of AI model from a ChatGPT inventor is thrilling developers

https://techcrunch.com/2026/09/18/a-new-kind-of-ai-model-from-a-chatgpt-inventor-is-thrilling-dev...
1•andsoitis•16m ago•0 comments

Unsolved Historical Ciphers

https://dbourdeau.github.io/cyphersolver/index.html
2•Bluestein•17m ago•0 comments

The lucrative business of reactionary AI-generated posts on Facebook

https://www.lemonde.fr/en/pixels/article/2026/09/19/the-lucrative-business-of-reactionary-ai-gene...
1•geox•18m ago•0 comments

DNS Honeypots Don't Fail at Banners,They Fail at the Protocol

https://medium.com/meetcyber/dns-honeypots-dont-fail-at-banners-they-fail-at-the-protocol-cf21c7e...
1•ls1911•21m ago•0 comments

Open Weights Are Good. Open Source Is Better

https://opensource.org/blog/open-weights-are-good-open-source-is-better
5•theanonymousone•22m ago•1 comments

The senior engineer death spiral

https://sunilpai.dev/posts/the-senior-engineer-death-spiral/
5•napolux•23m ago•1 comments

Show HN: The meal planner that gets all your dishes ready at once

https://robotrecipes.co/mise/
1•maverik•23m ago•0 comments

Your robotic vacuum is a witness: evidence, privacy and the law

https://theconversation.com/your-robotic-vacuum-is-a-witness-what-home-robots-mean-for-evidence-p...
1•hn_acker•24m ago•1 comments

Poster Prompts One hundred design styles as copy-paste prompts

https://john.hartnup.uk/poster-prompts/
1•Bluestein•26m ago•0 comments

Show HN: Stardrift – A 3D galaxy of all music, to explore and learn

https://stardrift.gerlach.dev/
1•sovok•26m ago•0 comments

Bingel

https://www.bingel.se/welcome/
2•pighacker•27m ago•0 comments

The right way to learn from Genghis Khan

https://economist.com/culture/2026/09/17/the-right-way-to-learn-from-genghis-khan
1•andsoitis•27m ago•0 comments

How A Chinese Hacking Firm Tapped AI to Supercharge Cyber-Spying

https://www.wsj.com/tech/how-a-chinese-hacking-firm-tapped-ai-to-supercharge-cyber-spying-b577c846
1•harry_nutsachs•29m ago•0 comments

Turning the iPhone Duo Hinge into an Accordion

https://www.reddit.com/r/iOSProgramming/comments/1wkt7i7/i_turned_iphone_duo_hinge_into_accordion/
1•busymom0•31m ago•0 comments

Trump Announces an 'AI Force'

https://www.wsj.com/tech/ai/trump-announces-an-ai-force-after-industry-sounded-alarm-7c189b8f
4•david_shaw•32m ago•0 comments

When Does AI Stop Needing Us?

https://cacm.acm.org/blogcacm/when-does-ai-stop-needing-us/
1•pseudolus•32m ago•0 comments

Show HN: Video Size Reducer – compress video in the browser for sharing

https://videosizereducer.net/
1•liweipt•32m ago•0 comments

More Than Music with MIDI and Processing

https://george.mand.is/2026/09/processing-community-day-nyc-2026-midi-workshop-preview/
1•georgemandis•33m ago•1 comments

Freeze Drying

https://en.wikipedia.org/wiki/Freeze_drying
1•BiraIgnacio•33m 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/