frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Public LLM benchmarks are mostly garbage

https://grandpacad.com/en/blog/public-benchmarks-misled-me-opus-4-7
1•nateb2022•58s ago•0 comments

Show HN: OpenScreenShot: open-source full-page screenshot and annotation tool

https://openscreenshot.app
1•pghqdev•1m ago•0 comments

GitLab on FreeBSD

https://vermaden.wordpress.com/2026/07/09/gitlab-on-freebsd/
1•vermaden•1m ago•0 comments

Decentralized, encrypted (E2EE), censorship-resistant messenger

https://github.com/harpiabrasil/hydra
1•harpia•5m ago•0 comments

Show HN: I built 38-0, a Premier League draft game with a Poisson match engine

https://www.38-0.pro
1•rankinzheng•5m ago•0 comments

Abnormal Response to Anthropic Lawsuit

https://abnormal.ai/blog/abnormal-response-to-anthropic-lawsuit
1•tjek•9m ago•0 comments

StoryScope: Investigating Idiosyncrasies in AI Fiction

https://arxiv.org/abs/2604.03136
1•cratermoon•9m ago•0 comments

The AI factory: the rewiring of India's tech industry [video]

https://www.ft.com/video/5a5733ea-f8fa-488f-906d-418584b8bc36
1•petethomas•9m ago•0 comments

Space Lasers Show How Venezuela's Earthquakes Reshaped the Earth's Crust

https://www.wired.com/story/space-lasers-show-venezuela-earthquakes-reshaped-earth-crust/
1•bookmtn•10m ago•0 comments

Banks, card networks, fintechs partner on 'low-cost' stablecoin

https://www.bankingdive.com/news/stablecoin-open-standard-bridge-abrams-bny-stripe-mastercard-vis...
1•petethomas•11m ago•0 comments

How to Meet Word Count for School Assignments

https://fastwordcount.com/blog/how-to-meet-word-count-for-school-assignments/
2•rajkverma123•15m ago•0 comments

Bull Bitcoin challenges EU's DAC8 crypto surveillance rules in French court

https://thecoinheadlines.com/crypto/bull-bitcoin-challenges-eus-dac8-crypto-surveillance-rules-in...
1•Alan_Writer•18m ago•0 comments

Search engine that donates 51% profits to charity

https://1.org/
1•adityamwagh•20m ago•1 comments

Show HN: Cyrinx (36kbps Acoustic Transport)

https://cyrinx.org/
2•dweekly•20m ago•0 comments

Accessibility in Gnome

https://blogs.gnome.org/sophieh/2026/07/07/accessibility-in-gnome/
2•birdculture•22m ago•1 comments

Felons, Fraudsters Flog Offensive Cybersecurity Startup

https://krebsonsecurity.com/2026/07/felons-fraudsters-flog-offensive-cybersecurity-startup/
1•tortilla•22m ago•0 comments

Ghost – real-time AI that tells you what to say during job interviews

https://ghostinterview.dev
1•ABO_Studios•28m ago•0 comments

Gated Frontier Model = the Fall of Capitalism

https://www.elevair.org/letter
1•campbellhendee•29m ago•0 comments

1 down, 1 to go: Aptera clears first federal hurdle

https://aptera.us/epa-release/
1•TeaVMFan•32m ago•1 comments

Tinfoil Pigeons – see the aircraft overhead

https://tinfoilpigeons.com/
1•gnabgib•38m ago•0 comments

Compiler for LLMs, world models, and AGI

https://arxiv.org/abs/2607.04542
1•OsamaJaber•38m ago•0 comments

Korean law targeting fake news takes effect as journalist groups raise concerns

https://apnews.com/article/south-korea-fake-news-law-press-freedom-7dcc52be82c047f9645218bec2f93966
1•zuzululu•39m ago•0 comments

A software engineering interview question I like: computing the median

https://krisshamloo.com/blog/007
6•speckx•42m ago•1 comments

Remote Attestation

https://www.liamcvw.com/p/remote-attestation
13•lcvw•47m ago•3 comments

A terminal designed for ClaudeCode to replace Claude Desktop

https://velaterm.com/
2•Ellis_dev•47m ago•0 comments

Blockchain Is Inevitable

https://www.raymondcheng.net/posts/blockchain-inevitable/
2•ryscheng•51m ago•1 comments

MIRA: Multiplayer Interactive World Models Trained on Rocket League

https://mira-wm.com/
4•ethanlipson•52m ago•1 comments

Show HN: Tilion – MCP for Claude Code to stop it getting blocked on the web

https://github.com/tiliondev/fortress/tree/main/mcp
5•arhamshahrier•55m ago•0 comments

Find genre of a track with CNN trained on spectrograms

https://findgenre.com/
2•illectronic•57m ago•1 comments

AI bills are baffling the C-suite after shift to usage-based pricing

https://www.theregister.com/ai-and-ml/2026/07/03/ai-bills-are-baffling-the-c-suite-after-shift-to...
4•appreciatorBus•1h 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/