Ryan Wiedemann
Ryan Wiedemann
The `2` is considered a magic number in the following code. ```golang func center(x, y, w, h int32) (cx int32, cy int32) { cx, cy = w/2+x, h/2+y return }...
When I try the example on my Linux (Ubuntu 16.04) machine, it works properly after the first change to `test_shared.rs`, but it does nothing if I change it a second...
The Unicode [Control Pictures block](https://en.wikipedia.org/wiki/Control_Pictures) contains glyphs for displaying otherwise unprintable control characters from ASCII, such as tab or line feed. It is sometimes useful to be able to see...
wocka.json contains the following: ``` { "body": "With over %d jokes submitted and ranked by users like you, Wocka has the largest collection anywhere on the internet. All of these...
I'm currently writing some fuzz tests for converting some relatively complex data to JSON and back. When the tests find a problem then they take 1-2 minutes and spew over...
I'd like to be able to produce a function definition like the following from the readme by pressing where I would otherwise have to press \ then Enter. ```elm factorial...
The following program uses 100% of a CPU, according to `htop`, in release mode, whether any key on the keyboard is pressed or not. ```rust use winit::{ event::{Event, WindowEvent}, event_loop::{EventLoop,...
If I enter in the following regex and subject then the capture list on the right doesn't update and the javascript console reports a panic: Regex: ``` (?:a(b+)c)|(b+)d ``` Subject:...
`ctx.fillRect(0,0,20,20,20);` -> `ctx.fillRect(0,0,20,20);` The first version has a third `20`.
`stb_herringbone_wang_tile.h` is currently producing warnings on `clang` and `gcc` relating to the `stbhw__process_rect` typedef. This includes when compiling the `herringbone_map.c` and `herringbone_generator.c` files in the `tests` directory. This PR forward...