Gustavo Goretkin
Gustavo Goretkin
https://github.com/aclements/latexrun/commit/38ff6ec2815654513c91f64bdf2a5760c85da26e#diff-bb509f917948249b44c93a585fc72c90R255 makes use of `os.CLOEXEC`, which will largely be unavailable on current official binaries of Python on OS X. See http://bugs.python.org/issue26343 for more info.
[ArrayRenderer](https://github.com/goretkin/AudioIO.jl/blob/master/src/nodes.jl#L213) may return a buffer that is smaller than `info.buf_size`, since the array might not be a multiple of `info.buf_size`. But [InputRenderer](https://github.com/goretkin/AudioIO.jl/blob/master/src/nodes.jl#L273) currently asserts that the size of the input...
Due to callbacks, a solution can have repetition in `solution.t`. This is an idea for introducing a new field, maybe solution.t_discrete`, which would contain an ID for which callback (or...
I get the stacktrace below, and the Makie window stops being responsive. ``` julia> ArgumentError: cannot convert NULL to string Stacktrace: [1] unsafe_string @ ./strings/string.jl:70 [inlined] [2] unsafe_string @ ./c.jl:193...
I think the backends (at least matplotlib) can handle this, but somehow Plots (Plots v0.25.1) causes errors: ```julia julia> using Plots; pyplot(); julia> (x,y) = ([0.01, 0.02, 0.03], [0.01, 0.0,...
using PyCall `v1.92.1` ```julia import PyCall PyCall.inspect.mod_dict ``` segfaults. (Originally from https://github.com/JuliaPy/PyCall.jl/issues/754#issuecomment-597896361)
For better or for worse, people use comments to deactivate code. How about a way to match within commented out code? I am not sure if this is as simple...
I am trying to print this class: https://github.com/bulletphysics/bullet3/blob/master/src/LinearMath/btVector3.cpp but I receive this error ``` :3:35: error: expected unqualified-id auto &r = __juliavar1.; ``` (repeated 3 times..?) Indeed, the generated function...
``` julia> using Cxx julia> cxx""" #include typedef float float32; /// A 2D column vector. struct b2Vec2 { /// Default constructor does nothing (for performance). b2Vec2() {} /// Construct using...
``` julia> (@cxx fabs(2.0);) 2.0 julia> (@cxx fabs(2.0);) == 2.0 true julia> @cxx fabs(2.0) == 2.0; ERROR: UndefVarError: fabs not defined Stacktrace: [1] top-level scope at REPL[10]:1 julia> @cxx (fabs(2.0)...