[julia-users] How to deal with methods redefinition warnings in 0.5?

2016-09-12 Thread felipenoris
Try calling workspace() before repeating include.

[julia-users] Re: Workflow question - reloading modules

2016-09-11 Thread felipenoris
You should call workspace()

[julia-users] Re: RDatasets "UndefVarError: displaysize not defined"

2016-09-08 Thread felipenoris
I guess this is the same as https://github.com/JuliaStats/DataFrames.jl/issues/1058 Em quinta-feira, 8 de setembro de 2016 14:21:41 UTC-3, Jeremy McNees escreveu: > > Have the same Issue. No problem in the REPL, but does not work in IJulia. > > On Monday, August 29, 2016 at 5:13:52 PM UTC-4,

[julia-users] Re: Tutorial Julia language brazilian portuguese

2016-06-25 Thread felipenoris
Great material! Em sexta-feira, 24 de junho de 2016 19:57:25 UTC-4, jmarcell...@ufpi.edu.br escreveu: > > Hello everyone > > I am writing a tutorial Julia language Portuguese (over 200 pages): > > https://github.com/jmarcellopereira/juliatutorialbr >

Re: [julia-users] Skylake support

2016-06-24 Thread felipenoris
Thanks! I'll check the hardware.

[julia-users] Skylake support

2016-06-23 Thread felipenoris
Anyone had success using Julia on Intel's Skylake processors? I get some segfaults when using Julia (download precompiled) + Ubuntu 14.04. I also tried to compile it from source, but I get some segfaults when compiling LLVM.

[julia-users] new package InterestRates.jl

2015-08-22 Thread felipenoris
currently at the readme file (check also https://github.com/felipenoris/InterestRates.jl). Cheers!

[julia-users] Re: PSA: Changes to Base Docstrings

2015-08-07 Thread felipenoris
I would be glad to help with this process. Will you put a roadmap on what´s needed on https://github.com/JuliaLang/julia/issues/12489 ?

Re: [julia-users] Method dispatch shootout

2015-07-29 Thread felipenoris
is at: https://gist.github.com/felipenoris/660537161af33db34dcb *Results:* julia include(enum-vs-dispatch.jl) enums with switch code 323.515 milliseconds Dispatch via Val Type 1.068 seconds (3 k allocations: 458 MB, 1.96% gc time) Dispatch via Const Val Type

[julia-users] Method dispatch shootout

2015-07-28 Thread felipenoris
Maybe this is worth sharing. When considering using enums instead of types, I came up with 7 different ways to dispatch to methods, and these are the results of the performance tests. The code is at: https://gist.github.com/felipenoris/660537161af33db34dcb *Results:* julia include(enum-vs

[julia-users] Re: Can I keep some things compiled?

2015-07-28 Thread felipenoris
On 0.3, I think your best option is to build a custom system image with precompiled modules on it. On 0.4, there´s added support for incremental module precompilation using Base.compile(:module). Check http://docs.julialang.org/en/latest/manual/modules/#module-initialization-and-precompilation

[julia-users] Re: Where to get general offline help with Julia?

2015-07-28 Thread felipenoris
#Clone julia repo: git clone g...@github.com:JuliaLang/julia.git # go into docs folder cd julia/doc # build the docs make html Em terça-feira, 28 de julho de 2015 09:34:18 UTC-3, Joe Tusek escreveu: Its embarrassing but where can you ask for some to provide offline assistance with

[julia-users] Re: New package BusinessDays.jl

2015-07-06 Thread felipenoris
on. *Installation* julia Pkg.update() julia Pkg.add(BusinessDays) Package documentation is currently on the Readme file, or at https://github.com/felipenoris/BusinessDays.jl . Cheers.

[julia-users] New package BusinessDays.jl

2015-07-05 Thread felipenoris
Hello, you might want to check out this new package I'm working on. *Installation* julia Pkg.update() julia Pkg.add(BusinessDays) Package documentation is currently on the Readme file, or at https://github.com/felipenoris/BusinessDays.jl . Cheers.