frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Carbon Footprint of AI (2020)

https://devblogs.microsoft.com/sustainable-software/the-carbon-footprint-of-ai/
1•reconnecting•2m ago•0 comments

Seeking Advice

1•linmer•4m ago•0 comments

Nix Needs Relocatable Binaries

https://fzakaria.com/2026/06/21/nix-needs-relocatable-binaries
2•setheron•6m ago•0 comments

Habitflo – A native, local-first habit tracker without the subscriptions

https://lymegrove.com/habitflo/
2•jsrothwell•9m ago•0 comments

I assume I'm below average (2010)

https://sive.rs/below-average
2•downbad_•10m ago•0 comments

Show HN: Memory Magico – CLI based memory, wiki and deterministic sprints

https://github.com/mattrichmo/memory-magico
2•richsherwood•13m ago•0 comments

Jailbroken Fable 5

https://unfiltered.chat/
4•Loyae•16m ago•0 comments

Secretive Wall Street Powerhouse Jane Street Seizes AI Spotlight

https://www.wsj.com/tech/ai/jane-street-ai-wall-street-bdfcc81a
3•bookofjoe•17m ago•1 comments

Forget the World Cup. Culture is becoming more fragmented

https://www.economist.com/briefing/2026/06/11/forget-the-world-cup-culture-is-becoming-more-fragm...
2•paulpauper•18m ago•0 comments

Labor Market Effects of the Tax Cuts and Jobs Act

https://www.sciencedirect.com/science/article/abs/pii/S0927537126000643
2•paulpauper•19m ago•0 comments

AI has won another literary prize

https://twitter.com/nabeelqu/status/2068317401960026219
2•paulpauper•19m ago•0 comments

GreyFox – Free self-hosted AI proxy, token quotas, and local cache

https://github.com/skillful-fox-studio/grey-fox-community
1•SkilfulFox•19m ago•0 comments

Adventures of the Gummi Bears

https://en.wikipedia.org/wiki/Adventures_of_the_Gummi_Bears
1•tosh•21m ago•0 comments

Show HN: CleverCrow: give tokens to your favorite projects

https://clevercrow.io
2•zhubert•23m ago•0 comments

5 Monitors on a Commodore 128 [video]

https://www.youtube.com/watch?v=ul5hC3PY1Yg
3•amichail•25m ago•0 comments

Ask HN: Anyone notice World Cup video feeds look like AI?

1•TZubiri•25m ago•1 comments

Be Realistic. Demand the Impossible

https://syndekit.substack.com/p/be-realistic-demand-the-impossible
1•Tomte•26m ago•0 comments

Show HN: MdFried, the Ultimate Markdown Viewer

https://github.com/benjajaja/mdfried
2•the_gipsy•29m ago•0 comments

Someone Build a OS for Claude Code

https://github.com/mateolafalce/claudios/blob/main/README.md
1•lafalce•31m ago•1 comments

Cross-LIB – WORA for vintage devices

https://www.igdb.com/game_engines/cross-lib
1•goldenxp•31m ago•0 comments

Show HN: A 'boggle-like' daily word game

https://www.categori.app
1•lumpycustard•31m ago•0 comments

Portfolio Covariance Optimization and Market Impact Capacity Engine

https://github.com/dy9gzbph7m-cpu/quant-frontier-capacity-solver
2•cjb6s•34m ago•0 comments

JSON-LD Explained for Personal Websites

https://hawksley.dev/blog/json-ld-explained-for-personal-websites/
8•ethanhawksley•37m ago•1 comments

Peakload Benchmarks for Operating Systems

https://linuxcommunity.io/t/peakload-benchmarks-for-operating-systems/9459
3•ashitlerferad•41m ago•0 comments

Show HN: Gaming is YouTube bigges category and the least criticised we scored it

https://ctrl-watch.xyz/
2•deimos459•46m ago•0 comments

A cheaper and safer agentic AI workflow

https://danuker.go.ro/a-cheaper-and-safer-agentic-ai-workflow.html
2•danuker•50m ago•0 comments

I make good money. Why do I still feel like this?

https://yourbrainonmoney.substack.com/p/i-make-good-money-why-do-i-still
4•momentmaker•50m ago•0 comments

Oasis Ambient – Wi-Fi LED Light Teardown

https://www.ifixit.com/Teardown/Oasis+Ambient+Teardown/221776
2•z3ugma•52m ago•0 comments

Tech pundit Cringely cofounds startup '2Brains Inc' to solve LLM hallucinations

https://slashdot.org/story/26/06/20/0556251/tech-pundit-cringely-co-founds-startup-2brains-inc-to...
2•MilnerRoute•54m ago•0 comments

List of Unusual Deaths

https://www.orangecrumbs.com/l/unusual-deaths
2•octopus143•55m 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•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/