RE: [julia-users] Re: Hide and disable REPL

2016-11-15 Thread David Anthoff
I think most of them just have the code pasted into the REPL. That would work for us as well, but then we can’t do things like eval code in the context of a specific module. From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of cdm Sent: Monday, November 14,

RE: [julia-users] Re: Hide and disable REPL

2016-11-15 Thread David Anthoff
ent: Tuesday, November 15, 2016 5:29 AM To: julia-users <julia-users@googlegroups.com> Subject: Re: [julia-users] Re: Hide and disable REPL On Friday, November 4, 2016 at 1:28:16 PM UTC-4, David Anthoff wrote: The complete setup is slightly more complicated, but you can imagine j

RE: [julia-users] Re: Escaped $ in Strings has a strange behavior

2016-11-08 Thread David Anthoff
Ah, thanks for the answer, that does make sense. > -Original Message- > From: julia-users@googlegroups.com [mailto:julia- > us...@googlegroups.com] On Behalf Of Yichao Yu > Sent: Monday, November 7, 2016 8:02 PM > To: Julia Users > Subject: Re:

[julia-users] Escaped $ in Strings has a strange behavior

2016-11-07 Thread David Anthoff
I get julia> x = "I have \$100 in my account" "I have \$100 in my account" Shouldn't the backlash not appear in the output? If then do println(x) the backlash doesn't show, but I would have expected that it also doesn't show if I just eval the string. Am I missing something

RE: [julia-users] Getting parameter names from Method

2016-11-07 Thread David Anthoff
julia> mt.ms[2].lambda_template.nargs 4 On Friday, November 4, 2016 at 7:00:56 PM UTC-4, David Anthoff wrote: How do I get at this nargs field? On julia 0.5 Method doesn't seem to have a field with that name? > -Original Message- > From: julia...@googlegroups.com [mai

RE: [julia-users] Getting parameter names from Method

2016-11-04 Thread David Anthoff
ia Users <julia-users@googlegroups.com> > Subject: Re: [julia-users] Getting parameter names from Method > > On Fri, Nov 4, 2016 at 6:31 PM, David Anthoff <anth...@berkeley.edu> > wrote: > > Is there a way to get the names of the parameters of a method from a > &

[julia-users] Getting parameter names from Method

2016-11-04 Thread David Anthoff
Is there a way to get the names of the parameters of a method from a Method type instance on julia 0.5? Thanks, David

RE: [julia-users] Re: Hide and disable REPL

2016-11-04 Thread David Anthoff
approach for this. We are getting an integrated terminal ready in VS Code, and this is the one piece missing right now. Thanks, David On Thursday, June 23, 2016 at 5:00:22 PM UTC-7, David Anthoff wrote: Hi, is there a way to switch off the REPL and then on again, from a task?

RE: [julia-users] [ANN] DataStreams v0.1: Blog post + Package Release Notes

2016-10-28 Thread David Anthoff
Thanks, this is really super cool work! Let me also point out that Query.jl works great with DataStream sources and sinks. For example, let’s say you want to load some code from a SQLite database, apply some filtering and transformations and write the result out as a CSV file, you can do

RE: [julia-users] Re: VS code extension

2016-10-28 Thread David Anthoff
Yes, PRs to the main repo are welcome. It would be great if you could write up a short issue describing how this code goes about things. There are quite a number of strategies on how to achieve things in VS code (language server protocol vs everything in typescript vs mixed language solutions)

[julia-users] iterator trait

2016-10-19 Thread David Anthoff
Is there some way to find out whether a type can be iterated? I'm looking for something like `isiterator(IterType)`, that would return `false` from a default implementation and which any type that actually supports the standard iterator interface would return `true`. If we had that, we could

RE: [julia-users] Filtering DataFrame with a function

2016-10-13 Thread David Anthoff
on within DataFrames, filtering is a very common operation. Right now, I am considering converting the DataFrame to an array and looping over the rows. I wonder if there is a syntactic sugar for this loop. -Júlio 2016-10-12 17:48 GMT-07:00 David Anthoff < <mailto:ant...@berkeley.edu&

