Re: [julia-users] Re: converting binary string into integer

2016-11-06 Thread Alberto Barradas
Thank you guys! This looks like a cleaner and more graceful solution!

Re: [julia-users] Re: Immutable type modification of SparseMatrixCSC

2016-11-06 Thread Kristoffer Carlsson
On Sunday, November 6, 2016 at 2:25:27 AM UTC-8, Milan Bouchet-Valat wrote: > > For reference, here's the long discussion that happened before making > that change: > https://github.com/JuliaLang/julia/pull/16371 > > Indeed I think Tony was right that this has undesirable consequences in > te

Re: [julia-users] Re: converting binary string into integer

2016-11-06 Thread David P. Sanders
El domingo, 6 de noviembre de 2016, 15:18:03 (UTC-5), Alberto Barradas escribió: > > Hi guys, > Now that `parseint()` got removed for version 0.5, Is `parse()` the only > way to do this? > How could I parse binary into a BigInt? More specifically, I want to see > the integer number of the are

Re: [julia-users] Re: converting binary string into integer

2016-11-06 Thread Milan Bouchet-Valat
Le dimanche 06 novembre 2016 à 10:13 -0800, Alberto Barradas a écrit : > Hi guys, > Now that `parseint()` got removed for version 0.5, Is `parse()` the > only way to do this? >  How could I parse binary into a BigInt? More specifically, I want to > see the integer number of the arecibo message. (73

Re: [julia-users] Re: Apparently I need to rebuild Julia?

2016-11-06 Thread Ludger Solbach
I had this problem installing Julia on 'Bash on Ubuntu' in Windows 10 after copy/pasting the whole set of lines in one go according to the Ubuntu instructions in http://julialang.org/downloads/platform.html. When I went to /etc/apt/sources.list.d/, I noticed that julia-deps was still missing, s

Re: [julia-users] Re: converting binary string into integer

2016-11-06 Thread Alberto Barradas
Hi guys, Now that `parseint()` got removed for version 0.5, Is `parse()` the only way to do this? How could I parse binary into a BigInt? More specifically, I want to see the integer number of the arecibo message. (73x23 so 1679 binary digits into a big int)

Re: [julia-users] Re: [Announcement] Moving to Discourse (Statement of Intent)

2016-11-06 Thread Stefan Karpinski
- Selectively subscribe to certain topics/categories of discussion and not others. - Selectively see threads that reach certain quality/interest thresholds. - Take links directly from where one reads messages (I really dislike the Google groups interface, so I use Gmail for reading messages, bu

[julia-users] Re: Equivalent to the Python's None value for the function's default parameter value

2016-11-06 Thread Fengyang Wang
There is no need to do this in Julia; you can simply initialize in the default argument. function f(x; y=[x, x, x]) @show x y end then julia> f(1) x = 1 y = [1,1,1] because in Julia, unlike Python, the initialization is done at calltime instead of function definition time. On Friday, No

Re: [julia-users] How can I run this "raijin", fx auto trading program?

2016-11-06 Thread pepepepe25250
what's terminal? when I do [julia> include("raijin.jl"), the effort was under. WARNING: Method definition (::Type{Graphs.KeyVertex})(Int64, #<:Any) in module Graphs at C:¥Users¥user¥.julia¥v0.5¥Graphs¥src¥common.jl:12 overwritten at C:¥Users¥user¥.julia¥v0.5¥Graphs¥src¥common.jl:16. WARNING: Me

[julia-users] Reactive signals across processes?

2016-11-06 Thread Tsur Herman
Any idea on how to implement Reactive signals across processes? I know there is the concept of channels to interact across different parallel processes , I wonder if there exist an implementation that uses Signals instead.

Re: [julia-users] Re: [Announcement] Moving to Discourse (Statement of Intent)

2016-11-06 Thread Simon Byrne
Personally, I find the following an improvement over google groups: - code blocks (copying and pasting code into the google groups interface always tends to look bad) - the ability to edit posts - the ability to move threads to different categories (i.e. posts to julia-dev which should have gone

Re: [julia-users] Re: [Announcement] Moving to Discourse (Statement of Intent)

2016-11-06 Thread Milan Bouchet-Valat
Le dimanche 06 novembre 2016 à 01:49 -0800, Andreas Lobinger a écrit : > Hello colleague, > > > The Julia community has been growing rapidly over the last few > > years and discussions are happening at many different places: there > > are several Google Groups (julia-users, julia-dev, ...), IRC, >

Re: [julia-users] Re: Immutable type modification of SparseMatrixCSC

2016-11-06 Thread Milan Bouchet-Valat
For reference, here's the long discussion that happened before making that change: https://github.com/JuliaLang/julia/pull/16371 Indeed I think Tony was right that this has undesirable consequences in terms of usability. Not being able to use the same in-place API for dense and sparse matrices is

Re: [julia-users] How can I run this "raijin", fx auto trading program?

2016-11-06 Thread Tamas Papp
You need to open a terminal. However, given that the repo is 5 months old, and there has been a new Julia release, and Mamba.jl was also updated in the meantime, the code may need some work (impossible to say without running it), which would require learning a bit about programming. On Sun, Nov 0

[julia-users] Re: [Announcement] Moving to Discourse (Statement of Intent)

2016-11-06 Thread Andreas Lobinger
Hello colleague, On Tuesday, November 1, 2016 at 2:43:50 PM UTC+1, Valentin Churavy wrote: > > The Julia community has been growing rapidly over the last few years and > discussions are happening at many different places: there are several > Google Groups (julia-users, julia-dev, ...), IRC, Gitt

Re: [julia-users] How can I run this "raijin", fx auto trading program?

2016-11-06 Thread ぺぺぺぺ
Thank you, but I couldn't run it. I'm using windows 10. 2016/11/06 18:07 "Kaj Wiik" : > You can run it either from command line: > julia raijin.jl > or from the command line interpreter (REPL): > julia > julia> include("rajin.jl") > > It looks like that the script does not take any arguments (my

Re: [julia-users] How can I run this "raijin", fx auto trading program?

2016-11-06 Thread Kaj Wiik
You can run it either from command line: julia raijin.jl or from the command line interpreter (REPL): julia julia> include("rajin.jl") It looks like that the script does not take any arguments (my Japanese is bit rusty however...). Good luck, Kaj On Sunday, November 6, 2016 at 8:31:32 AM UTC+2,