[julia-users] Re: Julia for app development using react native and emscripten/WASM (or other)

2016-03-05 Thread Eric Forgy
Hi datnamer, Have you seen this? - Support compiling to JavaScript with Emscripten I am looking forward to this capability. WebAssembly looks very promising too. Cheers, Eric On Sunday, March

[julia-users] GSoC project - "Calling Julia from Python"

2016-03-05 Thread Manu Jain
Hi I am Manu Jain, a third year undergraduate in Computer Science and Engineering from IIIT-Hyderabad. I have a good knowledge of C,C++ and Python languages. I am interested in the project "Calling Julia from Python". I am reading about Julia from past 3-4 days and has developed quite

[julia-users] Julia for app development using react native and emscripten/WASM (or other)

2016-03-05 Thread datnamer
Hi everyone. Question about julia's future utility for univeral app developement. Will static compile and emscripten eventually allow Julia to compile to JS that can be used in react native? What are the other potential avenues for Julia mobile and multi platform apps? Thanks

Re: [julia-users] Concurrently install two versions of Julia

2016-03-05 Thread Abel Siqueira
If you use the Generic Linux Binaries, you can sudo ln -s /path/to/julia /usr/local/lib/julia-some-name For each downloaded version. Abel Soares Siqueira 2016-03-05 14:48 GMT-03:00 Pulkit Agarwal : > Hi, > > Is there a way to have the stable version of Julia as

[julia-users] Google Summer of Code

2016-03-05 Thread Kaivan Shah
Hi, I am interested in working on one of the ideas on the page - *Specialized call-site method caching. *I am a Junior at University of Texas at Austin and my major is Computer Science. I would rate my competency level in C++, Java and Haskell as intermediate, though I am foreign to Julia. But

Re: [julia-users] Re: [ANN] MathGL graphics library wrapper

2016-03-05 Thread lewis . hein
Quite possibly I could. I wasn't aware of Interpolations.jl when I built the splines library. Note: I have now released the splines package (https://github.com/LewisHein/Splines.jl) and updated the install instructions. So the MathGL package *should* install without problems now. Please let

[julia-users] Concurrently install two versions of Julia

2016-03-05 Thread Pulkit Agarwal
Hi, Is there a way to have the stable version of Julia as the global Julia (i.e. something which can be accessed by calling `julia` from the command line) and the development version of Julia (which will be stored in some other folder). Thanks, Pulkit

Re: [julia-users] Parametric types... types?!

2016-03-05 Thread Adrian Salceanu
sâmbătă, 5 martie 2016, 22:59:33 UTC+1, Milan Bouchet-Valat a scris: > > Le samedi 05 mars 2016 à 13:42 -0800, Adrian Salceanu a écrit : > > Gentleman, I stumbled onto this one in my code, and despite trying > > all the possible combinations I could think of, no dice. > > > > I have this

Re: [julia-users] Parametric types... types?!

2016-03-05 Thread Milan Bouchet-Valat
Le samedi 05 mars 2016 à 13:42 -0800, Adrian Salceanu a écrit : > Gentleman, I stumbled onto this one in my code, and despite trying > all the possible combinations I could think of, no dice.  > > I have this simple type hierarchy:  > > abstract Model > type Package <: Model > type Repo <: Model

[julia-users] Parametric types... types?!

2016-03-05 Thread Adrian Salceanu
Gentleman, I stumbled onto this one in my code, and despite trying all the possible combinations I could think of, no dice. I have this simple type hierarchy: abstract Model type Package <: Model type Repo <: Model The Model type is an ORM and it defines a series of methods that operate on

[julia-users] Re: Auto save/write Julia command history/log

2016-03-05 Thread Steven G. Johnson
Good question. I dug around, and it turns out that you can get the history as an array of strings via Base.active_repl.interface.modes[1].hist.history but it would be nice to have a documented way to get at this kind of information. A pull request with some feature along these lines would

[julia-users] Auto save/write Julia command history/log

2016-03-05 Thread James Chen
Hi, I am looking for replicate matlab command "diary" function in julia. diary Save Command Window text to file The ".julia_history" file is not friendly to read. Is there any quick way to save or write Julia command history/log during a certain period (for example, from start until exit)

[julia-users] OAuth 2.0 and Azure AD

2016-03-05 Thread Eric Forgy
Hi, I am trying to write a "trusted" application in Julia that can login silently to Azure AD using known credentials (username/password). I found some ways to do this with .NET libraries, but having trouble reverse engineering them to a point I can implement the same in Julia. It is probably

Re: [julia-users] Re: [ANN] MathGL graphics library wrapper

2016-03-05 Thread Tomas Lycken
Just guessing by the name, but it seems to me that you might be able to leverage Interpolations.jl to get rid of the dependency on Splines.jl. https://github.com/tlycken/Interpolations.jl // T