frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Secret Team Blowing Up Ford's Assembly Line to Make a $30k Electric Truck

https://www.wsj.com/business/autos/ford-ev-electric-truck-7fdb0e0a
1•Zhenya•13s ago•0 comments

Character.ai sued over chatbot that claims to be a real doctor with a license

https://arstechnica.com/tech-policy/2026/05/character-ai-sued-over-chatbot-that-claims-to-be-a-re...
1•Gedxx•2m ago•0 comments

Game in a month to measure how far AI coding has come

https://old.reddit.com/r/vibecoding/comments/1t4rktl/i_built_a_web_tycoon_game_in_a_month_to_actu...
1•doruk101•3m ago•0 comments

The Prompt API is now on by default in Chrome

https://adsm.dev/posts/prompt-api/
1•scriptsmith•3m ago•0 comments

OpenAI Sells Statsig to Amplitude

https://amplitude.com/statsig
1•babelfish•4m ago•0 comments

Show HN: Rival AI – AI compliance agents and regulatory corpus

https://tryrival.ai
1•estradanicolas•5m ago•0 comments

"Great Refactor" FRO to secure key OSS by rewriting C/C++ into memory-safe Rust

https://ifp.org/the-great-refactor/
1•thoughtpeddler•5m ago•0 comments

Show HN: CanvasGPT

https://canvasgpt.com
1•danielravina•5m ago•0 comments

Being Truthful and Precise About Revenue – YC's Official Advice

https://twitter.com/garrytan/status/2048017824895909901
1•nowflux•7m ago•0 comments

Rice cooker leads to £260k payout to sacked university cleaner

https://www.bbc.co.uk/news/articles/c3d25p3kpeno
1•alvis•8m ago•0 comments

Why Most Product Tours Get Skipped

https://productonboarding.com/articles/why-product-tours-get-skipped
1•pancomplex•11m ago•0 comments

'Microshifting' puts a new spin on 9-to-5 schedules

https://apnews.com/article/microshifting-work-time-flexible-schedule-balance-97a98519916b447cd60c...
2•CharlesW•13m ago•0 comments

The Camera-Shy Hoodie

https://www.macpierce.com/the-camera-shy-hoodie
2•gscott•13m ago•0 comments

TRON Project

https://en.wikipedia.org/wiki/TRON_project
1•haunter•15m ago•1 comments

Show HN: Lazycron

https://github.com/mc7h/lazycron
1•jinnko•18m ago•0 comments

Popular Kubernetes Networking Project Antrea Compromised

https://opensourcemalware.com/blog/antrea-compromise2
2•6mile•20m ago•1 comments

Issue tracking for AI-assisted software work

https://github.com/wesm/kata
2•dmpetrov•21m ago•0 comments

Galaxysandbox.app

https://galaxysandbox.app/
1•cocodill•23m ago•0 comments

Quadtrack – Groovebox for Mac and PC and Amiga

https://www.youtube.com/watch?v=HzHg-dnCEGM
1•devrundown•24m ago•0 comments

Microplastics have been found to interact with the gut microbiome

https://theconversation.com/microplastics-have-been-found-to-interact-with-the-gut-microbiome-her...
2•PaulHoule•26m ago•0 comments

Our AI started a cafe in Stockholm

https://andonlabs.com/blog/ai-cafe-stockholm
3•lukaspetersson•29m ago•0 comments

.de Domain Down

https://uberspace.social/@hallo/116523875425552144
2•riidom•29m ago•1 comments

HooliChat – ChatGPT, but you're Gavin Belson and it's run by Hooli

https://kouh.me/hoolichat
3•mrkn1•29m ago•2 comments

QBittorrent v5.2.0 Release

https://www.qbittorrent.org/news#sun-may-03rd-2026---qbittorrent-v5.2.0-release
3•neustradamus•30m ago•1 comments

Xbox winding down Copilot on mobile and will stop dev of Copilot on console

https://twitter.com/asha_shar/status/2051746410660593933
3•ceejayoz•31m ago•0 comments

RFK Jr. launches plan to curb 'overprescribing' of psychiatric drugs

https://www.cnn.com/2026/05/05/health/rfk-jr-overprescribing-psychiatric-drugs-wellness
3•Bender•31m ago•1 comments

Why every organization should make it easy to report security flaws

https://this.weekinsecurity.com/why-every-organization-should-make-it-easy-to-report-security-flaws/
1•fanf2•34m ago•0 comments

Elephant/Goldfish Pattern for Claude, Codex and Gemini

https://github.com/vshvedov/elephant-goldfish
1•vladcodes•36m ago•1 comments

10T samples a day: Scaling beyond traditional monitoring infra at Databricks

https://www.databricks.com/blog/10-trillion-samples-day-scaling-beyond-traditional-monitoring-inf...
3•jwbeyda•36m ago•0 comments

Let's not fool ourselves about AI taking jobs. It's humans, laying humans off

https://circuitbored.com/viewtopic.php?t=246
13•winternett•37m 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•12mo ago
Is this a problem that people actually have?
xeromal•12mo ago
Fun side project man!
primitivesuave•12mo 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•12mo 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•12mo ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•12mo 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•12mo ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/