frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

StackOverflow Read-Only

https://stackoverflow.com
1•anticensor•51s ago•1 comments

AI creates 16 new viruses from scratch after training on 9T nucleotides

https://www.tomshardware.com/tech-industry/artificial-intelligence/ai-creates-16-new-viruses-that...
1•sbulaev•2m ago•0 comments

Gen Z Is Drinking Alcohol as Much as Older Generations

https://www.businessinsider.com/gen-z-drinking-alcohol-moderation-sobriety-new-data-2026-7
1•satvikpendem•2m ago•0 comments

Illinois Just Told Every Operating System to Start Reporting Your Kid's Age

https://itsfoss.com/news/illinois-age-verification-bill/
2•WaitWaitWha•5m ago•0 comments

Show HN: Sqnc.run – a live cipher stream inspired by number stations

https://sqnc.run/
1•nee_oo_ru•5m ago•0 comments

UV printer copies 3D objects (Strange Parts) [video]

https://www.youtube.com/watch?v=3DiVHTj_8nA
1•consumer451•5m ago•0 comments

What Happened: OpenAI and HuggingFace

https://thezvi.substack.com/p/what-happened-openai-and-huggingface
1•jgalt212•9m ago•1 comments

New 'Water Watch Center' launched to help small utilities stop cyberattacks

https://www.nextgov.com/cybersecurity/2026/08/new-water-watch-center-launched-help-small-utilitie...
1•WaitWaitWha•14m ago•0 comments

Mossad accicentally injected data to a French lawyer phone instead of extracting

1•0x54MUR41•24m ago•0 comments

Show HN: CIRadar – Self-hosted CI failure diagnosis

https://github.com/Bluezly/CIRadar
1•bluezly•25m ago•0 comments

Provenance

https://en.wikipedia.org/wiki/Provenance
1•soupspaces•26m ago•0 comments

Zig's Io.Threaded Is Neat

https://matklad.github.io/2026/08/06/neat-io-threaded.html
1•Retro_Dev•30m ago•0 comments

Never Gonna Give You Up but the lyrics are in alphabetical order [video]

https://www.youtube.com/watch?v=Svj1bZz2mXw
1•mooreds•33m ago•0 comments

One Cut – Edit Video by Editing Code

https://github.com/smy20011/onecut
1•smy20011•34m ago•0 comments

See the Sun like never before with most detailed images yet

https://www.bbc.com/news/articles/c36d4376nd2o
3•mooreds•35m ago•0 comments

Some software talks I like

https://char.lt/blog/2026/08/talks-i-like/
1•vinhnx•35m ago•0 comments

LA Freeway (Long's to Arapaho Traverse)

https://www.mountainproject.com/route/117783697/la-freeway-longs-to-arapaho-traverse
1•mooreds•36m ago•0 comments

E.U. Nears Approval of Gene-Edited Crops as Olive Sector Eyes Applications

https://www.oliveoiltimes.com/world/e-u-nears-approval-of-gene-edited-crops-as-olive-sector-eyes-...
2•johntfella•38m ago•0 comments

MRMS Renderer – Open-Source NOAA MRMS Radar Renderer for Python

https://github.com/Taylor-Creative-Development/mrms-renderer
1•davidtaylorjr•40m ago•0 comments

Show HN: Qwen3.8-Max – Use Qwen Studio and MCP to Code Locally for Free

https://github.com/tohid4n/qwen3.8-max-local-coding
2•tohid4n•41m ago•0 comments

Retraction: The App Store Rejection of the Week That Was a Correct Rejection

https://daringfireball.net/2026/08/retraction_app_store_rejection_of_the_week
10•minimaxir•43m ago•0 comments

Ms. Tippi Hedren – The Godmother of the Vietnamese Nail Industry

https://vietnamesemuseum.org/details/ms-tippi-hedren/
2•thunderbong•45m ago•0 comments

Alternate Routing Graph

https://agentchannels.org/
1•FelineStateMach•45m ago•0 comments

The Color Recession May Be Permanent

https://www.theatlantic.com/ideas/2026/08/colorless-gray-products-houses/688174/
1•fortran77•46m ago•0 comments

DragonRuby Jam License – Free to All

https://dragonruby.itch.io/dragonruby-gtk/devlog/1620970/dragonruby-jam-license-free-to-all
1•amirrajan•47m ago•0 comments

I asked 4 AI companions what they were. They lied, then texted me the next day

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=7244220
2•Ai_Sycophancy•48m ago•0 comments

Real-time MCP interceptor that blocks .env reads and dangerous commands agents

https://marketnow.site/
2•eddyflores•56m ago•0 comments

Show HN: Pomona, offline small AI reasoners for agricultural sensors

https://github.com/okyanu/pomona
1•okyanu•58m ago•0 comments

Open Discovery Loop

https://opendl.ai/
1•arionhardison•1h ago•0 comments

Doom Running Inside Emacs

https://github.com/minad/doom-on-emacs/tree/3830991bd3d69a9426498ee4a3dc8b55c8eb2eb5
1•signa11•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/