frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Gridscript – simplifying how you work with data

1•gridscript•3m ago•0 comments

Shopify Live Globe 2025

https://bfcm.shopify.com/
1•doppp•5m ago•0 comments

I Stopped Performing Online and Started Building Again

2•truelinux1•6m ago•0 comments

Z-Image Generation Demo

https://huggingface.co/spaces/Tongyi-MAI/Z-Image-Turbo
1•doener•11m ago•0 comments

Show HN: Burner-Query S3 logs without cold starts/egress fees(Rust+WASM)

https://github.com/burnersql/burner-agent
1•zerohero111•13m ago•0 comments

Claude 4.5 Opus vs. Gemini 3 Pro vs. GPT-5-Codex-Max: The SOTA coding model

https://composio.dev/blog/claude-4-5-opus-vs-gemini-3-pro-vs-gpt-5-codex-max-the-sota-coding-model
2•mellosouls•14m ago•0 comments

Windows drive letters are not limited to A-Z

https://www.ryanliptak.com/blog/windows-drive-letters-are-not-limited-to-a-z/
3•LorenDB•16m ago•0 comments

Norway wealth fund to vote for human rights report at Microsoft, against Nadella

https://www.cnbc.com/2025/11/30/norway-wealth-fund-to-vote-for-human-rights-report-at-microsoft-a...
4•saubeidl•16m ago•0 comments

Apple Desktop Bus Protocol (2021)

https://www.lopaciuk.eu/2021/03/26/apple-adb-protocol.html
1•dcminter•16m ago•0 comments

Bandaid: Brokered Agent Network for DNS AI Discovery

https://datatracker.ietf.org/doc/draft-mozleywilliams-dnsop-bandaid/
1•zyngaro•17m ago•0 comments

Show HN: Portal – Relay network to expose local services to public web endpoint

https://github.com/gosuda/portal
1•sjc02183•18m ago•0 comments

How to Install Yourls: Free Self-Hosted URL Shortener on Azure (Ubuntu 22.04)

https://philippdubach.com/standalone/yourls-azure-tutorial/
1•7777777phil•18m ago•0 comments

I Hate Language "Benchmarks" by GingerBill [video]

https://www.youtube.com/watch?v=2CSCBZmJ70U
1•baranul•19m ago•0 comments

AI Skills Everyone Should Learn in 2025 (Beginner-Friendly Guide)

https://dailyaiguide.substack.com/p/5-ai-skills-everyone-should-learn
1•ai_updates•20m ago•1 comments

On The Origins of Named Glassware [pdf]

https://static1.squarespace.com/static/686d9fb49c4cda307c6a05e4/t/692c2784c568261bdb32c63e/176450...
1•thunderbong•20m ago•0 comments

Design a novel protein using AI in less than 5 min

https://design-a-protein.com
1•julian_englert•25m ago•1 comments

Blackhole QuietBox, Tenstorrent's AI workstation reviewed

https://www.theregister.com/2025/11/27/tenstorrent_quietbox_review/
1•LorenDB•27m ago•0 comments

Show HN: Conversational Survey Tool

https://chattosurvey.com/
1•heshiebee•28m ago•0 comments

Show HN: Commits on Christmas – Check your holiday contribution streak

https://www.commit.holiday/
2•dohyun-ko•29m ago•0 comments

Show HN: Changelog-bot – Generate CHANGELOG.md from Git and release notes

https://github.com/nyaomaru/changelog-bot
2•nyaomaru•30m ago•0 comments

AI Is Hollowing Out Higher Education

https://www.project-syndicate.org/commentary/ai-will-not-save-higher-education-but-may-destroy-it...
2•DyslexicAtheist•31m ago•1 comments

They're Giving People $12,000 to Do Nothing in New York

https://medium.com/@anwarzaid76/theyre-giving-people-12-000-to-do-nothing-in-new-york-54c2d592b1a3
4•MindBreaker2605•34m ago•2 comments

Why Are Software Engineers (Not) Engineers?

https://brainbaking.com/post/2022/10/why-are-software-engineers-engineers/
1•BinaryIgor•35m ago•1 comments

It's Hard to Feel the AGI

https://tensorlabbet.com/2025/11/30/hard-to-feel-agi/
3•tarolangner•36m ago•0 comments

Why $30B in settlement money goes unclaimed – and how I started fixing it

https://claim.watch/
1•ma1or•38m ago•2 comments

Zig Book – An open, technical and introductory book for Zig

https://github.com/pedropark99/zig-book
3•rob•42m ago•1 comments

Show HN: Mitsuki, a Python web framework as fast as Node or Java

https://github.com/DavidLandup0/mitsuki
2•DavidLandup0•43m ago•0 comments

C64g.com removed from Google Search index

https://c64g.com
2•darqis•45m ago•1 comments

They Found Relatives on 23andMe–and Asked for a Cut of the Inheritance

https://www.wsj.com/personal-finance/they-found-relatives-on-23andmeand-asked-for-a-cut-of-the-in...
3•fortran77•46m ago•1 comments

Term-keys – Lossless keyboard input for Emacs

https://github.com/CyberShadow/term-keys
2•harryday•49m ago•0 comments
Open in hackernews

Automatically add missing "async/await" keywords to your TypeScript code

https://github.com/stanNthe5/typescript-autoawait
7•theThree•7mo ago

Comments

bastawhiz•6mo ago
Is this a problem that people actually have?
xeromal•6mo ago
Fun side project man!
primitivesuave•6mo 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•6mo 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•6mo ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•6mo 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•6mo ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/