Christopher Baklid Simione
Christopher Baklid Simione
Looking at a package like this `grep` one - https://community.chocolatey.org/packages/grep it's possible to download the `.nupkg` file and rename it to `.zip` after unzipping it I had a look at...
For anyone stumbling over this, I managed to use `mdev` as a service to mount SCSI disks in Openstack with the setup described below: # The Problem My usecase required...
It's possible to reduce the size by utilizing Next's "standalone" build mode. 1. Add the 'standalone' line to the `next.config.js` ```diff /** @type {import('next').NextConfig} */ const nextConfig = { +...
This is how I ended up solving it ```go package main import ( "fmt" "os" "strings" "github.com/spf13/cobra" "github.com/spf13/pflag" "github.com/spf13/viper" ) type App struct { } func main() { cli :=...