Wakeful Cloud
Wakeful Cloud
I think the below expression may be helpful: ```regex ^v?(\d+\.\d+\.\d+(?:-(?:alpha|beta)\.\d+)?)$ ``` Features: * `v` prefix is optional but supported * Supports `alpha` and `beta` commit messages but requires a numeric...
@strideynet That was my concern too. I wonder if it's possible to analyze a response header/body to determine if the request actually failed or not. Are you aware of any...
For anyone else who's trying to avoid setting up a toolchain, I created a [mini "CDN" for Bulma](https://bulma-on-demand.vercel.app) that allows you to change any Bulma SASS variable without installing anything....
@joeyboey ## Colors Here are the colors I used to make ~~[wakefulcloud.me](https://wakefulcloud.me) (Which is built with Buefy)~~ (EDIT: not any more, but the below should still work): Name | Dark...
@joeyboey Try setting the primary colors in the entry SCSS file (`./assets/main.scss`) **instead** (Above the imports from step 2): ```scss //Customize global theme $primary: #0d5d6a; $primary-light: #4da9b8; $primary-dark: #091a28; //Import...
@joeyboey 1. Make sure you rebuild `bulma-css-vars` (Otherwise `bulma-css-vars` and `./assets/main.scss` will have colliding variable definitions). 2. Try removing `primary-light` and `primary-dark` 3. Try without `bulma-css-vars` and see if the...
I'm running into this problem too with [cura-engine](https://github.com/cloud-cnc/cura-engine/tree/imported-functions) and `@wasmer/wasi` V1.0.2 Output from the minified version (@wasmer/wasi) ``` Error: Failed to instantiate WASI: RuntimeError: ` at B.wbg.__wbg_new_342a24ca698edd87 (/root/cura-engine/node_modules/@wasmer/wasi/dist/Library.cjs.min.js:26:11276) at wasm://wasm/0024ee5a:wasm-function[823]:0x7c9d3...
#213 seems more complete, closing
The network errors are coming from [here](https://github.com/supabase/cli/blob/e96e0629c5d1016ba70d1b7d020fa60c9138385c/internal/utils/docker.go#L67). Specifically, [`errdefs.IsConflict`](https://pkg.go.dev/github.com/docker/[email protected]+incompatible/errdefs#IsConflict) doesn't actually return `true` when a network with same name already exists with Podman, which raises some questions: * Why does...
Ran into [this](https://github.com/upx/upx/issues/504) issue with UPX `3.96-3`, upgrading to `4.1.0` fixed it. Beyond that, it's pretty easy. You may need to modify `build_dist.sh` to use `GOOS=linux GOARCH=mipsle`.