frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Agency Agents: Open-source framework for building multi-agent AI workflows

https://github.com/msitarzewski/agency-agents
1•paidx•31s ago•0 comments

Replit Agent 4: Built for Creativity

https://blog.replit.com/introducing-agent-4-built-for-creativity
1•simonebrunozzi•1m ago•0 comments

Distributed Python dataframes and machine learning with Livebook and Elixir

https://dashbit.co/blog/distributed-python-livebook
1•ahamez•4m ago•0 comments

I don't know if I like working at higher levels of abstraction

https://xeiaso.net/blog/2026/ai-abstraction/
1•watermelon0•4m ago•0 comments

Reddit Post

https://old.reddit.com/r/PisequaltoNP/comments/1rrj2ob/solving_sat_via_generalized_rubiks_cube_re...
1•KaoruAK•4m ago•0 comments

I built an app that aligns GNSS clock residuals to 99.9999% geometric linearity

1•CitizenKorea•6m ago•0 comments

Learning flywheels are all you need

https://invertedpassion.com/learning-flywheels-are-all-you-need/
1•twapi•7m ago•0 comments

James Randi – Talks at Google (2007) [video]

https://www.youtube.com/watch?v=MTPj9VlNzQ0
1•nomilk•9m ago•0 comments

BrowseComp: The Benchmark That Tests What AI Agents Can Find

https://oss.vstorm.co/blog/browsecomp-ai-agent-benchmarks/
1•kacper-vstorm•13m ago•1 comments

GitHub Copilot: Model Routing Error

https://devactivity.com/posts/trends-news-insights/copilots-hidden-logic-how-ai-model-routing-imp...
1•danebalia•16m ago•1 comments

Puzzle Planet

https://mathwithbaddrawings.com/2026/03/11/puzzle-planet/
1•mci•17m ago•0 comments

Returning to Rails in 2026

https://www.markround.com/blog/2026/03/05/returning-to-rails-in-2026/
1•stanislavb•17m ago•0 comments

Show HN: ClawJetty: See what your AI Agent is Doing

https://clawjetty.com/#
1•andes314•18m ago•0 comments

Insights into US life expectancy stagnation from birth cohort mortality dynamics

https://www.pnas.org/doi/10.1073/pnas.2519356123
2•littlexsparkee•19m ago•0 comments

The Anthropic Institute

https://www.anthropic.com/news/the-anthropic-institute
1•SilverElfin•19m ago•0 comments

TypeUI

https://www.typeui.sh/
1•handfuloflight•25m ago•0 comments

Show HN: An open-source AI Quant Agent trading live with my own $1000

https://github.com/chenjy16/OpenPilot
1•chenjy16•27m ago•2 comments

Targeting mistake led to US missile strike on Iranian girls school-media reports

https://www.abc.net.au/news/2026-03-12/us-behind-iran-girls-school-strike-media-reports/106444554
4•asdefghyk•32m ago•1 comments

AI Isn't Lightening Workloads. It's Making Them More Intense

https://www.wsj.com/tech/ai/ai-isnt-lightening-workloads-its-making-them-more-intense-e417dd2c
3•thm•32m ago•0 comments

Tracing Discord's Elixir Systems (Without Melting Everything)

https://discord.com/blog/tracing-discords-elixir-systems-without-melting-everything
1•manusachi•33m ago•0 comments

AI Poisoning for Fun and Profit

https://www.amazon.com/AI-Poisoning-Fun-Profit-Corrupting/dp/B0GRR29HJK/
1•ada1981•33m ago•1 comments

Show HN: CmdRunner – Upload test cases and an AI agent runs them in a browser

1•kiru-cmdrunner•33m ago•0 comments

Kremlin backs covert campaign to keep Viktor Orbán in power

https://www.ft.com/content/34df20f9-487b-4cb6-9dc9-d676d959d1ed
6•doener•40m ago•0 comments

I'm Rebuilding Mars MIPS for You

https://webmars.nfiles.top/
1•nenepbl•41m ago•1 comments

LLM Evaluation Metrics: The Ultimate LLM Evaluation Guide

https://www.confident-ai.com/blog/llm-evaluation-metrics-everything-you-need-for-llm-evaluation
2•vismit2000•44m ago•0 comments

Making Sense of the DXY

https://dm13450.github.io/2026/03/10/Making-Sense-of-the-DXY.html
1•dm13450•44m ago•0 comments

There is a lot AI on HN nowadays

https://lcamtuf.coredump.cx/blog/hn-ai/
1•nazgu1•46m ago•1 comments

ReqIf OPA SARIF – CI/CD semantically evaluated policy gates

https://github.com/PromptExecution/reqif-opa-mcp
1•elasticventures•49m ago•0 comments

Faster Bundler

https://railsatscale.com/2026-03-09-faster-bundler/
1•thunderbong•49m ago•0 comments

Super Logout

https://superlogout.com/
1•sadeshmukh•51m ago•1 comments
Open in hackernews

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

https://github.com/stanNthe5/typescript-autoawait
7•theThree•10mo 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/