Alberto Torres

Results 13 issues of Alberto Torres

After years of usage of coffee script I still write `not x in y` by mistake. Python interprets it as `not (x in y)` but coffee interprets it as `(not...

Specifically, in Python `==` is not the same as `is`, and `isnt` doesn't exist. The others (`and`, `or`, `not`) would remain the same. This can help people that codes in...

At least for strings longer than a set amount of lines. Usually for GLSL code. For example 100 lines instead of 80.

The vertical indent guide lines that should show every n spaces (where n is the configured tab length) show every 2 spaces when the global tab length is configured for...

bug

In all the examples we have something like this ```rust struct Vertex { position: [f32; 2] } impl_vertex!(Vertex, position); ``` but I want to load a bunch of different meshes,...

type: documentation

V8 5.9 brings a whole new architecture (ignition and turbofan) that is both simpler and faster than their predecessors (full-codegen and crankshaft), consume less memory, etc. And 6.0 brings a...

Here's an example: https://github.com/ValveSoftware/openvr/blob/master/headers/openvr_capi.h#L65 None of those values are present in the generated bindings (ulongs, cstrings, etc). Therefore ints are zero, cstrings are null, etc. As a workaround, I used...

Fixes #127 . The driver for Vive implements both IVRServerDriverHost_004 and IVRServerDriverHost_005. Since the Vive driver is always included with SteamVR, it makes no sense to have more than one...

I'm back ```javascript glsl.parse(`void main(){ #define thing(a, b, c) \ { \ a *= b+c; \ } uint a = 2u; }`) ``` Error: ``` uint a = 2u; ^...

Decompressing a file with more than one frame fails with the message "Destination buffer is too small". This is because `ZSTD_getFrameContentSize`only gives the size of the first frame. The solution...