frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude Code Supports AGENTS.md

https://github.com/anthropics/claude-code/tree/main/mods/agents-md
1•tosh•2m ago•0 comments

CSS-Tricks could be a co-op

https://ericwbailey.website/published/css-tricks-could-be-a-co-op/
1•birdculture•3m ago•0 comments

Kubernetes Changed Block Tracking API – Beta Differences

https://kubernetes.io/blog/2026/09/14/csi-changed-block-tracking-beta/
1•hn9zmdcaou•7m ago•0 comments

Unexpected Facts about Turkeys

https://www.vox.com/2014/11/27/7299377/turkey-facts-fun
1•thunderbong•11m ago•0 comments

Anyone Used Cloudflare AI Agent Diagnostics for SaaS Purchases?

https://blog.cloudflare.com/aeo/
1•tkrenn06•11m ago•1 comments

EconDash – Explore 753 economic indicators across 298 countries

https://econdash.org
1•latentframe•11m ago•0 comments

Walking Men Worldwide

https://walking-men.com/
2•bookofjoe•13m ago•0 comments

Taking notes while reading: the John Locke commonplace method

https://fs.blog/john-locke-common-place-book/
1•mimo84•15m ago•0 comments

Infillion Acquires Foursquare

https://infillion.com/blog/infillion-to-acquire-foursquare-closing-the-loop-between-advertising-a...
1•doppp•20m ago•0 comments

Options Trading – Formula better than the Black-Scholes model

https://zenodo.org/records/22772029
1•zipotm•21m ago•0 comments

Launched a JEV directory with 100 uses cases

https://madewithjev.com
1•kraayen_jon•22m ago•0 comments

Show HN: NotchBuddy – Your MacBook's Notch Can Do All This

https://notchbuddy.com
1•mohitvaswani•22m ago•0 comments

Wonder how smart Jev is? Ask him directly

https://ouijev.com/
1•Rom2•24m ago•0 comments

OwnNotes: Private AI Notebook

https://apps.apple.com/us/app/ownnotes-private-ai-note/id6805594736
1•rajeevkrasr•25m ago•0 comments

Nonprofit that tracks meteors taken down by "critical blow" from a cyberattack

https://arstechnica.com/security/2026/09/nonprofit-that-tracks-meteors-taken-down-by-critical-blo...
1•joozio•31m ago•0 comments

RoboHarm: Do Frontier Robot Policies Refuse Unsafe Instructions?

https://robocurve.org/roboharm/
1•jonbaer•32m ago•0 comments

AnyFilter: Hide anything you don't want to see on any site, powered by Jev

https://github.com/anyfilter/anyfilter
1•lime66•33m ago•0 comments

TimeCodeSecurity – Deterministic AST SAST and Auto-Remediation for Python

2•AyushGaur•33m ago•0 comments

Show HN: NSLibrary – a self-hosted library for your Switch games and homebrew

https://github.com/tuckerwales/nslibrary
1•tuckerwales•35m ago•0 comments

Guest to host: escaping Docker's hypervisor

https://accomplish.ai/blog/escaping-dockers-hypervisor/
2•porridgeraisin•37m ago•0 comments

First principles of UI composition for your coding agents

https://www.eflx.top/blog/ui-composition-first-principle
1•EFLKumo•38m ago•0 comments

Anthropic sets up biology lab as it ramps AI drug program

https://www.reuters.com/world/anthropic-quietly-sets-up-biology-lab-it-ramps-ai-drug-program-2026...
1•olalonde•40m ago•0 comments

Jev Playground

https://jevplayground.terrydjony.com/
1•terryds•41m ago•0 comments

Windowshot

https://www.windowshot.app/
1•qaisfaiz•43m ago•0 comments

Show HN: Sigabrt.dev – cronjob monitor with an SSH TUI

https://sigabrt.dev
1•4815162342•45m ago•0 comments

Laya the open source version of Jev

https://laya.convaiinnovations.com/
4•nandakishor_ml•46m ago•1 comments

Would you trade a 6-hour layover for 3 days in that city if it's cheaper?

https://uwillfly.net/pl
3•privacyzvarych•46m ago•0 comments

Search Engine that de-ranks Bot Popup and Cookie Popup websites?

1•peter_d_sherman•46m ago•1 comments

Leave the Class Path in the Rearview Mirror

https://netflixtechblog.com/leave-the-class-path-in-the-rearview-mirror-67a85b15b6be
1•theanonymousone•51m ago•0 comments

What Happens If You Execute a Random File? [video]

https://www.youtube.com/watch?v=I3i5cD5fdXI
1•vismit2000•51m ago•1 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/