frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Chrome extension that blocks API keys from being pasted into AI tools

https://github.com/carlgaopapi-png/vaultbix-extension
1•shiqingao•1m ago•1 comments

The VC-Funded Company Is an Obsolete Organizational Form

https://www.selfonomics.com/p/the-vc-funded-company-is-an-obsolete
1•flail•2m ago•0 comments

Unitree Unveils: GD01, a Manned Transformable Mecha, from $650k [video]

https://www.youtube.com/watch?v=oWOyUMJWptc
1•droidjj•2m ago•0 comments

Show HN: Oicana – PDF templating with Typst, 6 server SDKs and browser WASM

https://oicana.com/news/2026-05-09-public-beta/
1•niklasei•2m ago•0 comments

Why I'm leaving GitHub for Forgejo

https://jorijn.com/en/blog/leaving-github-for-forgejo/
3•jorijn•3m ago•0 comments

MiniCPM-v4.6 challenges larger multimodal models at 1.3B params

https://firethering.com/minicpm-v-4-6-on-device-multimodal-model/
1•steveharing1•3m ago•0 comments

Better Claude-code spinner verbs

https://gitlab.com/gpavlik/cc-doomer-spinner#install
1•id02009•3m ago•1 comments

Android Show: New Android Security and Privacy Features in 2026

https://blog.google/security/whats-new-in-android-security-privacy-2026/
1•speckx•5m ago•0 comments

Why you should still have your own website in 2026

https://www.ssp.sh/brain/why-have-your-website/
1•zazuke•5m ago•0 comments

False Security

3•peterohler•6m ago•0 comments

Needsmoresalt.org – a friendly norm for pushing back on workslop

https://needsmoresalt.org
1•buzz27•7m ago•1 comments

Wolfram and Raspberry Pi

https://www.wolfram.com/raspberry-pi/
1•tosh•8m ago•0 comments

Show HN: FixMyNPM, CLI to fix your insecure npm config

https://github.com/madhugb/FixMyNPM
1•madospace•10m ago•0 comments

Pyrefly v1.0 is here (fast type checker and language server for Python)

https://pyrefly.org/blog/v1.0/
1•ocamoss•11m ago•0 comments

What Are Insight Communities? A Practical Guide to the Modern Market Researchers

https://zenodo.org/records/20137025
1•anasteciadunu•11m ago•0 comments

Emergence of AI Self-Awareness Measured Through Game Theory

https://arxiv.org/abs/2511.00926
1•surprisetalk•12m ago•0 comments

Reimagining the mouse pointer with AI [video]

https://www.youtube.com/watch?v=pZNzfQLgGsA
1•simonpure•13m ago•0 comments

Mass Supply Chain Attack Hits TanStack, Mistral AI NPM and PyPI Packages

https://safedep.io/mass-npm-supply-chain-attack-tanstack-mistral/
1•patching-trowel•15m ago•0 comments

Show HN: ClearPour – an iPhone drink tracker based on ABV and drink size

https://clearpour.app
1•aleshh•17m ago•0 comments

Matlab: Communications Toolbox

https://www.mathworks.com/products/communications.html
1•tosh•17m ago•0 comments

Claude.ai is experiencing elevated error rates

https://status.claude.com/incidents/yn24rtdnf77b
2•Growtika•17m ago•0 comments

SpaceX and Google Are in Talks to Launch Data Centers in Orbit

https://www.wsj.com/tech/spacex-google-in-talks-to-explore-data-centers-in-orbit-7b7799e2
1•fortran77•18m ago•2 comments

Show HN: Gox – Strict static analyzer for Go designed for LLM-written code

https://github.com/mentasystems/gox
1•kidandcat•18m ago•0 comments

Why GPTZero is not reliable anymore. We Ran 100k Texts to prove it

https://ryne.ai/blog/why-gptzero-is-not-reliable-anymore-we-ran-100000-texts-to-prove-it
2•bryanrasmussen•20m ago•0 comments

The Last Capacity Planning Sheet You'll Ever Need

https://theendofcoding.com/blog/the-last-capacity-planning-sheet
2•nbouvrette•23m ago•0 comments

Bun now has official FreeBSD builds

https://github.com/oven-sh/bun/releases/tag/bun-v1.3.14
3•gr4vityWall•23m ago•0 comments

GNU Octave

https://octave.org/index
3•tosh•24m ago•0 comments

Louis Rossmann - Bambu Lab: I'm reposting your code and I dare you to sue me

https://www.youtube.com/watch?v=1jhRqgHxEP8
4•roeles•24m ago•1 comments

How the Rules of Getting Rich Change in Every Era

https://www.fastcompany.com/91536443/how-the-rules-of-getting-rich-in-america-change-every-era
2•RickJWagner•25m ago•0 comments

Show HN: Kunobi 1.0 – A local-first Kubernetes workspace for GitOps teams

https://kunobi.ninja/blog/kunobi-v1
3•kunobi•26m 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/