frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Postgres SELECT DISTINCT does not scale

https://www.dbos.dev/blog/postgres-select-distinct-does-not-scale
2•KraftyOne•37s ago•0 comments

NTU to stop using 'fundamentally unreliable' AI detector from 2027

https://www.channelnewsasia.com/singapore/ntu-ai-detector-stop-using-2027-probability-scores-misc...
2•ahonhn•51s ago•0 comments

Private prisons announce $1.4B in revenue as immigration detentions climb

https://www.npr.org/2026/08/08/nx-s1-5923881/geo-group-corecivic-immigration-detention
2•speckx•1m ago•0 comments

What caused man to be partially sucked out of Ryanair plane

https://news.sky.com/story/revealed-what-caused-man-to-be-partially-sucked-out-of-ryanair-plane-1...
2•austinallegro•3m ago•0 comments

Unforgetful

https://marco.org/2026/08/14/unforgetful
2•robbiet480•4m ago•0 comments

North Koreans Infiltrate U.S. Companies [video]

https://www.youtube.com/watch?v=RUhdmIFpb-w
2•onemoresoop•5m ago•0 comments

Apple sends new 'Threat Notification' alerts over mercenary spyware attacks

https://www.bleepingcomputer.com/news/apple/apple-sends-new-threat-notification-alerts-over-merce...
2•DemiGuru•6m ago•0 comments

2020 Arctic Vault Program

https://archiveprogram.github.com/arctic-vault/
2•EndXA•7m ago•0 comments

Introducing Toast 1

https://www.mixedbread.com/blog/toast-1
4•mplappert•9m ago•0 comments

Show HN: I trained three LLMs from scratch and put them online to try them out

https://huggingface.co/spaces/JohnEnev/modern-llm-playground
2•Johnene•10m ago•1 comments

You Need Less Money Than You Think to Be Happy: A $40k Experiment

https://www.financialsamurai.com/less-money-than-you-think-to-be-happy/
2•timvdalen•11m ago•0 comments

When the Hard Part Stops Being Hard

https://proofsandintuitions.net/2026/08/14/when-the-hard-part-stops-being-hard/
3•noelwelsh•11m ago•0 comments

What to do when a macOS update goes wrong

https://eclecticlight.co/2026/08/14/what-to-do-when-a-macos-update-goes-wrong-2/
2•Brajeshwar•12m ago•0 comments

Unsloth Qwen3.8-27B GGUF files

https://huggingface.co/unsloth/Qwen3.8-27B-GGUF
7•apitman•12m ago•0 comments

Qwen3.8-27B

https://twitter.com/alibaba_qwen/status/2088280182356611304
40•mfiguiere•13m ago•16 comments

Seven books I keep close because I love them

https://blog.plover.com/2026/08/02/
3•surprisetalk•13m ago•0 comments

Unsloth - Qwen3.8 - How to Run Locally

https://unsloth.ai/docs/models/qwen3.8
3•apitman•13m ago•0 comments

Self-hosted web push Cloudflare Worker, works on iOS

https://kukuroo.cc/
3•saiday•13m ago•1 comments

Qwen3.8-27B is now available on Hugging Face

https://huggingface.co/collections/Qwen/qwen38
9•oger•15m ago•2 comments

Demographic Dividend, my ass; overpopulation sucks

https://shubhamjain.co/2026/08/13/demographic-dividend-overpopulation-sucks/
3•shubhamjain•16m ago•0 comments

Dungeon Survivors – A bullet-heaven roguelite built in C# and MonoGame

https://lholhe.itch.io/dungeon-survivors-early-access
2•devejesus•16m ago•0 comments

Kakehashi Update: Running Apple Clang build and lowering overhead to 1.24x

2•vlad_kalinkin•16m ago•0 comments

Pushover: Simple Notifications for Android, iPhone, iPad, and Desktop

https://pushover.net/
2•mikecarlton•17m ago•0 comments

Qwen 3.8 27B is out: open weights, best local dense model yet

https://huggingface.co/Qwen/Qwen3.8-27B-FP8
26•erdaltoprak•17m ago•5 comments

Firstdrop

https://nuoy.app/firstdrop
2•bookofjoe•17m ago•0 comments

Surveillance company Flock moves to increase oversight after police misuse

https://www.nbcnews.com/tech/security/flock-safety-police-abuse-oversight-data-retention-rcna592217
3•pavel_lishin•18m ago•0 comments

The Task Isn't the Job

https://sunilpai.dev/posts/the-task-isnt-the-job/
2•tosh•19m ago•0 comments

Show HN: Measure your AI search with BYOK and OSS (free)

https://github.com/letterstory/lettertrace
2•mathewpregasen•19m ago•0 comments

Gerrymandering won. It's time to change the rules

https://www.bostonglobe.com/2026/08/13/opinion/gerrymandering-proportional-representation/
3•petethomas•20m ago•0 comments

Does AI Improve Access to Justice?

https://rafaelresearch.com/research/does-ai-improve-access-to-justice
2•rafaelaziz•21m 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/