Eric Forgy
Eric Forgy
I noticed. I'll try a similar fake :)
Hi @tkelman Here is what I have and it seems to be working :+1: ``` julia @windows_only function download(source::AbstractString) filename = joinpath(dirname(@__FILE__),"..","cache",basename(source)) run(BinDeps.download_cmd(source,filename)) if isfile(filename) return readall(filename),200 end return "",0...
I was using the latest tagged version (a fresh install of Julia on the remote VM). I'll try master, but when I did your experience before to test download_cmd, I...
@tkelman , if I were to submit a PR for WinRPM, should I start from the latest tagged version or from master?
How does that look?
I'm still a novice with Git, but decided to go ahead and try a rebase to make it cleaner. How is that?
:+1: Thanks. Added the cleanup (and rebased again). How's that?
This would be awesome 😍
I have a similar problem on Windows: ``` julia julia> using Taro ERROR: LoadError: LoadError: InitError: Cannot find java library jvm.dll Search Path: C:\Program Files\Julia-0.4.5 ``` I never used JavaCall.jl,...
I'll give a simplied example that I bumped into... I am working on a financial application using `FixedDecimal` for payment amounts. ```julia cost = Fixed{Int,2}(5) sales_tax_rate = .05 sales_tax =...