Josef Sachs
Josef Sachs
``` $ sloc whatever-directory Error: Error: ENOENT: no such file or directory, stat '/whatever-directory/whatever-file',Error: ENOENT: no such file or directory, stat '/whatever-directory/whatever-file' $ echo $? 0
Using master branches of julia and Gallium and its dependencies. ``` AWS-Sachs-Ubuntu$ usr/bin/julia _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation:...
``` AWS-Sachs-Ubuntu$ cat ~/lib/julia/JsonDeserialize.jl/src/JsonDeserialize.jl using JSON import Base.deserialize deserialize{T}(::Type{T}, json::AbstractString) = deserialize(T, JSON.parse(json)) deserialize{T}(::Type{T}, json::Dict) = T(flatten([deserialize(T, f, json) for f in fieldnames(T)])...) deserialize{Tf}(::Type{Tf}, field::AbstractString, json::Dict) = deserialize(Tf, json[field]) deserialize{Tf...
In Julia 0.5.1-pre+27 ``` AWS-Sachs-Ubuntu$ cat /home/sachs/lib/julia/GalliumExample.jl/src/GalliumExample.jl function myfunction1(x) return "monadic" end function myfunction1(x, y) text = "alpha" z = myfunction2(x + y) return z end function myfunction2(a) r =...
This worked in 0.5.0-pre, i.e. ended up in the debug prompt in the REPL. Am I doing something wrong? What changed? ``` AWS-Sachs-Ubuntu$ cat /home/sachs/lib/julia/GalliumExample.jl/src/GalliumExample.jl function myfunction1(x) return "monadic" end...
Using master branch of julia and Gallium and its dependencies. userimg.jl contains just `using Gallium`. ``` AWS-Sachs-Ubuntu$ ~/src/julia-master/usr/bin/julia ~/src/julia-master/contrib/build_sysimg.jl ~/etc/julia/sysimage-Gallium/v0.5/sys core2 ~/etc/julia/sysimage-Gallium/v0.5/userimg.jl INFO: Building inference0.o... /home/sachs/src/julia-master/usr/bin/julia -C core2 --output-ji /home/sachs/etc/julia/sysimage-Gallium/v0.5/inference0.ji...
They are not optimized out if I set a breakpoint. Using master branch of Gallium and its dependencies. ``` AWS-Sachs-Ubuntu$ usr/bin/julia _ _ _ _(_)_ | A fresh approach to...
The auto-generated deps.jl file contains lines such as the following. ``` @checked_lib MBED_TLS "C:\\Users\\s2sajs\\.julia\\v0.4\\MbedTLS\\deps\\usr\\bin64\\libmbedtls.DLL" ``` This prevents me from moving or copying the package directory. Would it be feasible to...
``` C:\Users\s2sajs>C:\cygwin64\home\s2sajs\julia-master\usr\bin\julia.exe _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org _ _ _| |_ __ _ | Type "?help" for...
In discussions with Jeff on Tuesday, he said he thought this was a reasonable change. Use case is to ship a product with precompiled package without revealing package source. Current...