frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

You will not be a member of the permanent underclass

https://thingofthings.substack.com/p/you-will-not-be-a-member-of-the-permanent
1•paulpauper•2m ago•0 comments

Why reviewing AI-generated code is devilishly hard

https://www.spinellis.gr/blog/20260523/
1•DSpinellis•7m ago•0 comments

The Forgotten Art of the LAN Party (2023)

https://www.superjumpmagazine.com/the-forgotten-art-of-the-lan-party/
1•susam•9m ago•0 comments

Italian authorities shut down major streaming piracy network

https://www.engadget.com/2180075/italian-authorities-shut-down-major-streaming-piracy-network-cin...
3•01-_-•13m ago•0 comments

ANCI: The Agent Infrastructure for Scheduling

https://meetanci.com
1•rajl•14m ago•0 comments

What's in a Codebase?

https://www.moderndescartes.com/essays/codebase_spec/
2•brilee•14m ago•0 comments

Elon, stop trying to make Grok happen

https://www.theverge.com/ai-artificial-intelligence/936219/elon-stop-trying-to-make-grok-happen
4•01-_-•15m ago•1 comments

Verytis – shared error memory for AI coding agents (MCP)

https://www.verytis.com
1•TychiqueY•15m ago•0 comments

Show HN: A satirical idle game about running an AI startup

https://game.trae.academy/
2•haebom•15m ago•0 comments

Show HN: Running BitNet b1.58 inside DRAM by breaking DDR4 timing rules

1•pcdeni•16m ago•0 comments

A Mysterious Children's Search Engine Is Misleading Kids

https://www.city-journal.org/article/kiddle-search-engine-kids
2•bushwart•18m ago•0 comments

NeuralNote

https://github.com/DamRsn/NeuralNote
1•hyperific•19m ago•0 comments

Kanban board web app powered by the Redmine API

https://ricardoborges.github.io/RedKanban/
1•r2ob•19m ago•0 comments

Diátaxis: A systematic approach to technical documentation authoring

https://diataxis.fr/
2•ZeroCool2u•21m ago•0 comments

The Banal Horror of Jimmy Fallon

https://www.currentaffairs.org/news/the-banal-horror-of-jimmy-fallon
3•ZeroCool2u•23m ago•2 comments

User Story

https://beyondloom.com/blog/userstory.html
1•tosh•23m ago•0 comments

It's time to talk about my writerdeck

https://veronicaexplains.net/my-first-writerdeck/
2•hggh•25m ago•0 comments

SafeDB MCP – safer read-only database access for AI agents

https://github.com/narekmalk/safedb-mcp
1•Narek88•25m ago•0 comments

D. Murray: I see dangers of AI firsthand – as people make doppelgangers of me

https://nypost.com/2026/05/21/opinion/douglas-murray-i-see-dangers-of-ai-firsthand-as-people-make...
1•bushwart•26m ago•0 comments

CC-Wiki: Turn Claude Code sessions into a shareable knowledge base wiki

https://github.com/tejpalv/cc-wiki
1•tejpalv•27m ago•1 comments

Tesla's Newest Electric Vehicle Could Jolt the Trucking Industry

https://www.nytimes.com/2026/05/19/business/energy-environment/teslas-semi-truck.html
2•bookofjoe•32m ago•2 comments

Show HN: pack-src – pack source code into clean shareable ZIP

https://github.com/muhammadmuzzammil1998/pack-src
1•muzzammildotxyz•34m ago•0 comments

AI Is Being Used to Resurrect the Voices of Dead Pilots

https://techcrunch.com/2026/05/22/ai-is-being-used-to-resurrect-the-voices-of-dead-pilots/
2•Brajeshwar•35m ago•0 comments

Bespoke AI Curriculum to Become AI Operator

https://aios.perabytelabs.com
1•ubp•35m ago•1 comments

Tick Architecture

https://kx.com/blog/tick-architecture-simplicity-and-speed-the-kdb-way/
2•tosh•37m ago•0 comments

There's No Reason to Fear an Invasion of Chinese Electric Vehicles

https://spectator.org/theres-no-reason-to-fear-an-invasion-of-chinese-electric-vehicles/
1•bushwart•37m ago•2 comments

OpenSessions – real time agent tracking in tmux using hooks and process trees

https://github.com/Ataraxy-Labs/opensessions
1•rohanucla•37m ago•1 comments

Anthropic's coordinated vulnerability disclosure dashboard

https://red.anthropic.com/2026/cvd/
2•Levitating•39m ago•0 comments

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

https://dirac.run/posts/cache-hit-rates-agents
1•GodelNumbering•39m ago•0 comments

Tank leaking toxic chemicals in Orange County will spill or explode

https://abc7.com/live-updates/garden-grove-chemical-tank-emergency-leaking-toxic-chemicals-orange...
10•panda88888•44m ago•2 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/