RE: [julia-users] Filtering DataFrame with a function

2016-10-12 Thread David Anthoff
Hi Julio, you can use the Query package for the first part. To filter a DataFrame using some arbitrary julia expression, use something like this: using DataFrames, Query, NamedTuples q = @from i in df begin @where @select i end You can use any julia code in . Say your

RE: [julia-users] Julia and the Tower of Babel

2016-10-07 Thread David Anthoff
I don’t have a solution, but I completely agree with the problem description. I guess one small step would be that package authors should follow the patterns in base, if there are any. From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Gabriel Gellner

RE: [julia-users] Is there a way to use values in a DataFrame directly in computation?

2016-10-05 Thread David Anthoff
think, much better than the current API; David Anthoff also has another approach that is substantially more powerful than the current API. The time between 0.5 and 0.6 may be a little chaotic in this regard, but I think the eventual results will be unequivocally worth the wait. -- John On

[julia-users] ANN: Query.jl

2016-09-26 Thread David Anthoff
Hi all, I just tagged Query.jl v0.1.0, and with that my little summer project should be ready for wider consumption. Query.jl hopes to be the equivalent of LINQ or dplyr for julia, eventually. It provides a unified way to query many different data sources, the most prominent being

[julia-users] RE: [julia-news] ANN: Julia v0.5.0 released!

2016-09-20 Thread David Anthoff
Great news, thanks to everyone who contributed to this great release! I’ve been using the release candidates for a couple of weeks, and 0.5 is a fantastic release. Best, David From: julia-n...@googlegroups.com [mailto:julia-n...@googlegroups.com] On Behalf Of Tony Kelman Sent: Tuesday,

RE: [julia-users] Re: Julia Users and First Customers

2016-09-13 Thread David Anthoff
’ work. Pre-1.0 releases will introduce breaking API changes between 0.x versions, which might require extra work on the users part when updating to new julia versions.” Or something like that. Cheers, David -- David Anthoff University of California, Berkeley <http://www.da

RE: [julia-users] Re: Conda.jl needs a new maintainer

2016-09-07 Thread David Anthoff
I believe AppVeyor always is bound to a personal account, i.e. I don’t think you can have the second type of URL. From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Steven G. Johnson Sent: Wednesday, September 7, 2016 1:49 PM To: julia-users

RE: [julia-users] Re: Pkg.update() does not pull latest version?

2016-09-06 Thread David Anthoff
Also see https://github.com/JuliaLang/julia/issues/17799 https://github.com/JuliaLang/julia/issues/17571 No solutions yet, but some ideas. From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Tim Wheeler Sent: Tuesday, September 6, 2016 9:36 AM To:

RE: [julia-users] Re: Rescuing abandoned package

2016-09-02 Thread David Anthoff
Also, your PR is 10 days old. People go on vacation longer than that, so I would just give it a little more time before you fork. It looks as if the author was forking things 11 days ago, so I think it is premature to conclude that he/she disappeared. From: julia-users@googlegroups.com

RE: [julia-users] Re: ANN: Documenter.jl 0.3

2016-08-22 Thread David Anthoff
Yes, this is really cool, much appreciated!! From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Christoph Ortner Sent: Saturday, August 20, 2016 6:56 PM To: julia-users Subject: [julia-users] Re: ANN: Documenter.jl 0.3 this

RE: [julia-users] Method definition overwritten

2016-08-16 Thread David Anthoff
I opened an issue for this: https://github.com/JuliaLang/julia/issues/18071 You can use anonymous functions as a workaround if you are julia 0.5 only (on julia 0.4 they would be slow). From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Andre Manoel

[julia-users] JuliaIO

2016-08-08 Thread David Anthoff
Who is maintaining JuliaIO packages? It would be great if someone with push rights could follow up on https://github.com/JuliaIO/GZip.jl/issues/57. Thanks, David -- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] Re: Announcing 0.5.0-rc0 and binaries available

