Tyler Zhang
Tyler Zhang
Sometimes rustc can produce a zero-length WASM function. When compiling something like this: ```rust //! ```cargo //! [package] //! name = "zero-size-test" //! version = "0.1.0" //! edition = "2018"...
I'm trying to render glyphs by loading the control points from a font and issuing the relevant bezier curve commands to `Canvas`, and of course this happens when I try...
After inserting a large amount of points into a quadtree, making queries can cause a stack overflow when iterating through results. I've cut down to a reproducing example here: ```rust...
Testing with the following script: ```python import traceback import boto3 from moto import mock_aws def bad_update(table): table.update_item( Key={"pk": "foo", "sk": "bar"}, UpdateExpression="SET x = :one", ExpressionAttributeValues={":one": 1, ":something_else": 2}, )...