Mak Nazečić-Andrlon

Results 21 issues of Mak Nazečić-Andrlon

The documentation is at present vague about the order of matrix operations. `multiply`, `translate`, etc. should state the order in which the operations are performed. Specifically, I've been bitten by...

If you have a collection of images as a tileset where you've deleted a tile from the middle, rendering breaks because sfml-tmxloader expects the IDs to be contiguous.

bug

Text in comments cannot be selected in the usual way, using a long press. I often need to search particular words or phrases from posts, which I'm used to doing...

Setting the same contents fires events even if nothing has changed, see fiddle for example: http://jsfiddle.net/xNWUM/1/

question

I've run into an issue with `ID3D11DeviceContext::OMSetRenderTargets()` where the [original](https://learn.microsoft.com/en-us/windows/win32/api/d3d11/nf-d3d11-id3d11devicecontext-omsetrendertargets) takes a pointer to an array of const pointers to `ID3D11RenderTargetView`, but the Rust version takes an `Option`. As best...

enhancement

Using multiple API credentials with the client is currently impossible to do thread-safely since everything is in the global module. I propose creating an Etsy::Client class, like the Twitter gem's...

For the sake of ergonomics, since the value returned by `JSONValue::read_string()` does not have escapes processed, a newtype wrapper, call it `JSONString`, should be returned instead. This would help prevent...

enhancement
good first issue

The way Sipser's textbook defines PDAs, they can have epsilon stack moves. So for example "a, eps -> x" says "read a, push x" and "a, eps -> eps" says...

bug
enhancement

This PR fixes several bugs and adds support for missing features to the `flatbuffers` and `flatbuffers_reflection` crates. * fixes https://github.com/google/flatbuffers/issues/8550 * fixes https://github.com/google/flatbuffers/issues/8548 * adds reflection support for vectors of...

rust

This PR adds an extra field to `VerifierOptions`, allowing the caller to specify the name of the table to use as the root for verification.

rust