frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

High time for relational databases to start thinking?

https://deepsql.ai/blog/high-time-for-relational-databases-to-start-thinking
1•venkat971•23s ago•0 comments

Denzel explains why he uses AI

https://old.reddit.com/r/StableDiffusion/comments/1w97ssh/denzel_explains_why_he_uses_ai/
1•b0ner_t0ner•1m ago•0 comments

The 92-Year-Old Mathematician and the Teenage Apprentice

https://www.nytimes.com/2026/09/06/science/92-year-old-mathematician-apprentice.html
1•gumby•3m ago•0 comments

Americans Without College Degrees Are Having the Best Job Markets in Years

https://www.wsj.com/lifestyle/careers/americans-without-college-degrees-are-having-one-of-the-bes...
1•fortran77•6m ago•1 comments

How work makes families more equal

https://www.economist.com/international/2026/09/03/how-work-makes-families-more-equal
1•Gander5739•6m ago•0 comments

Workflow Engine

1•helmog•6m ago•0 comments

Ante is a self-contained coding agent that lives in your term and self-organizes

https://docs.antigma.ai/
1•Bluestein•8m ago•0 comments

We cut our Grafana Mimir bill (nearly) in half

https://www.sanity.io/engineering/how-we-cut-our-mimir-bill-nearly-in-half
1•kmelve•9m ago•0 comments

Claude Code injects a system reminder to replace attribution guidance

1•_mfk•10m ago•0 comments

Silo – Give agents a local database for project work

https://github.com/silo-ai/silo
1•retropragma•10m ago•0 comments

Astronomers Have Completed the Largest Map of Space. Yes, You Can Play with It

https://www.wired.com/story/astronomers-complete-largest-map-of-space-yes-you-can-play-with-it/
1•Brajeshwar•10m ago•0 comments

Show HN: Copperline 0.1.1 – Multithreaded IRC client written in Go with relay

https://github.com/SeraphinaDX/Copperline
1•QBasicBitch•12m ago•0 comments

Remmina

https://en.wikipedia.org/wiki/Remmina
1•vismit2000•12m ago•0 comments

Understanding Model-View-Controller (2008)

https://blog.codinghorror.com/understanding-model-view-controller/
2•mpweiher•13m ago•0 comments

Is OpenAI silently routing GPT‑6 requests to GPT‑4o?

2•skaiuijing•15m ago•1 comments

Miosix: Fluid kernels and optimizing C++ for MCUs

https://hackaday.com/2026/09/03/hackaday-europe-2026-fluid-kernels-and-optimizing-c-for-mcus/
1•tzmlab•15m ago•0 comments

React Surgeon – click a React bug, get a fix verified in a real browser

https://github.com/waleedmustafa971/React-surgeon
2•waleed249•18m ago•0 comments

Google's Gemini Spark can now manage your Google Photos library

https://techcrunch.com/2026/09/04/googles-gemini-spark-can-now-manage-your-google-photos-library/
2•deepmem•18m ago•0 comments

Microsoft Tgrep: Trigram-indexed grep

https://github.com/microsoft/tgrep
1•porridgeraisin•20m ago•0 comments

StatixAgent – Linux Monitoring via Telegram

https://github.com/eliau2005/statixagent
1•eliauelkouby•22m ago•0 comments

Marine heatwaves a growing threat to physical, mental health of humans: Research

https://health.economictimes.indiatimes.com/news/industry/marine-heatwaves-a-growing-threat-to-ph...
2•noobplus•22m ago•0 comments

Atari GEM for Linux: a classic graphical desktop with windows, plus 68k emulator

https://github.com/triglav-os/gem
2•lproven•22m ago•0 comments

Show HN: DashClaw – policy and approval layer for unattended coding agents

https://github.com/ucsandman/DashClaw
1•practicalsystem•26m ago•0 comments

Show HN: QMD: Quick Markdown

https://github.com/ajithraghavan/qmd
1•aj1thkr1sh•27m ago•0 comments

bzip3

https://github.com/iczelia/bzip3
11•tosh•29m ago•0 comments

The Holophase as Ontic Substrate - the Structured Derivative Atlas

https://philpapers.org/rec/SEDPTL
1•Bluestein•30m ago•0 comments

Grice's Maxims

https://www.sas.upenn.edu/~haroldfs/dravling/grice.html
1•Eridanus2•32m ago•0 comments

The Linux Kernel Is Approaching 2,000 CVEs Per Release

https://www.phoronix.com/news/Linux-Kernel-CVEs-Nearly-2000
2•akyuu•33m ago•0 comments

Show HN: Browser-Based Tempest – Transmitting VHF Morse via Monitor EMI Leakage

https://github.com/TA1EEI/vhf-morse-transmitter-monitor
5•TA1EEI•34m ago•0 comments

Industry Standard Tools: de facto tools used in various trades

https://industrystandard.tools/
2•throw0101a•35m 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/