frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Syncle – Sync Postgres, MySQL, SQLite, MongoDB and Redis to Each Other

https://syncle.dev
1•osmanahmadxai•1m ago•0 comments

Radio Setup That Tracks Nearby Cars via Tire Sensors

https://github.com/merbanan/rtl_433
1•CGMthrowaway•1m ago•0 comments

I built a multiplayer version of the 4,500-year-old Royal Game of Ur

https://royalgameofur.app
3•potentdream•3m ago•0 comments

(Parody, A.I.) Neighbor Sun-Bathing Nude [Oklahoma]

https://archive.org/details/oklahoma-governor-dhs-secretary-jokes-1
1•OkieSmokie3•4m ago•0 comments

AWS to acquire DuckLabs, the Amsterdam-based company behind DuckDB

https://www.aboutamazon.com/news/company-news/aws-ducklabs
2•saganus•5m ago•0 comments

Principle Driven Development

https://principledriven.dev/
2•bushido•5m ago•0 comments

NIH wants to shroud peer review scores. Here's what you can do about it

https://27unihted.substack.com/p/nih-wants-to-shroud-peer-review-scores
2•SubiculumCode•6m ago•0 comments

Kalshi bans ex-Congressman for life concluding he likely was insider trading

https://apnews.com/article/kalshi-george-santos-lifetime-ban-c8ac3e25aec55cd5509485a84f79f9e0
2•theanonymousone•6m ago•0 comments

Re-engineering Apache Airflow for speed and scale

https://www.astronomer.io/blog/astro-airflow-re-engineered-for-speed-and-scale/
2•jlaneve•7m ago•0 comments

How an MIT research project became a global programming language

https://news.mit.edu/2026/how-mit-research-project-became-global-programming-language-0831
2•markkitti•9m ago•1 comments

Fake Logos

https://github.com/pigment/fake-logos
1•opengrass•10m ago•0 comments

Agentic/Human Contractor distributed marketplace

1•godcreatebugs•11m ago•0 comments

Swiss nuclear plant back online after heatwaves

https://sg.news.yahoo.com/swiss-nuclear-plant-fully-back-123711589.html
1•leonidasrup•11m ago•0 comments

VibeCoded AI-Slop License v1.0

https://gist.github.com/NicolasCARPi/3fd349ed1ed52ae6b835d5364cda4cd6
2•birdculture•13m ago•0 comments

A walkable ASCII cyberpunk city in one HTML file [video]

https://www.youtube.com/watch?v=3YtygAx_C6A
6•keithcarolus•14m ago•2 comments

From poop to plants, how wolves help blueberries grow and spread in Minnesota

https://www.mprnews.org/story/2026/08/30/how-wolves-help-blueberries-grow-and-spread-in-northern-...
1•rznicolet•14m ago•0 comments

Whatareyoubuilding.ai – indie builder and AI product directory

https://whatareyoubuilding.ai/
1•ilreb•16m ago•0 comments

FTC to File Lawsuit Alleging Amazon Deceived Advertisers

https://www.wsj.com/tech/ftc-to-file-lawsuit-alleging-amazon-deceived-advertisers-d71039ee
1•uxhacker•16m ago•0 comments

Is your Shopify store visible to ChatGPT? A free AI-visibility scanner

https://rankinai.surge.sh/
1•geo_signal•16m ago•0 comments

The Anatomy of a U.S. Presidential Motorcade

https://people.howstuffworks.com/presidential-motorcade.htm
2•thunderbong•17m ago•0 comments

Airlink planes fly remarkably low over DHL Stadium before Springboks game

https://www.capetownetc.com/news/watch-airlink-planes-fly-remarkably-low-over-dhl-stadium-before-...
1•tevrede•18m ago•0 comments

Bankers: EU must tap trillions of euros in private savings to keep up w US/China

https://www.reuters.com/world/china/eu-must-tap-trillions-euros-private-savings-keep-up-with-us-c...
1•CGMthrowaway•20m ago•2 comments

LLM tokens aren't the new dollars

https://avaprotocol.org/blog/tokens-arent-the-new-dollars
1•kezjo•21m ago•0 comments

Tailcat

https://tailscale.com/blog/tailcat
2•0xedb•21m ago•0 comments

How cooked are you from vibecoding?

https://codeset.ai/fried
1•Nfsaavedra•22m ago•1 comments

Apple CEO Tim Cook's Legacy Is Dull Products and Spineless Capitulation

https://karlbode.com/apple-ceo-tim-cooks-legacy-is-dull-products-and-spineless-capitulation/
4•HotGarbage•23m ago•2 comments

The safest job from AI may be writing

http://muratbuffalo.blogspot.com/2026/08/the-safest-job-from-ai-may-be-writing.html
22•ilreb•23m ago•10 comments

Show HN: 10x token savings for AI Web Scraping

https://www.makralabs.org/about
2•ritsource•24m ago•0 comments

TimesFM-3: A zero-shot foundation model for multivariate forecasting

https://research.google/blog/timesfm-3-a-zero-shot-foundation-model-for-multivariate-forecasting/
2•xnx•25m ago•0 comments

The Wormhole Hall of Shame

https://rznicolet.com/2026/07/05/wormhole-hall-of-shame/
2•rznicolet•25m ago•4 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/