frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Building More Resilient Local-First Software with ATProto

https://jakelazaroff.com/words/building-more-resilient-local-first-software-with-atproto/
1•kurinikku•36s ago•0 comments

Estimating ISS speed from images using OpenCV (~2–3% error)

https://github.com/BabbaWaagen/AstroPi
1•BabbaWaagen•47s ago•0 comments

Krazam – Offsite Karaoke [video]

https://www.youtube.com/watch?v=s-x_bXO7nzA
1•tart-lemonade•2m ago•0 comments

Strengthening GitLab.com security: Mandatory multi-factor authentication

https://about.gitlab.com/blog/strengthening-gitlab-com-security-mandatory-multi-factor-authentica...
1•tcfhgj•2m ago•0 comments

Nesion – a KV-Cache eviction engine

https://nesion.net
1•CarlosCosta_•3m ago•0 comments

Conductor raises $22M Series A

https://www.conductor.build/blog/series-a
1•Charlieholtz•3m ago•0 comments

Spacecraft Heat Shields Could Violently "Burst" in Alien Atmospheres

https://www.universetoday.com/articles/spacecraft-heat-shields-could-violently-burst-when-plungin...
1•gostsamo•4m ago•0 comments

Show HN: SkillForge – Turn code and docs into instructions AI agents can follow

https://github.com/armelhbobdad/bmad-module-skill-forge
1•tigoo•5m ago•0 comments

Fine Tuning Services Benchmark

https://vintagedata.org/blog/posts/fine-tuning-as-service
1•ydetrois•6m ago•1 comments

AI native Slack/teams: Turning conversations to context

https://venturebeat.com/data/imagine-if-your-teams-or-slack-messages-automatically-turned-into-se...
1•tango12•6m ago•0 comments

Show HN: I Made an Android App to Bridge Google Health Connect to Webhook

https://github.com/mcnaveen/health-connect-webhook/
1•mcnx097•6m ago•0 comments

A Couple Million Lines of Haskell: Production Engineering at Mercury

https://blog.haskell.org/a-couple-million-lines-of-haskell/
1•constantinum•7m ago•0 comments

Using LLMs to amplify human labeling and improve Dash search relevance

https://dropbox.tech/machine-learning/llm-human-labeling-improving-search-relevance-dropbox-dash
1•softwaredoug•7m ago•0 comments

Claude Code Internals: An AI-Assisted Analysis of the Leaked Source

https://victorantos.com/posts/i-pointed-claude-at-its-own-leaked-source-heres-what-it-found/
1•victorbuilds•8m ago•0 comments

Show HN: Margo – Find the font your brain reads fastest

https://margo.fyi/
1•theseidel•9m ago•0 comments

Global Ban on Digital Duties Expires After Stalled Talks at WTO Meeting

https://www.nytimes.com/2026/03/31/business/economy/digital-tax-world-trade-organization.html
1•donohoe•10m ago•0 comments

Show HN: TraceHouse – ClickHouse Monitoring

https://dmkskd.github.io/tracehouse/
1•xxdd2ea•10m ago•0 comments

Some of the most popular graduate degrees don't pay off financially, study finds

https://www.washingtonpost.com/education/2026/03/31/graduate-degree-earnings-study/
2•dberhane•10m ago•1 comments

Show HN: Agent Wellbeing Kit – boundary protection for humans running AI agents

https://github.com/joozio/agent-wellbeing-kit
1•joozio•10m ago•0 comments

The Download: AI health tools and The Pentagon's Anthropic culture war

https://www.technologyreview.com/2026/03/31/1134934/the-download-testing-ai-health-tools-pentagon...
1•joozio•11m ago•0 comments

Ask HN: How do you handle strict rate-limiting on stateless edge workers?

1•rwasimsk•11m ago•0 comments

Explore data across 903 variables about sex, kink, personality and relationships

https://bigkinksurvey.com
1•embedding-shape•11m ago•0 comments

Devil in the grooves: The case against forensic firearms analysis (2023)

https://radleybalko.substack.com/p/devil-in-the-grooves-the-case-against
1•hn_acker•11m ago•0 comments

'Euro-Office': OnlyOffice accuses of license violations

https://www.heise.de/en/news/Euro-Office-OnlyOffice-accuses-of-license-violations-11241334.html
2•76rp•12m ago•0 comments

Autodebug: Telemetry-Driven Inference Optimization Loop

https://graphsignal.com/blog/autodebug-telemetry-driven-inference-optimization-loop/
1•npgraph•12m ago•0 comments

The Spectacle of War and the Struggle to Protest

https://www.newyorker.com/news/fault-lines/the-spectacle-of-war-and-the-struggle-to-protest
1•petethomas•13m ago•0 comments

Claude Code Spinner Verbs

https://github.com/chatgptprojects/claude-code/blob/642c7f944bbe5f7e57c05d756ab7fa7c9c5035cc/src/...
1•oelmgren•14m ago•0 comments

Shifting to AI model customization is an architectural imperative

https://www.technologyreview.com/2026/03/31/1134762/shifting-to-ai-model-customization-is-an-arch...
1•joozio•15m ago•1 comments

Postgres_for_everything

https://github.com/olshansk/postgres_for_everything
1•Olshansky•15m ago•0 comments

Jack Dorsey's thesis on the future of work: From Hierarchy to Intelligence

https://block.xyz/inside/from-hierarchy-to-intelligence
1•kalturnbull•16m ago•1 comments
Open in hackernews

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

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

Comments

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