frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

MCP is definitely not dead

https://sderosiaux.substack.com/p/no-mcp-is-definitely-not-dead-the
1•chtefi•4m ago•1 comments

Selective divergence between Grokipedia and Wikipedia article

https://www.pnas.org/doi/10.1073/pnas.2603294123
1•Anon84•5m ago•0 comments

BSD flags are incompatible with iCloud Drive

https://eclecticlight.co/2026/06/02/bsd-flags-are-incompatible-with-icloud-drive/
1•ingve•7m ago•0 comments

JsSIP vs. Sip.js vs. Browser-Phone: Choosing an Open-Source WebRTC Sip Stack

https://www.browser-phone.org/2026/06/02/jssip-vs-sipjs-vs-browser-phone/
1•Dappersiperb•9m ago•1 comments

A reflective AI that refuses to give you answers

https://web-production-07a822.up.railway.app/
1•johnhyder•10m ago•0 comments

Show HN: Rootprint – Self-hosted log search built with Svelte, Hono and Quickwit

https://github.com/rootprint/rootprint
1•badfatcat•11m ago•1 comments

Free browser based QR code generator with custom colors/logo upload

https://takeonanything.com/qr-code-generator/
1•minviex•12m ago•0 comments

Swift Cross Platform

https://www.cocoanetics.com/2026/06/swift-cross-platform/
1•ingve•13m ago•0 comments

The Postmodern Build System

https://jade.fyi/blog/the-postmodern-build-system/
1•birdculture•14m ago•0 comments

LPeg – Parsing Expression Grammars for Lua

https://www.inf.puc-rio.br/~roberto/lpeg/
1•tosh•16m ago•0 comments

Device Bound Session Credentials

https://scotthelme.co.uk/device-bound-session-credentials-making-stolen-cookies-useless/
1•moebrowne•17m ago•0 comments

Fibr.ai is hiring Product Engineers

1•mrafi2•17m ago•0 comments

The commons were never theory – It was always practice

https://hamishcampbell.com/the-commons-were-never-a-theory-it-was-always-practice/
1•BrunoBernardino•17m ago•0 comments

Fredy – Self-hosted real estate scraper for Germany, just hit 1k stars

https://github.com/orangecoding/fredy
1•orangecoding•17m ago•1 comments

A collection of small, low effort tools

https://delphi.tools/
1•ewf•17m ago•0 comments

Chinese Military Sought Nvidia Chips for Years, Report Says

https://www.nytimes.com/2026/06/01/business/economy/china-military-nvidia-chips.html
1•giuliomagnifico•19m ago•0 comments

Under Notre Dame, a 'dig of the century' unearths 1,700 years of history

https://apnews.com/article/notre-dame-dig-treasures-paris-archaeology-roman-dae41f792c1402faf32a8...
1•cobbzilla•20m ago•0 comments

Show HN: I built auto-captions with face-tracking reframe for vertical video

https://captionly.dev
1•captionly•21m ago•0 comments

Challenge and Opportunity – David Bushell

https://dbushell.com/2026/06/01/challenge-and-opportunity/
1•BrunoBernardino•24m ago•0 comments

Pegular Expressions

https://janet.guide/pegular-expressions/
1•tosh•26m ago•0 comments

Poor supervision is pushing young researchers out of academia

https://www.nature.com/articles/d41586-026-01693-4
2•EvgeniyZh•28m ago•1 comments

Why is AI use decried when it appears to have been used without attribution?

2•bookofjoe•28m ago•1 comments

Show HN: Numstore – a single file ACID database for NumPy arrays

https://github.com/lincketheo/Numstore/
1•lincketheo•30m ago•0 comments

Weeping Muses

https://spareatalent.hcommons.org/2026/06/01/weeping-muses-moving-away-from-google/
1•jruohonen•30m ago•0 comments

A 2026 GPU Review for AI Inference. Based on Online Soures

https://old.reddit.com/r/AIProgrammingHardware/comments/1tumela/comprehensive_2026_gpu_review_for...
2•javaeeeee•32m ago•1 comments

The way we treat pigs is a sin

https://www.noahpinion.blog/p/the-way-we-treat-pigs-is-a-sin
18•throw0101a•32m ago•0 comments

Spikes in LLMs Are Bias Vectors: Spike-Free Quantization

https://arxiv.org/abs/2606.02288
2•sbulaev•33m ago•0 comments

Forget Attention: Importance-Aware Attention Is All You Need

https://arxiv.org/abs/2606.02332
2•sbulaev•34m ago•0 comments

Save the balti Can Birmingham's best dish come back from the brink?

https://www.theguardian.com/food/2026/jun/02/balti-birmingham-best-dish-back-from-brink
3•YeGoblynQueenne•36m ago•0 comments

Idea for New Social Media

1•thisIsNotRandom•37m 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/