frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why 4K Blu-ray always beats 4K streaming for picture quality

https://www.engadget.com/2237552/why-4k-blu-ray-better-quality-than-streaming/
1•bookofjoe•28s ago•0 comments

Talk – a public live text stream with no message history

https://talk.sekura.world
1•atakz•31s ago•1 comments

Why I still hand write my commit messages

https://www.jvt.me/posts/2026/08/17/hand-write-commits/
1•ingve•2m ago•0 comments

Oracles Safra Catz brags about "profoundly scary technology" deployed in Gaza

https://www.facebook.com/reel/2050714172471863/
2•DinoPing•2m ago•0 comments

I'll Never Get Y'all to Read the Bible, Will I?

https://www.sympatheticopposition.com/p/ill-never-get-yall-to-read-the-bible
1•goekjclo•4m ago•0 comments

AI systems out-persuade expert humans

https://arxiv.org/abs/2606.16475
1•goekjclo•6m ago•0 comments

The future is robotics (data)

https://www.giete.ma/blog/robotics
1•gietema•6m ago•0 comments

The Law of Stretched [Cognitive] Systems (2022)

https://ferd.ca/the-law-of-stretched-cognitive-systems.html
1•mooreds•8m ago•0 comments

How do functions like alloca allocate memory from the stack?

https://devblogs.microsoft.com/oldnewthing/20260817-40/?p=112617
1•ingve•9m ago•0 comments

Show HN: Solo – portable Linux binaries, solved

https://github.com/pg83/solo
1•pshirshov•10m ago•0 comments

Book the Train, Not the Delay

https://delaybahn.com/
1•pppone•10m ago•0 comments

Show HN: Personal AI tutor that builds and probes your understanding

https://github.com/grandimam/suki
1•grandimam•10m ago•0 comments

GPT-5.6 Sol Pricing Cut by 50%

https://openrouter.ai/openai/gpt-5.6-sol
1•Topfi•12m ago•0 comments

Alternatives to Open Source Software Tainted by AI

https://codeberg.org/ethical-foss/open-slopware
3•colesantiago•12m ago•1 comments

Show HN: Provenance, a daily game about art theft

https://provenance.avibagla.com/
1•avibagla1•12m ago•0 comments

Understanding a Law Firm Through Study

https://engram.com/blog/legal-agents-with-memory
1•jxmorris12•12m ago•0 comments

Police Report 911 Service Number Is Non Operational

https://www.hawaiipolice.gov/police-report-911-service-number-is-non-operational/
1•pudgywalsh•14m ago•0 comments

Show HN: Klar, a simple and opinionated programming language

https://github.com/ProCode-Software/klar
1•ProCodeSoftware•15m ago•0 comments

Evaluating AI Agents as Products

https://www.marble.onl/posts/evaluating_ai_product_quality.html
1•amarble•17m ago•0 comments

Web Jamboree

https://www.webjamboree.net/
1•Curiositry•18m ago•0 comments

Agent Control Plane: the LLM proposes, it never authorizes

https://github.com/yacine-kellib/agent-control-plane
1•Yacine_c75•21m ago•0 comments

Flock CEO Has Now Turned Against the Police

https://ipvm.com/reports/flock-ceo-police
3•jhonovich•22m ago•2 comments

An Open Protocol for Knowledge/Memory Management

1•iamalnewkirk•23m ago•0 comments

Outperforming cuBLAS on NVFP4: Blackwell

https://cudaforfun.substack.com/p/outperforming-cublas-on-nvfp4
2•matt_d•26m ago•0 comments

The Defender's Window

https://blog.gregbrockman.com/the-defenders-window
2•brandonb•26m ago•0 comments

Israel creates fake think tank in likely attempt to dupe AI chatbots

https://responsiblestatecraft.org/israel-influence-chatgpt/
2•DeepLogin•29m ago•0 comments

Show HN: Openleetcode – local LeetCode runner where tests live in the repo

https://github.com/therepanic/openleetcode
1•therepanic•31m ago•0 comments

Pure Pleasure Isn't What You Want, Or, Notes on the Jhānas (2022)

https://sashachapin.substack.com/p/pure-pleasure-isnt-what-you-want
1•eatitraw•34m ago•0 comments

Show HN: Engelbart – Mange Goals and TODOs for Claude Code

https://github.com/divadbaroon/claude-plugins
1•hudsonmp•34m ago•0 comments

Notes on purposeful skill maintenance/improvement/neglect

https://www.alexejgossmann.com/skill-maintenance-improvement-neglect/
1•funnygiraffe•35m 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/