[julia-users] Re: julia-i18n: Translators and reviewer needed!

2016-10-13 Thread rafzalan
> > Ismael : "I have enabled that option, please let me know if it's fixed > now, so I can put the Persian translations back on production, thanks! " until this moment I cant see any change in Persian layout, both on live preview or staging site, using different browsers.

[julia-users] Re: julia-i18n: Translators and reviewer needed!

2016-10-13 Thread rafzalan
Very good news, even though I don't have enough permission to check the option, but waiting for Persian to move on. On Friday, October 14, 2016 at 3:46:27 AM UTC+3:30, Ismael Venegas Castelló wrote: > > Ihave finally got word from Transifex, it seems this feature wasnt > supported in Live, but

[julia-users] Re: julia-i18n: Translators and reviewer needed!

2016-10-05 Thread rafzalan
Thanks for removing the translation. On Thursday, October 6, 2016 at 12:23:44 AM UTC+3:30, rafz...@gmail.com wrote: > > Thanks for your quick response. > I see that the Persian translation is already published before the > resolving the RTL issue. IMO it is better to unpublish it until the issue

[julia-users] Re: julia-i18n: Translators and reviewer needed!

2016-10-05 Thread rafzalan
Thanks for your quick response. I see that the Persian translation is already published before the resolving the RTL issue. IMO it is better to unpublish it until the issue is cleared. On Wednesday, October 5, 2016 at 6:22:41 PM UTC+3:30, Ismael Venegas Castelló wrote: > > Hello! I've asked

[julia-users] Re: julia-i18n: Translators and reviewer needed!

2016-10-05 Thread rafzalan
Hi, I have recently started a new translation for Persian, and almost done the home page. Here one little problem exists, as you can see on http://julialanges.github.io/ the Persian page layout direction is LTR (like the other langs) while it must be RTL. any suggestion? thanks

[julia-users] What is the situation

2016-04-20 Thread rafzalan
Hi, JuMP I am wondering if its possible to use JuMP, AML to call equation solvers like Sundials. What is the situation? is it possible now? or is it on the road-map? Thanks

[julia-users] Re: Better alternative to find all permutations?

2015-11-19 Thread rafzalan
sorry for typo error in *permutations*.

[julia-users] Re: Better alternative to find all permutations?

2015-11-19 Thread rafzalan
Hi, I already implemented *lexicographic premutations generation* algorithm based on a *Donald Knuth* work. #lexicographic premutations generation, By Donald Knuth function lpremutations{T}(a::T) b=Vector{T}() sort!(a) n=length(a) while(true) push!(b,copy(a)) j=n-1 while(

Re: [julia-users] Julia object Destructor or module Unload routine

2015-10-22 Thread rafzalan
Interesting, although, I don't know how to do such hooking ... On Thursday, October 22, 2015 at 6:21:05 PM UTC+3:30, Stefan Karpinski wrote: > > There's also atexit: > > atexit(f) > > Register a zero-argument function f() to be called at process exit. > atexit() hooks > are called in last

Re: [julia-users] Julia object Destructor or module Unload routine

2015-10-22 Thread rafzalan
Thanks for response, I just forget `finalizer`, also thank for notify me the GC behavior.

[julia-users] Julia object Destructor or module Unload routine

2015-10-22 Thread rafzalan
Hi Julia-Users I know that Julia has a Garbage Collector that is being aware of unusable memory pointers. [ref ] I think some other languages e.g. Java also do it automatically, and Java programmers rarely need to do