frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Clio MCP Open-source Claude connector for law firms

https://github.com/oktopeak/clio-mcp
1•piterjov•1m ago•0 comments

Y Combinator – The French Documentary (With English Subtitles) [video]

https://www.youtube.com/watch?v=w-zS3U40Juo
1•rmason•1m ago•0 comments

I built an AI travel agent that books real hotels

https://medium.com/@sorin_14830/how-i-built-an-ai-travel-startup-that-actually-books-real-hotel-1...
1•sorinmihailescu•3m ago•0 comments

AI can replace your job. Here's what it can't replace

https://www.cjchilvers.com/blog/ai-can-replace-your-job-heres-what-it-cant-replace/
1•evo_9•5m ago•0 comments

Local Figma Port – export scoped design context to MCP for AI coding agents

https://github.com/echo-ae/local_figma_port
1•echo-ae•8m ago•0 comments

To buy this Bay Area home, you'll need Anthropic equity

https://techcrunch.com/2026/04/26/to-buy-this-bay-area-home-youll-need-anthropic-equity/
1•momentmaker•9m ago•0 comments

OpenAI is building a phone that would make apps obsolete

https://thenextweb.com/news/openai-qualcomm-ai-phone-agents-replace-apps
1•skeledrew•9m ago•0 comments

Sebastian Sawe breaks iconic sub-two-hour marathon barrier

https://www.bbc.com/sport/athletics/articles/cp383n09030o
2•avicado0o•10m ago•1 comments

Tokenmaxxing Isn't an AI Strategy

https://www.theregister.com/2026/04/26/ai_price_tag/
1•saikatsg•10m ago•0 comments

Rocketship: AI app builder with AI workers that email your leads, book meetings

https://deployrocketship.com
1•CarlosJeer•11m ago•1 comments

Show HN: Pdfnative-MCP – Model Context Protocol server for the pdfnative engine

https://www.npmjs.com/package/pdfnative-mcp
1•nizoka•11m ago•0 comments

U.S. companies back Sam Altman's World ID even as much of the world pushes back

https://restofworld.org/2026/sam-altman-worldcoin-zoom-tinder-partnerships/
5•kelnos•11m ago•0 comments

Bridging West Papua Through Dispossession

https://failedarchitecture.com/bridging-west-papua-through-dispossession/
1•Thevet•12m ago•0 comments

How Much of Substack Is AI?

https://www.usermag.co/p/how-much-of-substack-is-actually-ai-pangram-analysis-substack-bestsellers
2•laurex•12m ago•0 comments

Show HN: Claude Architect

https://github.com/willhennessy/architect
1•hennessywill•13m ago•0 comments

Cognition Launches Devin CLI

https://twitter.com/cognition/status/2048821234281181302
1•mschrage•13m ago•0 comments

Are landline phones making a comeback? [video]

https://www.bbc.com/reel/video/p0ncdtb6/watch
1•rolph•14m ago•0 comments

Copilot Student GPT-5.3-Codex removal from model picker

https://github.blog/changelog/2026-04-27-copilot-student-gpt-5-3-codex-removal-from-model-picker/
2•uncognic•17m ago•0 comments

Git hooks, upgraded: What's new in Git 2.54 and coming in 2.55

https://www.collabora.com/news-and-blog/news-and-events/git-hooks-upgraded-whats-new-git-254-and-...
2•losgehts•18m ago•0 comments

Withnail's Coat and I

https://ontherow.substack.com/p/withnails-coat-and-i
1•apollinaire•19m ago•0 comments

Show HN: What happens when you load a webpage (Interactive)

https://toolkit.whysonil.dev/how-it-works/internet-timeline/
5•otterwilde2•21m ago•0 comments

Show HN: NoSheetKit – personal tracking mini-apps that run in the browser

https://www.nosheetkit.com
1•rsosenke•22m ago•0 comments

Also Liked

https://foryou.club/also-liked
2•big_toast•27m ago•1 comments

Study: Infrasound likely a key factor in alleged hauntings

https://arstechnica.com/science/2026/04/that-spooky-sensation-likely-due-to-rumbling-pipes-not-sp...
2•ndr42•29m ago•0 comments

Below the Fold: Dashboard of NY Times Coverage 2000-26

https://tedalcorn.github.io/nyt/#tab=home
3•apwheele•29m ago•0 comments

DevResolve embed a support widget on your dev docs

https://devresolve.ai/
2•EthanWayne•31m ago•1 comments

Evolution of the vertebrate retina by repurposing ancestral median eye (2026)

https://www.cell.com/current-biology/fulltext/S0960-9822(25)01676-8?_returnURL=https%3A%2F%2Flink...
3•Eridanus2•33m ago•0 comments

Enabling Multi-Region Data Systems at Notion

https://www.notion.com/blog/enabling-multi-region-data-systems-at-notion
2•tanelpoder•33m ago•0 comments

The pgvector Tooling Landscape in 2026

https://github.com/grove/pg-trickle/blob/main/blog/pgvector-tooling-landscape.md
4•grove•33m ago•0 comments

Microsoft and OpenAI's famed AGI agreement is dead

https://www.theverge.com/ai-artificial-intelligence/918981/openai-microsoft-renegotiate-contract
2•einszwei•35m ago•2 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/