regnaio

Results 18 issues of regnaio

Updated packages using `go get -u ./...` Then, I tried running a go file using `go run ` Got the error message: `cannot use doc (variable of type *"github.com/google/gnostic/openapiv2".Document) as...

`.npmrc` (for private GitLab package registry) ``` @:registry=https://gitlab.com/api/v4/projects/${GITLAB_PROJECT_ID}/packages/npm/ //gitlab.com/api/v4/projects/${GITLAB_PROJECT_ID}/packages/npm/:_authToken=${GITLAB_API_PERSONAL_ACCESS_TOKEN} ``` ```shell ncu Checking //package.json [===============-----] 3/4 75% @/ 404 Not Found - GET https://gitlab.com/api/v4/projects//packages/npm/@%2f - Project not found. Either your...

bug

According to the [`doctl kubernetes cluster delete` docs](https://docs.digitalocean.com/reference/doctl/reference/kubernetes/cluster/delete/#flags), the `--dangerous` flag should delete PVC volumes However, `godo.Client.Kubernetes.DeleteDangerous()` does not delete PVC Volumes Using the latest version: `v1.113.0`

[Vultr API - Create NodePools](https://www.vultr.com/api/#tag/kubernetes/operation/create-nodepools) > `labels` (`object`): Map of key/value pairs defining labels to automatically apply to all nodes in this nodepool. Labels will be applied to both new...

bug

https://github.com/kubernetes/api/blob/master/core/v1/types.go#L2309 When you `json.Marshal()` a `ResourceFieldSelector` with undefined `Divisor`, you get `divisor: "0"` This is bad for 2 reasons: 1. `omitempty` is meaningless here 2. According to the docs, `Divisor`...

lifecycle/rotten

All fields , (e.g. in `Config`, `TLSConfig`) should have `yaml:",omitempty"` https://github.com/prometheus/exporter-toolkit/blob/master/web/tls_config.go#L39 For example, it doesn't make sense that `TLSConfig.MinVersion` appears as `0` when marshaled to YAML. Prometheus crashes if you...

[Kinematic `btRigidBody` example by Erwin Coumans - creator of Bullet Physics](https://gist.github.com/erwincoumans/fa31f678936af29cbbbf76c0413cd70e) ```c btTransformUtil::integrateTransform(m_groundBody->getWorldTransform(), linearVelocity, angularVelocity, dt, predictedTrans); m_groundBody->getMotionState()->setWorldTransform(predictedTrans); ``` I'd like to use this useful `btTransformUtil::integrateTransform()` function in `ammo.js`. Can...

Hi @lo-th ! Thank you for your awesome repo. I'm exploring it and was wondering where the Havok source is? Inside `src/Havok.js`, there's: ```js export { engine } from './_havok/engine.js';...