frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Hookpost – Open-source social media scheduler with AI Agent copilot

https://github.com/jatinder14/hookpost
1•jrgupta•3m ago•0 comments

Shrink a Market (2006)

https://web.archive.org/web/20120212201947/http://redeye.firstround.com/2006/04/shrink_a_market.html
1•tosh•4m ago•0 comments

Show HN: Cryptographic logging for agents from action capture to audit reports

https://github.com/Providex-AI/rootsign
1•oabolade•5m ago•0 comments

From a Drive Away to a Walk Away: Best U.S. Cities to Live in Without a Car

https://www.coworkingcafe.com/blog/best-u-s-cities-to-live-in-without-a-car/
1•vanclaude•10m ago•0 comments

Show HN: Open-source automation for breaking up monolithic Terraform states

https://github.com/schrieksoft/demonolith
1•karlschriek•11m ago•0 comments

Show HN: OutbidLaunch – Open-Source Pay-to-Rank Leaderboard with 3D Live Globe

https://github.com/fastlaunch/outbidlaunch
1•respectattentio•11m ago•1 comments

Sloc Cloc and Code 4.0 (scc) – Finding the files that need the most attention

https://boyter.org/posts/sloc-cloc-code-hotspots-finding-files-that-need-attention/
1•boyter•17m ago•0 comments

Show HN: LongRuay – Live Like a Millionaire for 30 Days

https://longruay.com
1•QingWu•17m ago•0 comments

Investors "should be on alert" as US financial risks mount, says market expert [video]

https://www.youtube.com/watch?v=bi95w_V4bGU
3•thelastgallon•18m ago•0 comments

Anthropic Claude and API service outages

https://status.claude.com/uptime
9•vikrantrathore•20m ago•1 comments

Show HN: Brkpt-auth – NestJS authentication as source you own

https://brkpt.com/auth/
1•ilhasol•21m ago•0 comments

A 2026 Survey of Rust GUI Libraries

https://blog.wybxc.cc/blog/rust-gui-survey-2026/
1•rcarmo•21m ago•0 comments

FDA clears blood test to aid evaluation for Alzheimer's disease

https://medicine.washu.edu/news/fda-clears-blood-test-to-aid-evaluation-for-alzheimers-disease/
3•dabinat•23m ago•0 comments

Best AI voice cloning in 2026: how to clone your voice

https://nexustrade.io/blog/best-ai-voice-cloning-2026-how-to-clone-your-voice-with-ai-20260824
1•theanonymousone•23m ago•0 comments

Walgit – a Git server that is one binary in front of an object store

https://github.com/tobi/walgit
1•romanhotsiy•23m ago•0 comments

Your Open Source Model Could Have a Hidden Time-Release Backdoor

https://morgin.ai/articles/your-open-source-model-could-have-a-hidden-time-release-backdoor.html
2•llmbababoom•27m ago•0 comments

OCR It – pull text out of un-copyable documents for your LLM

https://github.com/thiagotigaz/ocr-it
4•thiagolima•27m ago•1 comments

The Hubris of Donald Trump

https://www.ms.now/opinion/donald-trump-historical-figure-powerful
4•downbad_•28m ago•1 comments

Signals – Privacy-first analytics. Human vs. bot detection without cookies

https://signals.lyfmail.com
1•LYFMail•30m ago•0 comments

MCP-gate – Ephemeral capability token proxy for LLM tool execution in Go

http://engineeringstepstone.blogspot.com/2026/08/show-hn-mcp-gate-ephemeral-capability.html
1•ananthaprakashb•31m ago•0 comments

Bluetooth Shock Collar Keeps Wearer on Task

https://hackaday.com/2026/08/23/bluetooth-shock-collar-keeps-wearer-on-task/
1•rcarmo•33m ago•0 comments

Adding a directional cost bias to a TSP heuristic reveals better local optima

https://tsp.uncledroid.app
1•Abhijit8086•37m ago•0 comments

FinConv is a free online tool

https://www.finconv.app
1•daisyjin•40m ago•0 comments

Ask HN: Claude Code randomly burning through 10% of the weekly limit?

6•terabytest•42m ago•0 comments

A Walkable ASCII Cyberpunk City in One HTML File [video]

https://www.youtube.com/watch?v=3YtygAx_C6A
1•Imustaskforhelp•43m ago•0 comments

Show HN: Rootle – Browse and search remote source repositories without cloning

https://rootle.dev/
2•tknawara•45m ago•1 comments

Gigabyte RTX 3070 owner finds factory plastic on VRM pads after five years

https://www.tomshardware.com/pc-components/gpus/gigabyte-rtx-3070-owner-discovers-protective-film...
2•sbulaev•45m ago•0 comments

UK energy companies on alert after Iran-linked hackers shut down power facility

https://www.ft.com/content/bae67bb7-ebf8-44fc-8d55-bbfaada47eb7
2•sbulaev•46m ago•0 comments

New Zealand to introduce bill banning social media for children under 16

https://www.reuters.com/world/asia-pacific/new-zealand-introduce-bill-banning-social-media-childr...
2•geox•46m ago•0 comments

Superconducting temperature record set at ordinary pressures

https://www.anl.gov/article/superconducting-temperature-record-set-at-ordinary-pressures
2•WithinReason•46m 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/