2016-08-05 Thread David Anthoff
> There's a setting on both travis and appveyor where you can mark certain > entries in the build matrix as allowed failures. So they will run and you can > look at the logs, but failing won't cause a red status. This is good for > nightlies > or when a package doesn't entirely support 32 bit,

RE: [julia-users] Re: Announcing 0.5.0-rc0 and binaries available

2016-08-05 Thread David Anthoff
o nightly builds Why not? You can make it an allowed failure for now. On Friday, August 5, 2016 at 3:17:29 PM UTC-7, David Anthoff wrote: Well, I was hopping around opening PRs in packages that I don’t maintain and fixing 0.5 compat things in those packages. I’m not going to change their appveyor t

RE: [julia-users] Re: Announcing 0.5.0-rc0 and binaries available

2016-08-05 Thread David Anthoff
rc1+1 binaries. There are a lot of things pending for backporting to the release-0.5 branch, and I'd like to test them properly before making another tag. On Friday, August 5, 2016 at 2:26:47 PM UTC-7, David Anthoff wrote: Any chance you could just tag RC2 really soon, before the normal weekly sc

RE: [julia-users] Re: Announcing 0.5.0-rc0 and binaries available

2016-08-05 Thread David Anthoff
on demand though. On Thursday, August 4, 2016 at 10:02:54 AM UTC-7, David Anthoff wrote: Excellent! Going forward, what will I get from http://s3.amazonaws.com/julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe I assume not nightly builds from the release-0.5 branch, but always the l

RE: [julia-users] Re: Announcing 0.5.0-rc0 and binaries available

2016-08-04 Thread David Anthoff
Excellent! Going forward, what will I get from http://s3.amazonaws.com/julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe I assume not nightly builds from the release-0.5 branch, but always the latest RC, and then the final version? Is there a stable link that would get me the

[julia-users] CALL TO ACTION for package devs

2016-08-04 Thread David Anthoff
to clean things up. Thanks, David PS: Oh, and of course, also try to actually fix deprecation warnings, would be great if we could have a smooth transition in the package ecosystem from julia 0.4 to 0.5. -- David Anthoff University of California, Berkeley http://www.david

RE: [julia-users] Re: Tuples of Functions

2016-08-02 Thread David Anthoff
FunctionWrappers.jl is great, it just saved me! Any chance you might actually register it? It is super useful... And at least until something like that exists in Base, it would be great to be able to add it as a dependency. > -Original Message- > From: julia-users@googlegroups.com

RE: [julia-users] Re: Which package downgrades other packages?

2016-07-24 Thread David Anthoff
The deeper problem though is: what if I want to use all the currently installed packages at the same time, but don’t want the downgraded versions of them? Say I want to use package A and B, and both have a dependency on C, but A requires some older version of C, and that prevents me from

RE: [julia-users] Re: Which package downgrades other packages?

2016-07-24 Thread David Anthoff
https://github.com/JuliaLang/julia/issues/17571 Not the full thing you recommend, but on the other hand probably much easier to implement. From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Chris Rackauckas Sent: Saturday, July 23, 2016 7:38 AM To:

[julia-users] Which package downgrades other packages?

2016-07-22 Thread David Anthoff
, and that probably blocks everything. Is there some easy way for me to identify the package that is holding everything back? I did look through all the direct dependencies of MathProgBase, but none of them explains this. Cheers, David -- David Anthoff University of California, Berkeley http

RE: [julia-users] What does Base.box mean in code_warntype?

2016-07-21 Thread David Anthoff
> Subject: Re: [julia-users] What does Base.box mean in code_warntype? > > On Thu, Jul 21, 2016 at 5:33 PM, David Anthoff <anth...@berkeley.edu> > wrote: > > Thanks everyone for the answers! > > > > I guess Tim's email in particular means that the presence of

RE: [julia-users] What does Base.box mean in code_warntype?

