Elliot Saba
Elliot Saba
Significantly simplify `gdk-pixbuf` querying by using a scratch space to hold mutable state. Also try to avoid needing to copy around the pixbuf loaders; instead opting for a more dynamic...
Attempting to evaluate anything (such as `1+1`) using server mode on 0.5.11 gives no results in the Julia `Console`, and in the Developer tools console, I see the following errors:...
```julia 1|debug> bp add ERROR: MethodError: no method matching (::Debugger.var"#bp_error#55")() Closest candidates are: bp_error(::Any) at /Users/sabae/.julia/packages/Debugger/eTh3Q/src/breakpoints.jl:30 ``` I'm guessing this should probably just print out the breakpoint help.
When debugging code such as the following: ```julia function wrapper() mktempdir() do dir open(joinpath(dir, "test.txt"), "w") do io println(io, "data") end end end ``` Using `n` to enter a `do`...
@keno This is on 0.5, using the latest tag of Gallium.jl. ``` julia> using Gallium julia> Gallium.breakpoint_on_error() Gallium.Hooking.Hook(Ptr{Void} @0x00007ff7dfcf6ec0,UInt8[0x55,0x48,0x89,0xe5,0x53,0x48,0x89,0xfb,0x48,0x83,0xec,0x08,0xe8,0x7f,0x23,0x02,0x00],Gallium.breakpoint_on_error_hit) julia> model = train_model("orig", CoughModel("SVM"), features) ERROR: UndefVarError: cross_validate not defined...
Hello there! This is an automated pull request submitted by `@staticfloat` to help package authors transition their Julia installation CI setups to the new binary provider URL. Please take a...
While trying to debug a BinDeps problem, I ran into the following: ``` julia> using Gallium julia> include(Pkg.dir("Cairo","deps","build.jl")) julia> @enter BinDeps._find_library(group) In /Users/sabae/.julia/v0.5/BinDeps/src/dependencies.jl:706 705 function _find_library(deps::LibraryGroup, allfl = allf(deps); provider...
This allows distributions to be more easily relocatable, such as when bottling this library in Homebrew.
With a 4-dimensional array: ``` m = randn(250,202,3,1) imresize(m, (277, 224, 3, 1)) ``` Running the `imresize()` multiple times shows NaN's randomly appearing. If I eliminate the fourth dimension, this...
Many packages will require some kind of "bootstrapping"; e.g. the ability to run the executables they have just built. We should look into solutions such as [Wine](https://winehq.org) for Windows, [Darling](https://darlinghq.org)...