Uwe Fechner

Results 232 comments of Uwe Fechner

The following code is about 10 times as fast for this toy example: ```julia @time using DataFrames, DelimitedFiles const input=""" time,ping 1,25.7 2,31.8 """ function read_csv(inp) @time data, header =...

This cannot be so difficult... What is missing? Do we want that this works in the way described by dpsanders? I think that would be very useful for beginners to...

Is this a duplicate, or what is different: https://github.com/JuliaLang/Pkg.jl/issues/776 ?

The following code works: ```julia using Gtk.ShortNames, GtkObservables # define the default values OPTION_A = false OPTION_B = false finished = false cb1 = checkbox(OPTION_A, label="Option A") cb2 = checkbox(OPTION_B,...

Thanks for pointing to the file gui.jl ! Nevertheless more examples would be useful.

This function seams to work: G_.position(win, 800, 400) So again, this is mainly a documentation issue.

So I guess the only issue is lack of documentation?

Running: "LIBGL_DEBUG=verbose julia" gives the following output: ``` julia> using GLFW; GLFW.Window() libGL: screen 0 does not appear to be DRI2 capable libGL: MESA-LOADER: dlopen(/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so) libGL: Can't open configuration file...

Some more background info: https://forums.developer.nvidia.com/t/multiple-glx-client-libraries-in-the-nvidia-linux-driver-installer-package/41308 But I still don't understand WHICH .so files are actually needed for GLFW.jl to work.

Can I change the width of column already?