Pietro Vertechi
Pietro Vertechi
Hi, thanks for looking into this. I actually do not believe this has to do with `effectiveDevicePixelRatio` as it used to work fine on my Mac retina screen (which has...
Thanks, I'll try that in my use case.
Probably not the right place to report this, but I'm having issues running your example on Ubuntu: ```julia julia> Pkg.status("GR") - GR 0.25.0 julia> ENV["GRDIR"]="" "" julia> Pkg.build("GR") julia> GR.version()...
Yes, I have an ubuntu machine (which has this issue) and a mac (on which I can run your QML+GR example). Thanks for looking into this!
I installed QML libraries on my ubuntu machine using this command: `sudo apt-get -y install cmake cmake-data qtdeclarative5-dev qml-module-qtquick-controls qml-module-qtquick-dialogs qml-module-qt-labs-folderlistmodel qml-module-qt-labs-settings qmlscene qt5-default`
Update: I've noticed that, at least on Gtk, the GR plot saved as svg displays correctly as a GtkImage. I was wondering whether it's possible to change the `JuliaDisplay` type...
I've made WIP PRs for PooledArrays and WeakRefStrings, which are enough to remove both as StructrArrays dependency in exchange for DataAPI. I was wondering: shouldn't placeholders for the Tables interface...
This is actually a deeper issue as it wouldn't work with `cols`. `cols` in turn could use some rethinking as using it leads to non-type stable code: it may be...
I think that I should simply allow the syntax your using (actually, I think it should have to be `Date.Date(:DATETIME)` without the dot as it is a element-wise operation). JuliaDB...
The "change to colwise scope" is a very nice solution as I don't have to double the notation. ```julia @where iris :SepalLength > $(mean(:SepalLength)) ``` makes it clear that I'm...