2016-07-21 Thread David Anthoff
oid > } > > julia> @code_llvm foo() > > define i64 @julia_foo_67563() #0 { > top: > %thread_ptr = call i8* asm "movq %fs:0, $0", "=r"() #2 > ret i64 192 > } > > I think you'd be hard-pressed to complain about inefficiencies in foo(

RE: [julia-users] What does Base.box mean in code_warntype?

2016-07-19 Thread David Anthoff
Bump, does anyone have some info about this? Thanks, David From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of David Anthoff Sent: Friday, July 15, 2016 2:02 PM To: julia-users@googlegroups.com Subject: [julia-users] What does Base.box mean in code_warntype

[julia-users] What does Base.box mean in code_warntype?

2016-07-15 Thread David Anthoff
I'm looking for type instabilities in a function with code_warntype, and I'm seeing lots of ``(Base.box)`` terms there. What do these mean? And should I be worried, i.e. is this an indication that something slow might be going on? -- David Anthoff University of California, Berkeley

RE: [julia-users] ANN: steps towards 0.5.0 release [candidates]

2016-07-15 Thread David Anthoff
y for release, and that known bugs/regressions are still being worked on. Subsequent RCs may actually meet the definition of a release candidate. On Thursday, July 14, 2016 at 8:34:21 PM UTC+2, David Anthoff wrote: So what you intend to call "release candidate" is a feature co

RE: [julia-users] Re: How to install 0.4.5 on Ubuntu?

2016-07-15 Thread David Anthoff
In that case the reference to the PPA should probably be removed from http://julialang.org/downloads/platform.html and the bottom of the README.md. On the other hand, the juliareleases under staticfloat seems to be up-to-date... > -Original Message- > From: julia-users@googlegroups.com

RE: [julia-users] Re: How to install 0.4.5 on Ubuntu?

2016-07-15 Thread David Anthoff
I don’t think you need the julia-deps thing anymore, it seems all the dependencies are now part of juliareleases. At least last time I tried this I didn’t add julia-deps and things worked. If that is correct, someone should probably update the README/installation instructions on

RE: [julia-users] ANN: steps towards 0.5.0 release [candidates]

2016-07-14 Thread David Anthoff
gt; The RC is there so that people can start fixing packages against 0.5, without > having to worry about having to do it again once the release is out. We'll of > course continue cleaning up and working on performance regressions, but > we do need to work towards a release, so we can't block

RE: [julia-users] ANN: steps towards 0.5.0 release [candidates]

2016-07-14 Thread David Anthoff
indicates that someone from the core team made sure an issue doesn’t have to be fixed for 0.5.0, but no other scheduling decision has been made about that issue. From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of David Anthoff Sent: Thursday, July 14, 2016 10

RE: [julia-users] Pkg "threadsafe" or interprocess mutex package

2016-07-11 Thread David Anthoff
.com> Subject: Re: [julia-users] Pkg "threadsafe" or interprocess mutex package Does that work on Windows? I briefly tried earlier and it didn't seem to work. IIUC Windows doesn't support Unix-style named sockets. (it does have named pipes, but the semantics are a bit different)

RE: [julia-users] Pkg "threadsafe" or interprocess mutex package

2016-07-07 Thread David Anthoff
ed sockets. (it does have named pipes, but the semantics are a bit different) On Thu, Jul 7, 2016 at 1:07 PM, David Anthoff <anth...@berkeley.edu <mailto:anth...@berkeley.edu> > wrote: Ah, I had actually come up with the same solution that Amit suggested in #7176 and am using a

[julia-users] Disable precompile flag

2016-07-07 Thread David Anthoff
Hi, is there a command line option for julia 0.4.x to disable all precompile? I.e. I want a julia instance that doesn't precompile any modules it is using. On julia 0.5.x, would ``--precompiled=no`` achieve this? Thanks, David -- David Anthoff University of California, Berkeley

RE: [julia-users] Language Server Protocol ...

2016-07-07 Thread David Anthoff
I am, with no firm plans to do anything about it. I just added linting support to the julia VS Code extension. I thought about using the language server protocol, but in the end decided to just use the existing server mode in Lint.jl and communicate directly with that from the julia

