frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Silicon Valley 'sex assault list' with 'over 100' names circulated

https://nypost.com/2026/09/24/tech/silicon-valley-sex-assault-list-with-over-100-names-circulated...
1•Anon84•25s ago•0 comments

Midden, a JVM heap dump analyser in a single static binary

https://github.com/NullByte3/midden/
1•deboi02•1m ago•1 comments

Reimagining research papers as interactive and reliable AI agents

https://www.nature.com/articles/s41586-026-11044-y
1•JohnHammersley•3m ago•0 comments

I got Opus 5.5 to make a whimsical video ad for my side hustle

https://www.reddit.com/r/ClaudeAI/comments/1wptwrk/got_opus_55_to_build_an_advert_for_my_side_hus...
2•beatthatflight•3m ago•0 comments

Causal questions and the jobs program data

https://stochastic.blog/causal-questions-and-the-jobs-program-data/
1•Anon84•5m ago•0 comments

Platform-Independent SIMD in Go

https://go.dev/blog/simd-experiment
1•yurivish•5m ago•0 comments

The Biggest Risk of AI Wearables Is Not Personal Privacy – It's Human Agency

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=7498938
3•hogwash•6m ago•0 comments

Kilo for JetBrains is now a multi-agent control room

https://blog.kilo.ai/p/kilo-for-jetbrains-a-multi-agent-control-room
1•Aireen5858•6m ago•0 comments

Hardlist: Index of ambitious European hardware startups

https://www.hardli.st/
1•nanna•6m ago•0 comments

Double-entry accounting for compute time

https://sfcompute.com/news/abel-ledger
1•samuelselleck•7m ago•0 comments

Accelerating the Kernel's Build Process

https://lwn.net/Articles/1093398/
1•rbanffy•8m ago•0 comments

Mdash as a Service

https://xn--rtj.tsak.dev
2•tsak•9m ago•1 comments

Meta needs you to believe it cares about privacy

https://www.axios.com/2026/09/25/meta-ai-muse-privacy
2•1vuio0pswjnm7•9m ago•0 comments

A Rock Is Trapped Light [video]

https://www.youtube.com/watch?v=f8O3XMrC8hg
3•binyu•9m ago•0 comments

All be asking more questions

https://www.seangoedecke.com/you-should-all-be-asking-way-more-questions/
1•MaxMussio•10m ago•1 comments

The Hollow Pursuit of Happiness

https://medium.com/@IvyBealtaine/the-hollow-pursuit-of-happiness-0508ee582876
1•szamski•11m ago•1 comments

GPT 6 Astra beat NetHack

https://kenforthewin.github.io/blog/posts/llm-nethack-ascension/
2•enad•12m ago•0 comments

Code Review Says Less

https://openteams.com/best-code-reviews-say-less/
1•johnnybouder•12m ago•0 comments

Git-bug: Distributed, offline-first bug tracker embedded in Git

https://github.com/git-bug/git-bug
3•alentred•14m ago•0 comments

Fueling a Return Journey from Mars – Massachusetts Institute of Technology

https://news.mit.edu/2026/fueling-return-journey-from-mars-lanie-mckinney-0918
1•rbanffy•14m ago•0 comments

Walden. Build Deliberately

https://walden.so/
1•focused_morning•18m ago•0 comments

ZapFast

https://zapfast.rocks/
1•earcar•19m ago•2 comments

Don't Trust the Super-App: A Case Study of Russia's Max

https://arxiv.org/abs/2609.11814
1•sysoleg•22m ago•0 comments

Retries Turn a Short Outage into a Long One

https://blog.dochia.dev/blog/retries/
1•ludovicianul•23m ago•0 comments

Show HN: Herobrine – Minecraft buddies using jev

https://github.com/xatuke/herobrine
2•satuke•26m ago•0 comments

How to Create WebRTC Publisher Clients with Adaptive Live Encoding

https://www.red5.net/blog/how-to-create-webrtc-publisher-clients-with-adaptive-live-encoding/
2•mondainx•26m ago•0 comments

Reverse Engineering a Pellet Stove Remote with Codex

https://itunsecurity.wordpress.com/2026/09/25/mcz-musa-2-0-air-an-esphome-remote-for-home-assistant/
1•dud3333•27m ago•1 comments

A simple, modern, secure encryption tool (and Go library) small explicit keys

https://github.com/FiloSottile/age
2•Bluestein•29m ago•0 comments

A prototype ribbon menu for QGIS

https://github.com/qgis/QGIS/issues/52292
2•marklit•30m ago•0 comments

Show HN: Skipper, a YouTube sponsor skipper using Ask Gemini and SponsorBlock

https://chromewebstore.google.com/detail/skipper-ai-—-youtube-spon/ncchpipphiigdfbpbjofbhbahcgc...
2•jagdishpal0•31m 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/