frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Copyrightability of LLM-generated code: Can we license "vibe code" into Free SW

https://fsfe.org/news/2026/news-20260825-01.html
1•Tomte•1m ago•0 comments

I spent a day at a robot "carnival" in Shanghai. Here's what I saw

https://www.technologyreview.com/2026/08/25/1141907/dispatch-shanghai-humanoid-robot-carnival/
1•joozio•2m ago•1 comments

You Don't Know Why Internet Cookies Are Called Cookies [video]

https://www.youtube.com/watch?v=moGFmrVK3AU
1•edward28•2m ago•0 comments

Every visual workflow tool becomes spaghetti. Here's what I built instead

https://medium.com/@mohamedalibenothmen1/every-visual-workflow-tool-becomes-spaghetti-heres-what-...
1•dalibenothmen•3m ago•0 comments

Junie Can Now Run on Your Mac – No Credits, No Cloud

https://blog.jetbrains.com/junie/2026/08/junie-local-launch/
1•taubek•3m ago•0 comments

I Tried Bringing Back the Million Dollar Homepage, but with HTML Pages

https://1dollarhtml.vercel.app
1•hito20•3m ago•0 comments

Scientists' cars were burned at the proposed Einstein Telescope Sardinian site

https://www.science.org/content/article/arson-attack-jolts-italy-s-bid-host-einstein-telescope
1•g6pdh•3m ago•0 comments

What Lies Beneath You?

https://earthview.sunny.gg/
1•thunderbong•5m ago•0 comments

Show HN: Voicecard – a CLI that resolves contradictions in rambling voice notes

https://github.com/kenzotp/voicecard
1•zuuna•7m ago•1 comments

The language around language models

https://dilpreet.co/blog/2026/8/25/the-language-around-language-models
1•argilium•7m ago•0 comments

Show HN: Vejas – an integration platform with no builder UI; agents write flows

https://github.com/cpoder/vejas
1•cpo75•8m ago•0 comments

Self-Host Software Factory

https://github.com/vercel-labs/eve-software-factory-template
1•flashbrew•9m ago•0 comments

Using Kernel in Eve

https://twitter.com/BenSabic/status/2092203462998340093
1•flashbrew•10m ago•0 comments

Diving Deeper on Nvidia's Vera CPU: New Architectural Details and Benchmarks

https://www.servethehome.com/diving-deeper-on-nvidias-vera-cpu-new-architectural-details-and-spec...
1•rbanffy•11m ago•0 comments

Show HN: Seedeep – I couldn't see what Claude Code was doing, so I drew it

https://github.com/duqaXxX/seedeep
1•duqaxxx•12m ago•1 comments

Comedy Was Destroyed by an Anti-Reality Doomsday Cult [video]

https://www.youtube.com/watch?v=ewvRS3NwIlQ
1•noahra•15m ago•0 comments

AI Makes Better Software

https://www.hmans.dev/blog/ai-makes-better-software
4•czottmann•16m ago•1 comments

Why Your Boss Wants to Make Sure AI Can Read Your Slack Messages

https://www.wsj.com/tech/ai/why-your-boss-wants-to-make-sure-ai-can-read-your-slack-messages-b6c1...
1•cebert•16m ago•1 comments

Cortex – Local context retrieval for AI coding agents

https://github.com/DanielBlomma/cortex
1•dannepanne•18m ago•0 comments

Don't Screw the Crew

https://henryaj.substack.com/p/dont-screw-the-crew
1•devanian•21m ago•0 comments

Contributing to Open-Source in 2026

https://am17an.bearblog.dev/contributing-to-open-source-software-in-2026/
1•am17an•22m ago•0 comments

Show HN: Dotenv-Diff v3.4.0

https://github.com/Chrilleweb/dotenv-diff
1•chrillemn•23m ago•0 comments

Show HN: Mess Arts

https://messarts.org/
3•not_wowinter14•25m ago•0 comments

200B Tokens Later: A Month of Letting AI Agents Decompile MW2

https://momo5502.com/posts/2026-08-17-mw2-decompilation/
1•Gander5739•26m ago•0 comments

NIP-05 maps Nostr public keys to human-readable internet identifiers

https://nostrcompass.org/en/topics/nip-05/
1•Bluestein•27m ago•0 comments

The Prenatal Sex Steroid Theory of Autism – 2026 Jephcott Lecture [video]

https://www.youtube.com/watch?v=Zpd2r6ktO1Y
1•meindnoch•28m ago•0 comments

Nemotron 3.5 Lightning-Omni: I gave NVIDIA's agent model eyes and ears

https://huggingface.co/engram-ae/Nemotron-3.5-Lightning-Omni-30B-A3B-GGUF
1•vkaufmann•28m ago•0 comments

Trump Threatens to Raise Tariffs on Canadian Automobiles to 50%

https://moztako.me/trump-tariffs-on-canadian-automobiles/
1•Cacara•28m ago•0 comments

Quantum battery upends the rules of charging

https://www.bbc.com/future/article/20260824-this-quantum-battery-charges-faster-the-larger-it-gets
3•reconnecting•30m ago•0 comments

What Is a SQL Database Schema and How Do You Design One?

https://visualeaf.com/blog/what-is-a-sql-database-schema-and-how-do-you-design-one/
2•kyle_mongo•30m 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/