[julia-users] VS Code linter - help wanted

2016-07-07 Thread David Anthoff
. Instructions on how to help are here https://github.com/JuliaEditorSupport/julia-vscode/issues/6. Best, David -- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] Pkg "threadsafe" or interprocess mutex package

2016-07-07 Thread David Anthoff
on *before* launching your analysis jobs). On Wed, Jul 6, 2016 at 5:09 PM, David Anthoff <anth...@berkeley.edu <mailto:anth...@berkeley.edu> > wrote: Hi, I have a script that is using some packages. The script is set up such that if the package it is trying to use is not

[julia-users] Pkg "threadsafe" or interprocess mutex package

2016-07-06 Thread David Anthoff
-- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] using in try catch block

2016-06-27 Thread David Anthoff
=== nothing ? false: true Dont do this since this will miss package in load path. Just eval a using expression. > catch > false > end > end > > > On Mon, Jun 27, 2016 at 12:12 PM, David Anthoff <anth...@berkeley.edu > <mailto:anth...@b

[julia-users] using in try catch block

2016-06-27 Thread David Anthoff
if the one I need is there, but given the slowness of the package manager, I would prefer to just try to load it first, and only if that fails attempt to ``Pkg.add``. Thanks, David -- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] Re: VS code extension

2016-06-23 Thread David Anthoff
-users@googlegroups.com] On Behalf Of David Anthoff Sent: Thursday, June 23, 2016 12:07 PM To: julia-users@googlegroups.com Subject: RE: [julia-users] Re: VS code extension Yes, VS Code does feel a lot snappier than Atom. I never had problem with installation or updating with Atom, though

[julia-users] Hide and disable REPL

2016-06-23 Thread David Anthoff
while I process that message, and then I want to switch it back on once I'm done processing that message. Can that be done somehow? Thanks, David -- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] Re: VS code extension

2016-06-23 Thread David Anthoff
addin integration so far. On Wednesday, June 22, 2016 at 10:36:58 PM UTC-4, Gabriel Gellner wrote: Are there benefits to using this over atom? Why are people moving over? Pros, Cons? On Tuesday, June 21, 2016 at 3:26:52 PM UTC-7, David Anthoff wrote: Hi all, I’ve created a new github repo for a V

RE: [julia-users] Re: VS code extension

2016-06-22 Thread David Anthoff
ferent and I've gotten used to Juno. I was able to get the same Julia.tmBundle to work in Visual Studio (not VS Code) and filed an issue here <https://github.com/JuliaLang/Julia.tmbundle/issues/10> . Thanks. Best regards, Eric On Thursday, June 23, 2016 at 12:18:28 AM UTC+8, David A

[julia-users] GraphViz.jl alternative on windows

2016-06-22 Thread David Anthoff
Hi, GraphViz.jl doesn't seem to work on Windows. Is there an alternative package for this sort of thing? I know about NetworkViz.jl and TikzGraphs.jl, but would appreciate pointers to any other package that I might have missed. Thanks, David -- David Anthoff University of California

RE: [julia-users] Re: VS code extension

2016-06-22 Thread David Anthoff
com> Subject: [julia-users] Re: VS code extension I would be happy to transfer https://github.com/oxinabox/julia-vim-completions to an Org. Though probably worth waiting til it is wrapped up into a form people who are not me can use. On Wednesday, 22 June 2016 06:26:52 UTC+8, David A

[julia-users] VS code extension

2016-06-21 Thread David Anthoff
be fantastic. Cheers, David -- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] Re: Julia 0.4.6 Windows 32bits not run

2016-06-21 Thread David Anthoff
I like to add a new-alias command to my Microsoft.PowerShell_profile.ps1 file that makes the “julia” command available in my powershell session. From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Tony Kelman Sent: Tuesday, June 21, 2016 12:46 PM To:

RE: [julia-users] Re: Git-maggedon

