frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

There Is No AI (It's Just People) with Jaron Lanier

https://singjupost.com/startalk-there-is-no-ai-really-its-just-people-w-jaron-lanier-transcript/
2•andsoitis•3m ago•0 comments

Show HN: Exende – 10k active jobs from 300 company sources through one API

https://www.exende.dev
1•daniellax•3m ago•0 comments

Show HN: Kibble – a reader for AI news, tutorials, code and models

https://www.kibblebites.com/app/
1•syedmubarak088•4m ago•0 comments

The Seizure of Bab El-Mandeb: Why Tanker Rates Are Exploding [video]

https://www.youtube.com/watch?v=n76tCHtJfmQ
2•toomuchtodo•4m ago•0 comments

Investment token from new economic trading platform worldwide

https://spare-change-01.vercel.app/
1•korerussbiz•6m ago•0 comments

Punish me hard. Show HN: credit against tokenised stocks for your agents

2•nakulkelkar•6m ago•0 comments

DnDGem Core – looking for developers to test content-aware layouts

https://github.com/DnDGem/dndgem
1•davideagosti62•9m ago•0 comments

Create Aeronautics Mod Release Trailer [video]

https://www.youtube.com/watch?v=SO8tpWfZjGk
1•nasso_dev•10m ago•0 comments

What if AGI is here, and it's made of children?

https://twitter.com/IAmPascio/status/2098799094835675574
1•ahmednabi•11m ago•0 comments

Raskin's Laws for Humane Computers

https://pre.hn/raskins-laws/
1•nelsonfigueroa•12m ago•0 comments

Progressive Point Matching

https://www.prestonfu.com/notes/ppm/
1•gmays•17m ago•0 comments

Incr: Faster Re-Execution via Bolt-On Incrementalization [video]

https://www.usenix.org/conference/osdi26/presentation/xie-yizheng
2•hbogert•18m ago•0 comments

FormHook – a form back end for static sites, no server needed

https://64c9ca0ce845ee1ab656962630d5be62.ctonew.app
1•westlundco•19m ago•0 comments

A few geek quizzes for time to pass

https://textlog.cc/tag/quiz?chunk=5
1•stagas•23m ago•0 comments

Pyshackle: A hard pre-execution gate for AI agent tool calls (open source)

https://pypi.org/project/pyshackle/
1•SHACKLE-PRO-•23m ago•0 comments

Map of stars around Earth out to 40 light years

https://claude.ai/code/artifact/872ab302-5cb2-4a95-ae66-7c0144177b53
1•EthanHeilman•26m ago•1 comments

US diplomat secretly flown home ‘had child abuse images at flat’

https://www.thetimes.com/uk/crime/article/us-diplomat-flown-home-immunity-bv58b3v7q
4•Betelbuddy•28m ago•1 comments

Dario Amodei says China presents 'toughest dilemma' for his proposed AI slowdown

https://www.cnbc.com/2026/09/13/china-dilemma-ai-slowdown-anthropic.html
6•donsupreme•30m ago•1 comments

Show HN: Pinocchio: Harness for Verifiable Work

https://pinocchio.goedelmachines.com
1•lazaruslong•31m ago•0 comments

MOBA: Mixture of Block Attention for Long-Context LLMs

https://arxiv.org/abs/2502.13189
1•ur-whale•31m ago•0 comments

Show HN: sengi.ai — Verified candidate sourcing for hard-to-fill roles

https://sengi.ai/
2•vmalyi•35m ago•0 comments

GCC 13.5 Released With 265 Bug Fixes

https://www.phoronix.com/news/GCC-13.5-Released
17•fork-bomber•39m ago•0 comments

Qalb: A programming language that uses the Arabic script instead of Latin

https://nas.sr/%D9%82%D9%84%D8%A8/
1•Muhammad523•41m ago•1 comments

Show HN: An agent that calculates how energy levels affect your goal progression

https://www.youtube.com/watch?v=FVUH2mna41g
1•ifeanyi_sa•41m ago•0 comments

The Case of Yemen's .YE Country-Code Domain

https://freethedotye.org/blog/when-militia-owns-ye/
2•FreeTheDotYE•45m ago•0 comments

How Mike Will Made It

https://www.newyorker.com/magazine/2016/07/11/how-mike-will-made-it
2•georgex7•47m ago•0 comments

AI recursive self-improvement might not come so quickly after all (August 2026)

https://www.technologyreview.com/2026/08/18/1142188/ai-recursive-self-improvement/
10•dgellow•54m ago•5 comments

Flock cameras used to arrest a child for playing on a swing

https://www.youtube.com/watch?v=koclOnlde0E
78•chadgpt3•56m ago•32 comments

The History of the Internet - Tay Zonday [video]

https://www.youtube.com/watch?v=y15olL4kzOA
1•CharlesW•58m ago•0 comments

Playing Bad Apple on the brain of a simulated fruit fly

https://www.reddit.com/r/oddlyterrifying/comments/1w9yhqv/playing_bad_apple_on_the_brain_of_a_sim...
2•robotnikman•58m 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/