JalonSolov
JalonSolov
If those are supposed to be bytes in the string, there is no library function to convert to a byte array, as you have to take each character _pair_ and...
Try adding `[console]` on the line above `fn main() {` in bounce.v
jQuery (and goQuery - jQuery rewritten in Go) has $(document).ready(). When that event is fired, all page elements have been loaded, including CSS, so you can now do any last-minute...
For accessing the DOM, there are at least these 2 projects: https://github.com/dennwc/dom https://github.com/dominikh/go-js-dom
Slightly more recently updated brotli lib, with both encode/decode: https://github.com/andybalholm/brotli
Yes, this bug is still around, and has been for too long. The workaround is to move the module somewhere else (anywhere other than `.vmodules`, then put a link in...
Right now, i32 is a type alias, not a "real" type.
`u8` is also there, as an alias of `byte`. Yes, `i32` and `u8` should be the concrete types. However, it might be useful to highlight type aliases differently from concrete...
`u8` has been switched to the real type, with `byte` as an alias. Nothing has changed with `i32` vs `int`, yet.
On example was listed in the original post... "For example, the task system goes unused in favor for custom "run" and "build" commands."