frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

12k Tons of Dumped Orange Peel Grew into a Landscape Nobody Expected (2017)

https://www.sciencealert.com/how-12-000-tonnes-of-dumped-orange-peel-produced-something-nobody-im...
2•pulisse•1m ago•0 comments

U.S. Official Sarah Rogers Visits Korea, Criticizes Censorship Bill

https://www.chosun.com/english/world-en/2026/03/28/WK7NJTRR5BFNRI6U3FFEQNO5UI/
1•mooreds•3m ago•0 comments

AMD's senior director of AI thinks 'Claude has regressed'

https://www.pcgamer.com/software/ai/amds-senior-director-of-ai-thinks-claude-has-regressed-and-th...
1•evo_9•3m ago•0 comments

Safeguarded AI

https://aria.org.uk/opportunity-spaces/mathematics-for-safe-ai/safeguarded-ai/
1•mooreds•3m ago•0 comments

Are Local LLMs Good Enough for Vibe Coding? Gemma4-26B-A4B vs. Qwen3.5-35B-A3B

https://grigio.org/are-local-llms-good-enough-for-vibe-coding-gemma4-26b-a4b-vs-qwen3-5-35b-a3b/
1•grigio•5m ago•0 comments

The Future of Everything Is Lies, I Guess

https://aphyr.com/posts/411-the-future-of-everything-is-lies-i-guess
2•Tomte•5m ago•0 comments

I Built a Wiki LLM

https://99helpers.com/wiki/security-kb
1•nickk81•6m ago•1 comments

AI Will Not Make You Rich

https://colossus.com/article/ai-will-not-make-you-rich/
2•speckx•6m ago•0 comments

Diffuse AI Issue 1

https://www.diffuseai.pub/p/diffuse-ai-issue-1
1•charlesxjyang•7m ago•1 comments

What causes most App Store rejections in your workflow?

https://appcompliance.io/
1•Eryq•7m ago•0 comments

Show HN: Dial Tone – an iOS rhythm game inspired by Slide to Unlock

https://fidgetwinner.com/making-dialtone
1•fidgetwinner•8m ago•0 comments

Show HN: Developed a solution to automate ASO keyword research

https://respectaso.com/
1•sinthes•9m ago•0 comments

DispoRx: Using Agentic AI as a high-fidelity simulator for ER workflows

https://www.disporx.com/resources/disporx-launches-agentic-ed
1•chmoder•9m ago•1 comments

.env is safe but your –/.claude is not

https://github.com/PrismorSec/immunity-agent/blob/main/README.md
4•noobcoder•11m ago•1 comments

Slople – Can you tell real ML papers from AI-generated ones?

https://ml5885.github.io/slople/
2•bearseascape•11m ago•1 comments

Show HN: Kindling – reverse-engineered kindlegen, ~7,000x faster in Rust

https://github.com/ciscoriordan/kindling
1•ciscoriordan•11m ago•0 comments

"whole civilization will die tonight"

https://www.cnn.com/2026/04/07/world/live-news/iran-war-trump-us-israel
6•eth0up•12m ago•2 comments

How to Think About Dynamic Systems: Working with Phase Space

https://chillphysicsenjoyer.substack.com/p/how-to-think-about-dynamic-systems
1•crescit_eundo•12m ago•0 comments

Don't get used to Skills, they'll (mostly) be gone in a year

https://armanckeser.com/writing/skills-in-a-year
1•armanckeser•13m ago•0 comments

Show HN: Video Commander – A desktop IDE for video engineers (FFmpeg, VMAF)

https://video-commander.com
1•alfg•15m ago•0 comments

Design by Hand, Code by Agent - Edit styles, layout and content in the browser

https://cssstudio.ai
1•anyg•17m ago•1 comments

So where are all the AI apps?

https://www.answer.ai/posts/2026-03-12-so-where-are-all-the-ai-apps.html?lid=xo0tsixagpje
2•speckx•17m ago•0 comments

Show HN: Falcon Builder – the modular OS for designing and deploying AI agents

https://www.falconbuilder.dev/
1•mecarc•18m ago•0 comments

Sybilproof reputation mechanisms (2005) [pdf]

https://dl.acm.org/doi/pdf/10.1145/1080192.1080202
1•perfmode•18m ago•0 comments

How to Use Standard HTML Video and Audio Lazy-Loading

https://engineering.squarespace.com/blog/2026/how-to-use-standard-html-video-and-audio-lazy-loadi...
1•beeandapenguin•18m ago•0 comments

AI alignment: the signal is the goal

https://substack.com/home/post/p-193080562
1•atzeus•19m ago•0 comments

Show HN: Vibe-coded your repo? Drift finds the architecture problems

https://mick-gsk.github.io/drift/
1•sauremilk•20m ago•0 comments

Someone good at CSS help, my website design is dying

https://ahti.space/~nortti/writeups/my-website-design-is-dying.html
1•birdculture•20m ago•0 comments

ErrataBench – A Proofreading Benchmark for LLMs

https://revise.io/errata-bench
1•artursapek•21m ago•0 comments

OpenAI's Sam Altman tells companies to try four-day working week

https://www.thetimes.com/us/news-today/article/openai-chief-backs-four-day-week-to-spread-ai-bene...
3•romanhn•23m ago•1 comments
Open in hackernews

Automatically add missing "async/await" keywords to your TypeScript code

https://github.com/stanNthe5/typescript-autoawait
7•theThree•11mo ago

Comments

bastawhiz•11mo ago
Is this a problem that people actually have?
xeromal•11mo ago
Fun side project man!
primitivesuave•11mo 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•11mo 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•11mo ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•11mo 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•11mo ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/