Jonathan Bieler
Jonathan Bieler
Hey @NHDaly , I'm trying to make this work with Gtk but I'm getting stuck. I've done something a bit similar to your SDL example. I first manually copy all...
Typically when using `Geom.errorbar` you end up doing something like : ``` y = y, ymin = y .- ysd, ymax = y .+ ysd ``` Which is a bit...
Sometimes I'd like my axis to be labelled 1, 10, 100 instead of 10^0, 10^1, 10^2. I thought the format option should do that (`Scale.x_log10(format=:plain)`) but apparently that's not the...
It's the first time I do this, I hope I didn't messed up somewhere. I didn't added short names because there's already some clipboard methods in Base, but maybe it's...
I came across this strange crash in v1.6 (works just fine in prior versions). The example is a bit long but I think all these ingredients are necessary to trigger...
This solves a couple of issues: - It makes it a bit easier to create keyboard shortcuts and to check them against events. - It checks correctly shortcuts, taking into...
I'm trying to display Julia output in a GtkWidget but it's kind of slow and feels sluggish. I put together this minimal example (coming from IJulia): ``` function send_stream(rd::IO, name::AbstractString)...
I'm trying to use `@BinDeps.install` (which as I understand creates the deps.jl file that you can include in your package) but there's no mention of the functionality in the README....
I was trying to do a join query and came across this bug, I'm doing someting like this: ```julia on = SQLOn( SQLColumn("comments.user_id"), SQLColumn("users.id")) j = Vector{SQLJoin}([ SQLJoin(Users.User, columns =...
I'm working on BWA bindings (https://github.com/jonathanBieler/BurrowsWheelerAligner.jl) and the code is printing a lot of stuff. As I understand the verbosity level is set at compile time here, so there's no...