frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Create lottie animations using your coding agent

https://github.com/diffusionstudio/lottie
1•Shhdwi•2m ago•0 comments

A Demo of Charles Babbage's Difference Engine [video]

https://www.youtube.com/watch?v=BlbQsKpq3Ak
1•Bluestein•3m ago•0 comments

The Open Weight Revolution with Simon Willison (Oxide and Friends)

https://oxide-and-friends.transistor.fm/episodes/the-open-weight-revolution-with-simon-willison
1•tosh•4m ago•0 comments

Knowledge graphs using Ollama and Embeddings to answer and visualizing queries

https://github.com/punnerud/Local_Knowledge_Graph
1•punnerud•6m ago•0 comments

Anthropic's Watermarking, How It (Probably) Works, Worse Than It Seems

https://stratechery.com/2026/anthropics-watermarking-how-it-probably-works-worse-than-it-seems/
2•swolpers•8m ago•0 comments

Chord Writer IDE – A new interactive fiction platform

https://sharpee.net/chord-writer
1•ChicagoDave•10m ago•0 comments

How to turn off (or on) sounds from Visual Studio Code?

https://stackoverflow.com/questions/54173462/how-to-turn-off-or-on-sounds-from-visual-studio-code
1•thunderbong•11m ago•0 comments

An author-impersonation warning about BookReach Collective

https://thesmh.com.au/blog/bookreach-collective-warning/
1•joshuawithers•12m ago•0 comments

The Missing Public-Policy Ecosystem Behind Expensive AI Tokens

https://zrainbow.substack.com/p/the-missing-public-policy-ecosystem
1•ZRainbow•13m ago•0 comments

Show HN: Woxi - Open-source Mathematica / Wolfram Language reimplementation

https://woxi.ad-si.com
6•adius•15m ago•0 comments

My favourite books to help you survive grief

https://bookdna.com/best-books/helping-you-survive-grief
2•bwb•17m ago•0 comments

Tim Gowers: What sort of maths are LLMs good at?

https://gowers.wordpress.com/2026/08/12/what-sort-of-maths-are-llms-good-at/
11•ColinWright•17m ago•0 comments

My favorite nonfiction animal books that make you go holy shit

https://bookdna.com/best-books/nonfiction-animal-books-that-make-you-go-holy-sht
2•bwb•18m ago•0 comments

I don't want Google poking around but I do want NotebookLM – what can I do?

https://ottophd.wordpress.com/2025/08/12/gather-your-zotero-files-into-one-corpus-a-use-case-with...
2•realsarm•19m ago•0 comments

Use-media-stream 2.0.0 – React hook for getUserMedia that cleans up after itself

https://kothariji.github.io/use-media-stream/
1•kothariji•23m ago•0 comments

GrokImage – AI Visual Generator Integrating Grok, Gemini and Nano Banana

https://grokimage.ai/
1•RustyArmor•23m ago•0 comments

TriageBox – quick Gmail checker, sorting and AI summaries

https://triagebox.pfa87.cc/
1•moctey•23m ago•0 comments

The Road to MS-DOS 2.0

https://nemanjatrifunovic.substack.com/p/the-road-to-ms-dos-2
1•whobre•24m ago•0 comments

Cost-per-success, not cost-per-call: the LLM routing number nobody measures

https://nitishagar.medium.com/the-cheap-model-that-tripled-your-bill-06c5c796fa25
2•nitishagar•24m ago•0 comments

Avoiding Digital Productivity Traps

https://calnewport.com/avoiding-digital-productivity-traps/
3•Tomte•24m ago•0 comments

Has anyone built a way to measure attention during meetings?

1•CatalystPz•24m ago•0 comments

Why 'open' AI systems are closed, and why this matters (2024)

https://www.nature.com/articles/s41586-024-08141-1
1•soupspaces•28m ago•0 comments

All Your Projects Are Now Brownfield

https://psyonik.tech/posts/youre-a-glorified-cleanup-crew/
1•pSYoniK•30m ago•0 comments

Show HN: Salary raise calculator with tax and inflation estimates

https://salaryincreasecalculator.app/
1•Tim999•30m ago•0 comments

Evaluate the profanity used working with Codex and Claude Code

https://github.com/marcelpetrick/AgenticSwearJar
2•marcelpetrick•33m ago•1 comments

Mainline Closed Beta: Open-source, science-based chess training

https://github.com/kleinebossie/Mainline
1•joebos•37m ago•1 comments

First Binary Distribution of the OpenSSL Library: Windows Installer Test Release

https://github.com/openssl/openssl/discussions/32317
1•theandrewbailey•40m ago•0 comments

"I used Fable 5 to bring Command and Conquer: Red Alert 2 to iPhone and iPad"

https://xcancel.com/antibot/captcha
1•doener•43m ago•0 comments

Electric Is Joining Databricks

https://electric.ax/blog/2026/08/11/electric-joining-databricks
1•chaychoong•43m ago•0 comments

An Advanced Attacker Is Targeting Salesforce and ServiceNow

https://www.reco.ai/blog/city-forum-campaign-salesforce-servicenow
2•daretograsp•44m 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/