Nik Voss

Results 36 comments of Nik Voss

I just tried the example myself and fixed a return value problem with go1.2 and also reinstalled the gorilla/sessions dependency to make sure it's the newest version. I am not...

Dead 😄 I'll add a note in the readme.

After the meeting I thought about this some more and I am curious if others share my thoughs. At figo we have been thinking about blogging about our platform architecture,...

I used the following steps to install nvidia-docker v2 (very hacky though): 1. install nvidia driver 2. instead of the volume I simply copy the files to the host, e.g....

I looked into this issue today. I abandoned my efforts (as I don't need infinity clamping for now), but one straight forward way to change how infinity values are treated...

We ran into a similar issue when we tested Calico. Only difference in our setup is that we run IPv6 Single-Stack. DNS was not working, but the underlying issue was...

There seems to be no well integrated way to do this. The CUE syntax was upstreamed to hightlight.js, but no work is currently being done to upstream a lexer for...

I added an implementation of the derive macro. Currently the user has to provide the number of locations a type requires (if it requires more than 1), e.g. https://github.com/trevex/screen-13/blob/vertex-layout/src/driver/vertex.rs#L141 This...

Hmm, interesting, if I understand you correctly, I agree that `Vec`-contains-`Vec` would make `VertexInputState` nicer to use and allow to properly compose multiple bindings, so I would agree it is...

Okay I finished the basic implementation, but it is not yet used by `GraphicPipeline`, the following test illustrates probably best what I am trying to accomplish: https://github.com/trevex/screen-13/blob/vertex-layout/src/driver/vertex.rs#L179 Creating the `GraphicPipeline`...