frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Build Agents, Not Pipelines

https://www.seangoedecke.com/build-agents-not-pipelines/
1•alexsanjoseph•11s ago•0 comments

An Interview with 100 Rabbits

https://sourcehut.org/blog/2021-12-08-100-rabbits-interview/
1•jruohonen•1m ago•0 comments

A New Design for Pretty Printer Implementations in Rust

https://blog.wybxc.cc/blog/pretty-printer-pye/
1•g0xA52A2A•2m ago•0 comments

Palo Alto GlobalProtect VPN auth bypass flaw now exploited in attacks

https://www.bleepingcomputer.com/news/security/palo-alto-globalprotect-vpn-auth-bypass-flaw-now-e...
1•throwa356262•3m ago•0 comments

AI Dark Output: The Visible Cost of Invisible Output

https://newsletter.semianalysis.com/p/ai-dark-output-the-visible-cost-of
1•qnleigh•3m ago•1 comments

Stop Micromanaging Your Agents

https://adlrocha.substack.com/p/adlrocha-stop-micromanaging-your
1•adlrocha•4m ago•0 comments

Multicore suppport for DOS is real – partly

https://www.vogons.org/viewtopic.php?t=111336
1•beebix•17m ago•0 comments

AI slop is hard to fork

https://00f.net/2026/05/31/ai-slop-is-hard-to-fork/
1•jedisct1•18m ago•0 comments

Your Electronics Depend on Dying Sensors. The Silicon Labs Incident Proves It

https://www.cambridge.org/engage/coe/article-details/6a054b304770e67d92e8c7a2
1•openrockets•20m ago•0 comments

Looking for paid reviewer of custom Sealed Sender construction

https://github.com/pontusva/spectre
1•nullsender•21m ago•0 comments

Untraceable Digital Cash, Information Markets, and BlackNet (1997)

https://osaka.law.miami.edu/froomkin/articles/tcmay.htm
1•greyface-•25m ago•1 comments

GOMS

https://en.wikipedia.org/wiki/GOMS
1•ustad•29m ago•0 comments

Pkl from Apple: configuration as code language with rich validation and tooling

https://github.com/apple/pkl
1•appwiz•32m ago•0 comments

ICE Authorized to Detain People Suspected of Emigration from Alternate Realities

https://medium.com/luminasticity/ice-authorized-to-detain-people-suspected-of-immigrating-from-al...
2•bryanrasmussen•45m ago•0 comments

QuantaTrader Demo – Ferramenta de análise e simulaçãO de trading

https://quantatrader-demo.streamlit.app/
1•gilthor•49m ago•0 comments

Enhancing Multi-Agent Communication Through Attention Steering

https://arxiv.org/abs/2605.30136
3•ankitg12•54m ago•0 comments

Open Letter to Steve Lemay

https://ilyabirman.net/meanwhile/all/dear-steve-lemay/
5•smagin•55m ago•0 comments

Memory as Action: Autonomous Context Curation for Long-Horizon Agentic Tasks

https://arxiv.org/abs/2510.12635
2•ankitg12•56m ago•0 comments

Five days in darkness left scientist Kiana Aran thinking about anything

https://www.abc.net.au/news/2026-05-31/darkness-retreat-sensory-deprivation-cave-kiana-aran/10668...
5•Towaway69•58m ago•1 comments

Show HN: AnyFrame, Platform for every agent your team builds

https://anyframe.dev
3•inishchith•1h ago•0 comments

How does a Mikrokator work?(2022) [video]

https://www.youtube.com/watch?v=2zEeAzJq-CQ
2•pillars•1h ago•0 comments

UC Berkeley Law blanket AI ban since summer 2026

https://www.law.berkeley.edu/academics/registrar/academic-rules/artificial-intelligence-policy/
4•xyzal•1h ago•0 comments

London's Free Roof Terraces

https://diamondgeezer.blogspot.com/2026/05/londons-free-roof-terraces.html
4•zeristor•1h ago•0 comments

All useful document at my company is now AI generated

https://www.reddit.com/r/developersIndia/s/56LVBJKthJ
2•justforreading•1h ago•0 comments

Made a Tool to Streams Changes from Microsoft SQL Server to Apache Kafka

https://github.com/Niyko/Athena
3•hyvr_official•1h ago•1 comments

Reading The Motley Fool never made anyone rich

https://www.researchtesseract.com/blog/reading-the-motley-fool-never-made-anyone-rich
2•BenetBani•1h ago•0 comments

Cache hit rates of Inference are more meaningful than the headline costs

https://dirac.run/posts/cache-hit-rates-agents
3•mellosouls•1h ago•1 comments

How thread locals work on macOS

https://yuraiz.github.io/dyld/
2•yuraiz•1h ago•0 comments

The Website Specification

https://specification.website/
73•k1m•1h ago•20 comments

Video shows an evolved bird nest design that leaves snakes with almost no way in

https://www.yahoo.com/lifestyle/articles/viral-video-shows-tiny-birds-212000935.html
3•gurjeet•1h 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/