[julia-users] Re: IDE for Julia

2016-03-24 Thread Jerzy Głowacki
Agree. Rodeo looks very promising and it is open source. I would be 
grateful if anybody ported it to Julia.


On Friday, October 30, 2015 at 4:03:52 PM UTC+1, Tomas Mikoviny wrote:
>
> maybe someone with more javascript insight can get inspired by this python 
> IDE one day :)
>
> https://github.com/yhat/rodeo
>
>

[julia-users] Re: the state of GUI toolkits?

2016-03-19 Thread Jerzy Głowacki
As for Gtk+, we have done an ECG signal analysis app 
 in Julia using Gtk.jl and it 
worked really well for us.


Re: [julia-users] Dictionary vs sparse vector/matrix

2015-06-16 Thread Jerzy Głowacki
No, in my case the elements will always be appended at the end with
incremented key.

E.g.: 1=aaa, 3=bbb, 9=ccc, 27=ddd, ...


Re: [julia-users] Dictionary vs sparse vector/matrix

2015-06-16 Thread Jerzy Głowacki
One last thing: isn't it even better to convert a dictionary to a vector of 
tuples (Int64,String) using collect(Dict)?


[julia-users] Dictionary vs sparse vector/matrix

2015-06-15 Thread Jerzy Głowacki
I have a big Dict{Int64, String}. Is it better to make it a sparse 
vector/matrix using sparsevec(Dict)? What is the difference between them? 
Which one will be iterated faster?


[julia-users] Reading in a config file. What is the best practise in Julia ?

2015-01-13 Thread Jerzy Głowacki
Use https://github.com/JuliaLang/IniFile.jl or 
https://github.com/dotslashb/ConfParser.jl

Re: [julia-users] Re: Can Julia be the next web scripting language?

2014-12-18 Thread Jerzy Głowacki
I suppose Julia would be the successor to JavaScript if it was converted by 
Emscripten and run by asm.js. But for now there seems to be an Enscripten bug 
which invalidates Julia IR code.

Re: [julia-users] Rust and Julia - Together? Advice

2014-12-18 Thread Jerzy Głowacki
For this purpose, I would deploy a web service in Julia, using e.g. 
http://juliawebstack.org/#HttpServer