2016-06-21 Thread David Anthoff
shared between different Julia versions. On Tue, Jun 21, 2016 at 1:49 PM, David Anthoff <anth...@berkeley.edu <mailto:anth...@berkeley.edu> > wrote: You mean when I completely uninstalled a package and then add it again? It wouldn’t be needed if I just switch to a

RE: [julia-users] Re: Git-maggedon

2016-06-21 Thread David Anthoff
etched and installed before. On Tue, Jun 21, 2016 at 1:31 PM, David Anthoff <anth...@berkeley.edu <mailto:anth...@berkeley.edu> > wrote: I’ve never understood the various .cache folders that hang around, but if you want to be sure to start from a clean .julia package folder you might want

RE: [julia-users] Re: Git-maggedon

2016-06-21 Thread David Anthoff
I’ve never understood the various .cache folders that hang around, but if you want to be sure to start from a clean .julia package folder you might want to make sure all the .cache folders are also removed. In particular I guess the .julia/.cache folder. And then retry the whole Pkg.init()

RE: [julia-users] Re: parse.(Int64, x)

2016-06-16 Thread David Anthoff
users <julia...@googlegroups.com> > > > Subject: [julia-users] Re: parse.(Int64, x) > > > > > > I would be careful combining element-wise function application with > > > partial function application. Why not use map instead? > > > > > >

RE: [julia-users] Re: parse.(Int64, x)

2016-06-15 Thread David Anthoff
; Subject: [julia-users] Re: parse.(Int64, x) I would be careful combining element-wise function application with partial function application. Why not use map instead? On Wednesday, June 15, 2016 at 3:47:05 PM UTC-7, David Anthoff wrote: I just tried to use the new dot syntax for vectorising funct

[julia-users] parse.(Int64, x)

2016-06-15 Thread David Anthoff
a very nice and short notation. Thanks, David -- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] Re: ArrayFire.jl - GPU Programming in Julia

2016-06-10 Thread David Anthoff
https://github.com/JuliaComputing/ArrayFire.jl/issues/40 From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Gabriel Goh Sent: Friday, June 10, 2016 3:00 PM To: julia-users Subject: [julia-users] Re: ArrayFire.jl - GPU

[julia-users] paratext

2016-06-09 Thread David Anthoff
-- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] Re: Lack of an explicit return in Julia, heartache or happiness?

2016-05-24 Thread David Anthoff
+1. While I like it, I’m not sure it is worth the cost. If there is a decision to go ahead with it, it would be good to do so rather sooner than later, just to make that breakage a little less worse… From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of

RE: [julia-users] Lack of an explicit return in Julia, heartache or happiness?

2016-05-24 Thread David Anthoff
4 2016, David Anthoff wrote: > BUT, if this was to adopted, please do it soon :) These are the kind of > breaking code changes that should get fewer and fewer as 1.0 moves closer. > ​

Re: [julia-users] Lack of an explicit return in Julia, heartache or happiness?

2016-05-24 Thread David Anthoff
BUT, if this was to adopted, please do it soon :) These are the kind of breaking code changes that should get fewer and fewer as 1.0 moves closer. ​

RE: [julia-users] Lack of an explicit return in Julia, heartache or happiness?

2016-05-24 Thread David Anthoff
I like that idea. I think the current behavior is not a huge problem, but I often run into a situation where I code up a method that modifies something and shouldn’t return anything, and then I forget to add a blank return statement at the end (*) and the function returns just something

RE: [julia-users] Re: Julia large project example.

2016-05-12 Thread David Anthoff
Do a search for “encapsulation” in this google group and you’ll find quite a number of discussions on some of the design philosophies around this topic, many from the julia devs. From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Ford Ox Sent: Thursday,

RE: [julia-users] Why does julia use END for block end?

2016-05-06 Thread David Anthoff
See also https://github.com/JuliaLang/julia/issues/6823 From: stefan.karpin...@gmail.com [mailto:stefan.karpin...@gmail.com] On Behalf Of Stefan Karpinski Sent: Friday, May 6, 2016 1:10 PM To: Julia Users Subject: Re: [julia-users] Why does julia use END for

