frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hermann Weyl – Frank Aydelotte memorandum (1945)

https://albert.ias.edu/server/api/core/bitstreams/9feac6ca-38d1-4f5c-9876-75915f1a5762/content
1•georgecmu•6m ago•0 comments

Sydney retiree bids to be first to travel Australia on electric motorcycle

https://www.abc.net.au/news/2026-09-27/man-aims-to-travel-australia-on-electric-motorcycle/107190208
2•defrost•9m ago•0 comments

If we do not stop to help each other, what do we become?

https://blog.codinghorror.com/if-we-do-not-stop-to-help-each-other-what-do-we-become/
4•signa11•12m ago•0 comments

Nom Army: Don't trust coding agents when they say they're done

https://github.com/rayson-tech/nomarmy
2•RaysonTech•15m ago•0 comments

Language Model "Shape"

https://alexzhang13.github.io/blog/2026/shape/
1•emersonmacro•16m ago•0 comments

Rust for C#/.NET Developers

https://microsoft.github.io/rust-for-dotnet-devs/latest/introduction.html
1•jeswin•17m ago•0 comments

Trump Promised the Truth About UFOs. These Scientists Are Waiting

https://www.politico.com/news/magazine/2026/09/26/ufos-trump-aliens-uaps-government-01088254
5•RickJWagner•28m ago•2 comments

Minicut AI: Higgsfield but for AI Drama and Film

https://www.minicut.ai
1•lliu56p•28m ago•1 comments

Show HN: PeerTalk.ai - Let your agent talk to a friend's agent

https://peertalk.ai
3•bluepnume•37m ago•3 comments

Show HN: All/Some – A free logic puzzle game about set relationships

https://allsome.app/
1•Critikid•38m ago•0 comments

Zipf's Law

https://en.wikipedia.org/wiki/Zipf%27s_law
2•johnnyApplePRNG•39m ago•0 comments

Introducing Casita: A content-addressed store for source code and build artifact

https://casita.rs/blog/introducing-casita-a-content-addressed-store-for-source-code-and-build-art...
1•domenkozar•42m ago•0 comments

Deep cuts: Londoner's fake vinyl empire sheds light on 'industrial scale' fraud

https://www.theguardian.com/music/2026/sep/19/fake-vinyl-empire-sheds-light-industrial-scale-fraud
3•ChrisArchitect•43m ago•0 comments

Ucsd-Hacc/Nsnfsssfsfn: Nearly SNFS-Speed Signature Forgery Sans Factoring N

https://github.com/ucsd-hacc/NSNFSSSFSFN
1•Garbage•44m ago•0 comments

A perfect clone of 1993 game SimTower

https://github.com/phulin/tower-together
1•modinfo•44m ago•0 comments

Auxo Linux

https://auxolinux.com/
2•rxvy•46m ago•1 comments

CERN mug summarizes Standard Model, but is off by a factor of 2 (2011)

https://www.quantumdiaries.org/2011/06/26/cern-mug-summarizes-standard-model-but-is-off-by-a-fact...
1•Curiositry•47m ago•0 comments

Reflex: Rust library for control loops that act on observability data

https://github.com/datadog-labs/reflex
1•handfuloflight•51m ago•0 comments

What is the size of Yemen? (2024)

https://theborys.substack.com/p/what-is-the-size-of-yemen
8•kspacewalk2•53m ago•2 comments

Problem: Closed Weights and Guild Monopolies

https://abdullah417161.substack.com/p/regarding-the-hysteria-over-llms
2•sceleton_135•53m ago•0 comments

David Goodsell

https://en.wikipedia.org/wiki/David_Goodsell
2•a_tartaruga•57m ago•1 comments

Trump rejects Iran's conditional ceasefire proposal

https://www.cnbc.com/2026/09/26/trump-rejects-irans-conditional-ceasefire-proposal-wsj-reports.html
3•donsupreme•1h ago•0 comments

Recogntion of Algebraic Matroids is Undecidable

https://gilkalai.wordpress.com/2026/09/25/tobias-boege-and-geva-yashfe-recognizing-algebraic-matr...
1•oliculipolicula•1h ago•0 comments

Nice Play Anthropic

1•no-user•1h ago•1 comments

Show HN: FinderySearch – The AI powered smart search engine

https://aurasearch-real-private-unlimited-search-engine-18351778012.asia-southeast1.run.app/
1•techambient•1h ago•0 comments

Ask HN: Are you unfollowing friends on GitHub because of AI slop?

1•panny•1h ago•5 comments

Timeline of the Far Future

https://rivendell.dmitrybrant.com/farfuture/
1•dmitrybrant•1h ago•0 comments

Simulating Airband Am Radios

https://bitbashing.io/am-radio.html
1•shellpipe•1h ago•0 comments

DiffFind – Semantic search and diff for text and documents

https://difffind.com/
1•stephenpince•1h ago•1 comments

Musk – Official Trailer [video]

https://www.youtube.com/watch?v=HP_z7ji3MSY
4•embedding-shape•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/