frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Self-hosting your own agent infrastrcuture (centaur)

https://www.youtube.com/watch?v=993XrWfg34U
1•bradwmorris•2m ago•1 comments

Countries 15x10 Pixel Flags

https://github.com/igor-couto/pixel-flags
1•lionello•5m ago•0 comments

A Vacuum Diode for Make: Magazine

https://www.nickpoole.me/2023/12/10/a-vacuum-diode-for-make-magazine/
1•luu•5m ago•0 comments

A Stealth Startup Thinks It Just Hacked the Memory Shortage

https://www.wired.com/story/a-new-dollar400-million-startup-wants-to-fix-the-ai-memory-bottleneck/
1•littlexsparkee•6m ago•0 comments

Show HN: Temporal Parser – A compiler-style parser for date/time strings

https://lxcid.com/tools/temporal-playground/
1•johnxie•7m ago•1 comments

A 'swarm' of AI agents hacked Hugging Face, in the AI's own words

https://www.abc.net.au/news/2026-09-11/how-openai-agents-hacked-hugging-face-messages-revealed/10...
1•grahameb•9m ago•0 comments

Show HN: Reviving my $15,000 browser arcade with Astra

https://eggverse.co/
1•Waseemkhalo•19m ago•0 comments

Show HN: Socks Proxy for AI Agents

https://x402socks.com/
1•rnts08•19m ago•0 comments

Anthropic details how Claude was misused for surveillance and weapons

https://thenextweb.com/news/anthropic-claude-misuse-threat-intelligence-report
3•delichon•21m ago•0 comments

Turn Your Data into a Video

https://www.racecharts.io/
1•ijidak•21m ago•0 comments

INDUS-SDE: A Language Model for Scientific Content Curation and Discovery

https://science.data.nasa.gov/blog/indus-sde-language-model
1•sudobear•22m ago•1 comments

Steam's Programming Fest

https://store.steampowered.com/category/programming
3•embedding-shape•24m ago•0 comments

Portal 2 Beta Decompilation

https://github.com/apersonwhomakesstuff/Portal-2-Beta-Decompilation/tree/main
2•apersonwhomakes•27m ago•2 comments

Chick-Fil-A Sauce Flavored Waffle Potato Chips

https://www.chick-fil-a.com/menu/sides/chick-fil-a-sauce-flavored-waffle-potato-chips
1•SpyCoder77•28m ago•0 comments

ASCII arcade: 3D engine for the terminal

https://ascii-arcade.dev
1•cramforce•28m ago•1 comments

A Decent GPU for FreeBSD and OpenBSD (2023)

https://medium.com/@martin.baulig/a-decent-gpu-for-freebsd-and-openbsd-ee82e6ff219a
1•turtleyacht•28m ago•0 comments

Generative AI Using Linuxulator and eGPU on FreeBSD

https://www.tumfatig.net/2026/generative-ai-using-linuxulator-and-egpu-on-freebsd/
1•turtleyacht•29m ago•0 comments

Sean Carroll explains the biggest ideas in the universe – Full Interview [video]

https://www.youtube.com/watch?v=_TBNJyztai0
4•binyu•30m ago•0 comments

A $537 Local LLM Machine (2025)

https://blog.lewman.com/a-537-local-llm-machine.html
3•turtleyacht•30m ago•0 comments

Synapse – Daily Word Game

https://synapse.akshayr.xyz/
1•barbierocks•31m ago•1 comments

Russia trafficking foreigners to fight in Ukraine, Amnesty says

https://www.courthousenews.com/russia-trafficking-foreigners-to-fight-in-ukraine-amnesty-says/
3•MilnerRoute•33m ago•0 comments

The Confused Engineer

https://thebsq.com/the-confused-engineer/
3•ahofma•34m ago•1 comments

M. Williams, OpenAI: Human extinction in the next few years seems likely

https://xcancel.com/antibot/captcha
5•doener•35m ago•1 comments

Show HN: PRBar see your open GitHub PR count in macOS menu bar

https://github.com/sburl/prBar
1•sburl•36m ago•1 comments

The Chasm: The Shape of Unfinished AI Codebases

https://jimmyhmiller.com/shape-of-unfinished-ai-codebases
1•gmays•37m ago•0 comments

AI researchers leave Anthropic and Google: 'There are no adults in the room'

https://www.nbcnews.com/tech/security/two-ai-researchers-leave-anthropic-google-safety-concerns-r...
7•doener•38m ago•0 comments

Stop externalizing the cost of your AI use to me

https://thelastsoftwareengineer.substack.com/p/stop-externalizing-the-cost-of-your
9•azhenley•40m ago•0 comments

AI Is Not Going to Kill My Love of Math

https://chillphysicsenjoyer.substack.com/p/ai-is-not-going-to-kill-my-love-of
5•crescit_eundo•42m ago•1 comments

NATO allies foil Russian subsea cable sabotage plot

https://www.reuters.com/world/europe/nato-allies-foil-russian-subsea-cable-sabotage-plot-2026-09-10/
2•doener•45m ago•0 comments

Xapien raises $56M Series B for AI background checks and due diligence

https://axios.com/pro/all-deals/2026/09/10/due-diligence-ai-xapien-56-million
1•utiiiD•46m 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/