frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Rise of Emotional Surveillance

https://www.theatlantic.com/culture/2026/05/worker-surveillance-emotion-ai/687029/
1•eloisius•4m ago•0 comments

Show HN: ReflowPDF – wrote a layout engine because every PDF library failed

https://reflowpdf.com
1•exsol•7m ago•0 comments

Think pop music is basic? Even classical and jazz are getting less complex

https://connectsci.au/news/news-parent/9259/Think-pop-music-is-basic-Even-classical-and-jazz
1•gmays•7m ago•0 comments

Shoppers falsely identified by facial recognition system

https://www.theguardian.com/technology/2026/may/03/guilty-until-proven-innocent-shoppers-falsely-...
1•kayfox•7m ago•0 comments

GameStop Proposes to Acquire eBay at $125.00 per Share

https://investor.gamestop.com/news-releases/news-details/2026/GameStop-Proposes-to-Acquire-eBay-a...
1•tech234a•8m ago•0 comments

PicoServer: A glue library embedding web server for .NET, no IIS, no Kestrel

https://www.nuget.org/packages/PicoServer
1•myhackernew•8m ago•0 comments

PostgreSQL databases are boring on purpose

https://stormatics.tech/blogs/the-best-postgresql-databases-are-boring-on-purpose
2•pgdatabase•23m ago•0 comments

Unauthorized macOS port claiming Don Ho as an author?

https://github.com/notepad-plus-plus/notepad-plus-plus/issues/17982
4•jethronethro•23m ago•0 comments

Bluchan.org – Anonymous Free Speech Forum

https://www.bluchan.org
1•jjhbhjbj•25m ago•1 comments

Diatom

https://en.wikipedia.org/wiki/Diatom
1•lucaslazarus•26m ago•0 comments

Trump: U.S. Navy will "guide" ships out of Strait of Hormuz from Monday

https://www.axios.com/2026/05/03/trump-us-navy-iran-ships-strait-hormuz
1•cosmicgadget•28m ago•0 comments

UIGen – Why runtime rendering is better than codegen (low code)

https://uigen-docs.vercel.app/blog/runtime-rendering-vs-code-generation
1•ombedzi•28m ago•0 comments

Tesla is facing up to $14.5B in lawsuits and it's only getting worse

https://electrek.co/2026/04/16/tesla-facing-up-to-14-billion-lawsuits-deep-dive/
5•1vuio0pswjnm7•32m ago•0 comments

Stohr

https://stohr.io
1•wesscope•35m ago•1 comments

Amazon takes $45M hit, abandons planned West Auckland data centre

https://www.rnz.co.nz/news/business/594164/amazon-takes-45m-hit-abandons-planned-west-auckland-da...
3•billybuckwheat•35m ago•0 comments

The new grads are not okay

https://blog.evan.hu/p/the-new-grads-are-not-okay
1•evanhu_•40m ago•2 comments

Request for Testers: Personal Planning App

https://www.threads.com/@alaaalatif/post/DX5VxSbmSgE
1•JustCallMeAl•55m ago•1 comments

Russian Soldiers Surrendered for Free McDonald's

https://www.youtube.com/watch?v=MktJb7dFv9E
2•doener•59m ago•0 comments

Don't Sue Me Nintendo

https://latexcrimes.leaflet.pub/3mky5fjz67k2p
1•Kye•1h ago•0 comments

Do AI Detectors Work Well Enough to Trust?

https://www.chicagobooth.edu/review/do-ai-detectors-work-well-enough-trust
2•alex000kim•1h ago•0 comments

Know thyself: LLM schema for personal memory

https://github.com/parrik/know-thyself
2•parrik•1h ago•0 comments

Valletta: A City in History [pdf]

https://www.um.edu.mt/library/oar/bitstream/123456789/15640/1/Valletta%20-%20A%20city%20in%20hist...
1•andsoitis•1h ago•0 comments

Daily Dots

https://dailydots.dev/
1•oliver-zink•1h ago•0 comments

Should You Be Able to Experiment on Your Own Cancer? (2024)

https://unchartedterritories.tomaspueyo.com/p/should-you-be-able-to-experiment
1•Ariarule•1h ago•0 comments

The Science of French Fries

https://foodcrumbles.com/science-making-perfect-fries/
1•lagniappe•1h ago•0 comments

Fake Notepad++ for Mac

https://notepad-plus-plus.org/news/npp-trademark-infringement/
4•birdculture•1h ago•1 comments

Said it couldn't see her eyes. The car then automatically disabled

https://twitter.com/WallStreetApes/status/2051079891316248860
6•bilsbie•1h ago•2 comments

(not) using "cryptographic hashes" for hash table keys

https://runxiyu.org/comp/ch4ht/
1•runxiyu•1h ago•0 comments

Show HN: Using Tailscale with Apple's containerization stack

https://github.com/highpost/tailscale-macos-container
2•highpost•1h ago•0 comments

Trump blocks wind farms on national security grounds

https://www.telegraph.co.uk/business/2026/05/03/trump-blocks-wind-farms-national-security-grounds/
9•pseudolus•1h ago•1 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/