Jack Foltz

Results 7 issues of Jack Foltz

Perhaps the man colors could default to the terminal's default colors using [tput(1)](https://linux.die.net/man/1/tput) as described in https://unix.stackexchange.com/a/147. I'd guess most users already have terminal colors configured elsewhere, so this would...

I'm trying to install this on Arch Linux, and I get the following: ``` > [email protected] install /home/lain/test/node_modules/hashtable > node-gyp configure build make: Entering directory '/home/lain/test/node_modules/hashtable/build' CXX(target) Release/obj.target/native/src/hashtable.o In file...

It would be a good idea to have automated tests for resource CRUD operations that run against an actual VyOS instance. Perhaps we could create a GitHub actions pipeline that...

From https://github.com/Foltik/vyos-client-go/pull/4: > Where there are many Terraform resources for vyos the refresh can take minutes as the the API calls are serialized. One simple way to address this would...

Since the VyOS API is quite slow, we should try to batch together changes as much as possible. As https://github.com/hashicorp/terraform-plugin-sdk/issues/66 and https://github.com/hashicorp/terraform-plugin-sdk/issues/7 are still unimplemented in the Terraform plugin SDK,...

It would be useful to be able to convert nalgebra types to glsl-layout types with an optional feature, just as is currently done with cgmath. I'd be willing to give...

Cargo.toml ```toml glsl-layout = { version = "0.3.2", features = ["bigger-arrays"] } ``` main.rs ```rust use glsl_layout::AsStd140; #[derive(Copy, Clone, AsStd140)] struct MyStd140 { array: [f32; 256] } ``` Gives the...