Lukas Schneiderbauer

Results 11 comments of Lukas Schneiderbauer

@Flamefire Yes, one can reduce the resolution. Apart from the usual inconveniencies (e.g. cursor moving way too fast then) that works. I suppose the graphics is not rendered "better" on...

Is there any way to derive the "font size/cap size" from the "bounding box size" and vice versa in Gosu? At the moment I'm using Gosu to draw simple texts...

I see, I will have an eye on this. :) Thanks for the response and your seemingly continuous effort developing Gosu!

It seems to me that HANA DB doesn't allow the VALUES clause in a SELECT statement. An alternative possibility, not very elegant, but which executes without errors: ```SQL SELECT CAST("a"...

Is it standard though? The only references I find are in combination with the INSERT INTO statement (in www.w3schools.com, tbh I don't know if the websites covers the official SQL...

@mgirlich I just tested it, and it executes fine! ```R copy_inline(con, tibble(a=c(1,1,1,2,3,4), b=c(2,3,3,4,5,3))) %>% show_query() ``` ```SQL SELECT CAST("a" AS DOUBLE) AS "a", CAST("b" AS DOUBLE) AS "b" FROM (...

just tried with linux 4.9.16; similar error in ./os/linux/rt_linux.c:1420:11: error: 'struct net_device' has no member named 'wireless_handlers' pNetDev->wireless_handlers = pDevOpHook->iw_handler; (up to typos, since copied by hand)

I fixed that error by enabling CONFIG_WIRELESS_EXT in the kernel. You cannot enable it directly though, you have to enable some wireless module which pulls CONFIG_WIRELESS_EXT in. The module compiles...

Sorry to interrupt. I experienced some problems, when adding signal-callbacks after starting the dbus-main-loop. The added callbacks simply don't get called in this case. But this szenario is often required....

> Any difference with cabal-install 3.8.1.0 or 3.10.1.0? I can test as soon gentoo offers those packages (afaik they are working on it). > Do you think you can provide...