frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

There are now more ETFs than stocks in the US

https://www.apollo.com/wealth/the-daily-spark/more-etfs-than-stocks
1•akyuu•53s ago•0 comments

Claude, Author of the Humanitas

https://www.greaterwrong.com/posts/wRNJZz2iYrfDaSDdz/claude-author-of-the-humanitas
1•Jakob•2m ago•0 comments

Iran Is Back Online

https://mastodon.social/@netblocks/116642131173028444
2•2dvisio•6m ago•0 comments

The Psychology of Arrival in Coworking Spaces

https://twofifty.co/en/blog/psychology-of-arrival-coworking-spaces
1•inchevd•7m ago•0 comments

I'm 19 and built an AI golf swing analyzer with on-device CoreML

https://apps.apple.com/us/app/the-swing-sensei/id6759412468
1•TheSwingSensei•9m ago•0 comments

iOS 26.6 adds new alert when you try blocking too many contacts

https://9to5mac.com/2026/05/26/ios-26-6-adds-new-alert-when-you-try-blocking-too-many-contacts/
1•cdrnsf•9m ago•0 comments

The Nation-State Is a Legacy System. Time for an Upgrade

https://gccsproject.pages.dev/
1•pear01•10m ago•0 comments

Encrypted DNS in 2026: DoH, DoT and DoQ compared with real benchmarks

https://www.copahost.com/blog/encrypted-dns/
1•ggallas•11m ago•0 comments

The worst job interview I ever had

https://www.oliverio.dev/blog/the-worst-job-interview-i-had
1•oliverio•11m ago•0 comments

Being a 1.5-10x Developer

https://build.ms/2026/5/26/being-a-1-5-10x-developer/
1•mergesort•11m ago•0 comments

6M Fake GitHub Stars: How to Vet Open-Source AI Tools

https://www.chatgpt.ca/blog/github-fake-stars-ai-tool-evaluation
1•b-man•12m ago•0 comments

Mysteries of the Griffin iMate

https://www.projectgus.com/2023/04/griffin-imate/
1•geerlingguy•15m ago•0 comments

The Computer That Was Too Advanced for Its Own Good [video]

https://www.youtube.com/watch?v=OWPnEDXVTl8
3•devonnull•16m ago•0 comments

Optimization Constants in Mathematics

https://teorth.github.io/optimizationproblems/
2•bmc7505•21m ago•0 comments

GitHub Classroom sign-ups are no longer available

https://github.blog/changelog/2026-05-26-github-classroom-sign-ups-are-no-longer-available/
2•DropDead•23m ago•0 comments

Analyst on China's spent rocket stages: "Things only continue to get worse"

https://arstechnica.com/space/2026/05/analyst-on-chinas-spent-rocket-stages-things-only-continue-...
3•xoa•24m ago•0 comments

Tracing libjxl decoding patterns, with JPEG XL as the trace data container

https://ender672.github.io/posts/2026-05-26-tracing-libjxl-decoding-patterns/
1•ender672•24m ago•0 comments

Why LLMs will be always Terrible at Software Architecture

https://devforth.io/insights/why-llms-will-be-always-terrible-at-software-architecture/
3•dotnot•24m ago•0 comments

Co-Invest – an MCP server that lets Claude and ChatGPT execute real trades

https://www.liquid.trade/coinvest
2•miwooyork•24m ago•0 comments

Ask HN: How do you model temporarily invalid data structures

1•escot•26m ago•0 comments

Sinclair-O-Matic

https://dpt.github.io/SinclairLogo/
3•worik•28m ago•0 comments

Show HN: Privacy-first notification blocker for Android ad-free

https://permly.app
1•Zartof•28m ago•0 comments

Collection of free online tools for developers

https://webdevpack.com/
1•ivopetkov•29m ago•0 comments

Show HN: ARQ Dashboard – web and TUI monitoring for Python's ARQ job queue

https://github.com/srijanpatel/arq-dashboard
1•spps11•29m ago•0 comments

Startup is betting India's gig economy can train the robots

https://techcrunch.com/2026/05/26/human-archive-taps-into-indias-services-startups-to-collect-dat...
1•methuselah_in•29m ago•0 comments

Jumping Spiders Seem to Dream

https://www.pnas.org/doi/10.1073/pnas.2204754119
3•jyounker•31m ago•0 comments

Kubernetes in Anger

https://samof76.space/kubernetes-in-anger.html
2•sharjeelsayed•32m ago•0 comments

Why is Europe the fastest warming continent?

https://phys.org/news/2026-05-europe-world-fastest-continent.html
13•geox•33m ago•0 comments

Plowshares or nuclear explosions for the national economy

https://annasofialesiv.substack.com/p/plowshares
2•bilsbie•38m ago•0 comments

Stop Doing Easy Things

https://xendo.bearblog.dev/stop-doing-easy-things/
4•xendo•39m 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/