Tạ Quan Minh Long
Results
2
comments of
Tạ Quan Minh Long
I did also manage to make it work, though only with production mode ```ts // plugins/remix.ts import type { ServerBuild } from "@remix-run/node"; import { createRequestHandler } from "@remix-run/node"; import...
A simple way to update all `cargo install`ed binaries (potential `cargo-install-update` integration)
If you use [nushell](https://www.nushell.sh/) simply use this script ```nu cargo install --list | parse "{package} v{version}:" | get package | each {|p| cargo install $p} ```