RE: [julia-users] Cloning private package with 0.5

2016-04-25 Thread David Anthoff
[mailto:julia-users@googlegroups.com] On Behalf Of David Anthoff Sent: Monday, April 25, 2016 11:16 AM To: julia-users@googlegroups.com Subject: RE: [julia-users] Cloning private package with 0.5 That doesn’t work for bitbucket repos, though… From: karbar...@gmail.com <mailto:karbar...@gmail.

RE: [julia-users] Cloning private package with 0.5

2016-04-25 Thread David Anthoff
That doesn’t work for bitbucket repos, though… From: karbar...@gmail.com [mailto:karbar...@gmail.com] On Behalf Of Jacob Quinn Sent: Sunday, April 24, 2016 8:49 PM To: julia-users@googlegroups.com Subject: Re: [julia-users] Cloning private package with 0.5 Note that it's currently possible

RE: [julia-users] Cloning private package with 0.5

2016-04-25 Thread David Anthoff
1#18607931 [3] https://groups.google.com/d/msg/julia-users/GEwX49wwmdo/CihXC62yCAAJ [4] https://github.com/JuliaLang/julia/blob/c2042326cc5d68db01c0b2e0d12a15f48b03563a/deps/Makefile#L2094 On Fri, Apr 22, 2016 at 8:30 PM, David Anthoff <anth...@berkeley.edu <mailto:anth...@berke

RE: [julia-users] Cloning private package with 0.5

2016-04-22 Thread David Anthoff
Yes, I would hope that this is a release blocker issue, given that private package repos have been supported forever. I also have a very large number of private repos. So right now there seems no way to use them on 0.5 from Windows... I also would prefer to use SSH keys for authentication. If

RE: [julia-users] Cloning private package with 0.5

2016-04-22 Thread David Anthoff
Oh, and I'm on Windows. From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of David Anthoff Sent: Friday, April 22, 2016 3:35 PM To: julia-users@googlegroups.com Subject: [julia-users] Cloning private package with 0.5 I'm trying to clone a package

[julia-users] Cloning private package with 0.5

2016-04-22 Thread David Anthoff
p properly). Thanks, David -- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] JuliaCon 2016: Keynote speakers

2016-04-08 Thread David Anthoff
Wow, that is a FANTASTIC lineup, well done!! Cheers, David From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Andreas Noack Sent: Friday, April 8, 2016 6:43 PM To: julia-users Subject: [julia-users] JuliaCon 2016: Keynote

RE: [julia-users] Pkg.update() - Version of julia and JuliaParser do not match

2016-04-01 Thread David Anthoff
You can’t be on master for JuliaParser if you use julia 0.4.x, Keno just sent around a message on julia-dev that JuliaParser master is now julia 0.5 only. But if you do Pkg.free(“JuliaParser”) things should just work, in that case the package manager should just give you the last version of

RE: [julia-users] Announcing JuDE: autocomplete and jump to definition support for Atom

2016-03-29 Thread David Anthoff
isible implementation details from the user's POV. On Monday, March 28, 2016 at 1:27:01 PM UTC-4, David Anthoff wrote: I think the user experience for almost all people would be much easier if they install Atom, then add one package for julia support and everything works. Having multipl

RE: [julia-users] Announcing JuDE: autocomplete and jump to definition support for Atom

2016-03-28 Thread David Anthoff
I think the user experience for almost all people would be much easier if they install Atom, then add one package for julia support and everything works. Having multiple Atom packages (julia-language, ink, julia-client, latex-completion and Jude right now) makes things confusing for most

RE: [julia-users] Determine the module where a type is declared

2016-03-25 Thread David Anthoff
termine the module where a type is declared > > On Fri, Mar 25, 2016 at 3:00 PM, David Anthoff <anth...@berkeley.edu> > wrote: > > Hi, > > > > > > > > I’m looking for a function that gives me back the module where a given > > type is declared

[julia-users] Determine the module where a type is declared

2016-03-25 Thread David Anthoff
of function_module, but for types instead of functions. Does such a function exist? Thanks, David -- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] Announcing JuDE: autocomplete and jump to definition support for Atom

