frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Plaindromes

https://www.futilitycloset.com/2026/09/08/impostors/
1•surprisetalk•16s ago•0 comments

MCP Server for Local AI Information

https://www.promptquorum.com/mcp-stats
1•PromptQuorum•17s ago•1 comments

Show HN: A Shapefile converter that fixes the winding you didn't know was wrong

https://9revolution9.com/tools/geo/shp-geojson
1•glassonion999•20s ago•0 comments

Katamari Object Library

https://katamari.andrew-boylan.com/
1•bookofjoe•55s ago•0 comments

Show HN: Sanka – Open-source DRF-to-FastAPI migration engine, benchmarked

https://github.com/sankaHQ/sanka
1•haegwan•1m ago•0 comments

Andreessen Horowitz is launching an (AI) 'academy' with no homework

https://www.theverge.com/ai-artificial-intelligence/998813/andreessen-horowitz-ai-academy
1•achow•2m ago•0 comments

PBKDF2 has a 100k-iteration ceiling in Cloudflare Workers

https://whoszoo.app/workers-pbkdf2-ceiling
1•hansreno•2m ago•0 comments

Inference Cost Calculator

https://flaviocopes.com/tools/inference-cost/
1•ibobev•2m ago•0 comments

4K Analog Video Feedback Fractal Device

https://www.youtube.com/watch?v=koDCabeh5kQ
1•waltbosz•3m ago•0 comments

The Gnome LLM Policy That I Want

https://blogs.gnome.org/alatiera/2026/09/23/the-gnome-llm-policy-that-i-want/
2•ibobev•3m ago•0 comments

Fork of Adium adds support for Apple Silicon, WhatsApp, Telegram, Signal, Teams

https://github.com/KnutMann/adium
2•corywright•5m ago•1 comments

Americans' Views of Data Centers Have Turned More Negative

https://www.pewresearch.org/short-reads/2026/09/22/americans-views-of-data-centers-have-turned-mo...
2•karakoram•6m ago•0 comments

Cars, New York City 1974-1976

https://langdonclay.com/portfolio/carsnyc
1•karakoram•8m ago•0 comments

Ask HN: Which harness do you use with Qwen3.8 27B? And why?

1•grigio•8m ago•0 comments

Closing the Gap Between Float and Posit Hardware Efficiency

https://arxiv.org/abs/2603.01615
1•Miksel12•9m ago•0 comments

Oil Tanker Costs Hit Record $1.2M a Day as Iran War Disrupts Shipping

https://www.ft.com/content/f95db340-8c8f-435f-957d-4623255ac29e
1•karakoram•9m ago•1 comments

NBER Economics of Artificial Intelligence Program Conference

https://www.nber.org/conferences/economics-artificial-intelligence-fall-2026
1•m-hodges•10m ago•0 comments

The Price of Intelligence Is Falling Rapidly

https://marginalrevolution.com/marginalrevolution/2026/09/the-price-of-intelligence-is-falling.html
1•gotmedium•11m ago•0 comments

Jehovah's Witnesses allow blood-derived products but keep ban on whole-blood

https://apnews.com/article/jehovahs-witnesses-donated-blood-transfusions-plasma-13fbe733e0039109e...
2•Markoff•11m ago•2 comments

Open-source tool will eliminate "fail-fast" logic from your code

https://github.com/asstgr/asstgropensource
1•asstgr•12m ago•0 comments

Show HN: Readplace – Read the Web Not the Slop

https://readplace.com/import
1•fagnerbrack•13m ago•0 comments

Why your numbers look wrong

https://www.carmenansio.com/articles/opentype-features-css/
1•mooreds•14m ago•0 comments

The GitHub wiki is an anti-pattern

https://michaelheap.com/github-wiki-is-an-antipattern/
3•ibobev•14m ago•1 comments

Daily Food Recalls

https://dailyfoodrecalls.com/
1•rdmuser•14m ago•0 comments

How to Find WordPress Plugin Bugs and Make Profit

https://medium.com/meetcyber/how-to-find-real-wordpress-plugin-bugs-and-turn-them-into-reportable...
1•ls1911•15m ago•0 comments

Reddit and Discord Blocked in the Philippines

https://businessmirror.com.ph/2026/09/22/cicc-requires-reddit-discord-to-establish-presence-in-phl/
1•lawgimenez•15m ago•0 comments

I Don't Want the Details

https://michaelheap.com/i-dont-want-the-details/
2•mooreds•15m ago•0 comments

Phosphor Deck – one zellij session your phone and laptop share

https://github.com/rsmedrano-cloud/phosphor-deck
1•rsmedrano•16m ago•0 comments

In the Private Jet Age, the Quiet Allure of Private Rail

https://nytimes.com/2026/09/23/travel/amtrak-private-train-cars.html
1•pseudolus•18m ago•1 comments

Smart glasses are causing havoc in India

https://www.technologyreview.com/2026/09/23/1144953/smart-glasses-havoc-india/
1•BaudouinVH•18m 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/