Re: Pressure sensors

2019-01-04 Thread Ignatios Souvatzis
hi, On Wed, Jan 02, 2019 at 06:31:22PM -0800, John Nemeth wrote: > I'm pretty sure that millibars and hPa is metric as well. Yes, both are syntactic sugar for the SI unit. 1 Pa = 1 N / m² 1 bar = 10⁵ Pa. (1 bar happens to sound nice to old-schoolers, because it is slightly more than 1 % o

Re: Lua shared object asymmetry loading Xlib.

2019-01-04 Thread Valery Ushakov
On Wed, Dec 26, 2018 at 09:44:53 -0900, Phil Rulon wrote: > msd$ /usr/bin/lua -v test.lua > Lua 5.3.3 Copyright (C) 1994-2016 Lua.org, PUC-Rio > table > function > [1] Segmentation fault (core dumped) /usr/bin/lua -v test.lua > > msd$ gdb -q /usr/bin/lua lua.core > Reading symbols from /usr/bi

Re: Lua shared object asymmetry loading Xlib.

2019-01-04 Thread Christos Zoulas
In article <20190104182924.gd23...@pony.stderr.spb.ru>, Valery Ushakov wrote: > >When atexit handlers are run when main returns the dlclose has already >yanked the function that was registered to run. With explicit >os.exit() the exit happens while the libs are still loaded, so it >works ok. I