2016-03-24 Thread David Anthoff
Very nice! Any chance that this could just become part of julia-client at some point? From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of James Dang Sent: Sunday, March 20, 2016 11:58 AM To: julia-users Subject:

RE: [julia-users] Re: What to read to understand finishing v0.5?

2016-03-09 Thread David Anthoff
At some point in the summer there was communication from the core team that v0.5 would be a short release cycle that was all about the arraypocalypse theme. My sense is that this original plan is off the table, and that (as John said) there is no new time plan to replace the original one, or at

RE: [julia-users] load a Julia dataframe from Microsoft SQL Server table

2016-02-05 Thread David Anthoff
https://msdn.microsoft.com/en-us/library/ms716246%28v=vs.85%29.aspx?f=255 =-2147217396 suggests that if you call the version without the A or W suffix you get the ANSI version. From:

RE: [julia-users] Juno IDE

2016-02-02 Thread David Anthoff
Ha, excellent, I had completely missed that plotting support for Gadfly is there already! I really appreciate how nicely the whole Juno thing is coming along, thanks to all the contributors of that fantastic effort! From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com]

[julia-users] method to determine return type of a method

2016-02-02 Thread David Anthoff
with an Int64 and Float64. The return type could of course be a union of many types if the function is not typestable. Thanks, David -- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] Re: Julia Benchmarks Feedback

2016-01-27 Thread David Anthoff
+1 These benchmarks seem to test the performance of specific algorithms, implemented in different languages. Including start up or compile time doesn’t make any sense to me in that case. From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Stefan

[julia-users] RTVS

2016-01-25 Thread David Anthoff
support as well! Cheers, David -- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] Moore foundation grant.

2015-12-31 Thread David Anthoff
You mean Julia Computing is working on an Eclipse solution? How does that match with the efforts around Atom to create an IDE that are also ongoing? It would be nice to see efforts and resources concentrated on a single IDE solution, in the hope of getting something that is really polished some

RE: [julia-users] Re: DataFrame melt question

2015-12-16 Thread David Anthoff
split(open("/tmp/file.csv") do f chomp(readline(f)) ; end,",")[collect(values(df.colindex.lookup))])) now aside from using `h` in other ways, you can do: melteddf[:Region] = [h[r] for r in melteddf[:Region]] to fix the `melteddf`. On Wednesday, December 16, 2015 at 2

[julia-users] DataFrame melt question

2015-12-15 Thread David Anthoff
n the melt operation in some way? Thanks, David -- David Anthoff University of California, Berkeley http://www.david-anthoff.com

RE: [julia-users] Re: ANN: DSGE.jl

2015-12-03 Thread David Anthoff
I don’t think that the package should be registered as DSGE, though. DSGE is a type of model, and there are lots and lots of those around. The repo from the NY Fed is their specific DSGE model, it is one example of a DSGE model. I think a package that in general provided methods to solve DSGE

Re: [julia-users] ANN: DSGE.jl

2015-12-03 Thread David Anthoff
This is fantastic! Cheers, David From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Spencer Lyon Sent: Thursday, December 3, 2015 6:06 AM To: julia-users Subject: [julia-users] ANN: DSGE.jl The Federal Reserve bank of New

RE: [julia-users] Best way to return many arrays from function

2015-11-17 Thread David Anthoff
Have a look at the NamedTuples package. From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Jason McConochie Sent: Tuesday, November 17, 2015 1:26 PM To: julia-users Subject: [julia-users] Best way to return many arrays from

RE: [julia-users] Re: Read XLS files with Julia

2015-11-14 Thread David Anthoff
Try https://github.com/davidanthoff/ExcelReaders.jl. Best, David From: julia-users@googlegroups.com [mailto:julia-users@googlegroups.com] On Behalf Of Joshua Duncan Sent: Saturday, November 14, 2015 8:51 PM To: julia-users Subject: Re: [julia-users] Re: Read XLS

  1   2   >