Re: [Interest] proper (silent) exit in response to SIGHUP?

2018-10-15 Thread Kai Koehne
> -Original Message- > From: Interest On Behalf > Of Jean-Michaël Celerier > Sent: Sunday, October 14, 2018 7:53 AM > To: René J.V. > Cc: interest > Subject: Re: [Interest] proper (silent) exit in response to SIGHUP? > > > Add too many .qch files to a > collection and at some point the

Re: [Interest] Qt 5.12 Official packages for MinGW 64 bit?

2018-10-15 Thread Kai Koehne
> -Original Message- > [...] > I don't know how the coin stuff works, but does this mean that there will be > official MinGW 64 bit packages for 5.12? > > If so, will WebEngine be included? No. Qt WebEngine currently supports only MSVC 2017. Kai __

Re: [Interest] Qt 5.12 Official packages for MinGW 64 bit?

2018-10-15 Thread Carel Combrink
Hi, If you install using the online installer you already get the option to install the pre-built packages of Qt 5.12 Beta built witn MinGW 7.3 x64 and under tools you can install this version of MinGW 7.3 as well. I have no idea about WebEngine but perhaps download the beta and see. Regards, Car

[Interest] [Qt3D] How to choose between GPU and IGP ?

2018-10-15 Thread Saif Suleiman
Hi, I have 1060gtx but my qt3d app is using the intel integrated gpu, sadly i could not find a way to tell qt3d to use 1060gtx. Thanks in advance ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] hmac sha256

2018-10-15 Thread Hamish Moffatt
On 16/10/18 08:16, Jérôme Godbout wrote: > Hi, > I'm trying to find the C++ equivalent of this python: > /import hashlib/ > /import hmac/ > /hmac.new(bytearray(m_api_secret, 'utf-8'), bytearray(payload, > 'utf-8'), hashlib.sha256).hexdigest()/ > / > / > Or my Javascript equivalent (both give the s

Re: [Interest] hmac sha256

2018-10-15 Thread Henry Skoglund
On 2018-10-15 23:16, Jérôme Godbout wrote: Hi, I'm trying to find the C++ equivalent of this python: /import hashlib/ /import hmac/ /hmac.new(bytearray(m_api_secret, 'utf-8'), bytearray(payload, 'utf-8'), hashlib.sha256).hexdigest()/ / / Or my Javascript equivalent (both give the same results):

[Interest] hmac sha256

2018-10-15 Thread Jérôme Godbout
Hi, I'm trying to find the C++ equivalent of this python: *import hashlib* *import hmac* *hmac.new(bytearray(m_api_secret, 'utf-8'), bytearray(payload, 'utf-8'), hashlib.sha256).hexdigest()* Or my Javascript equivalent (both give the same results): crypto.createHmac("sha256", m_api_secret).update(

[Interest] Understanding QQmlListModel::sync()

2018-10-15 Thread Ian Trick
I've been looking at QQmlListModel::sync() (found in qtdeclarative/src/qml/types/qqmllistmodel.cpp) (looking at v5.11) for quite some time and haven't been able to figure out how it can work. I'm still trying to come up with a terse explanation of how I think the function behaves and a circumstance

Re: [Interest] proper (silent) exit in response to SIGHUP?

2018-10-15 Thread Konstantin Tokarev
15.10.2018, 19:22, "René J. V. Bertin" : > Thiago Macieira wrote: > >>  I wasn't joking. The Unix systems often copy neat features from one another >>  when one innovates ahead of the others. I have a pending patch for Linux >>  copying OpenBSD's O_NOSIGPIPE option but I have yet to finish it. >

Re: [Interest] proper (silent) exit in response to SIGHUP?

2018-10-15 Thread Thiago Macieira
On Monday, 15 October 2018 09:22:27 PDT René J. V. Bertin wrote: > Thiago Macieira wrote: > > I wasn't joking. The Unix systems often copy neat features from one > > another > > when one innovates ahead of the others. I have a pending patch for Linux > > copying OpenBSD's O_NOSIGPIPE option but I h

Re: [Interest] proper (silent) exit in response to SIGHUP?

2018-10-15 Thread Sérgio Martins via Interest
On 2018-10-15 16:59, Thiago Macieira wrote: On Monday, 15 October 2018 06:34:55 PDT René J. V. Bertin wrote: Thiago Macieira wrote: > Do you realise that the cost of starting a thread is much higher than the > cost of a pipe? Not to mention that using QThread will create a pipe > anyway, so you'

Re: [Interest] proper (silent) exit in response to SIGHUP?

2018-10-15 Thread René J . V . Bertin
Thiago Macieira wrote: > I wasn't joking. The Unix systems often copy neat features from one another > when one innovates ahead of the others. I have a pending patch for Linux > copying OpenBSD's O_NOSIGPIPE option but I have yet to finish it. So you meant "ask to incorporate this here implementa

[Interest] Qt 5.12 Official packages for MinGW 64 bit?

2018-10-15 Thread Andy
In coin/platform_configs/qt5.txt: qtci-windows-10-x86_64-10 Mingw73 Packaging DebugAndRelease Release OpenGLDynamic DisableTests I don't know how the coin stuff works, but does this mean that there will be official MinGW 64 bit packages for 5.12? If so, will WebEngine be incl

Re: [Interest] proper (silent) exit in response to SIGHUP?

2018-10-15 Thread Thiago Macieira
On Monday, 15 October 2018 06:34:55 PDT René J. V. Bertin wrote: > Thiago Macieira wrote: > > You were complaining that pipes are too costly. Ok, so get your OS vendor > > to create an equivalent to Linux's eventfd() > > Sure. Dear Apple (FreeBSD), please implement eventfd() (and a bunch of other

Re: [Interest] proper (silent) exit in response to SIGHUP?

2018-10-15 Thread René J . V . Bertin
Thiago Macieira wrote: > You were complaining that pipes are too costly. Ok, so get your OS vendor to > create an equivalent to Linux's eventfd() Sure. Dear Apple (FreeBSD), please implement eventfd() (and a bunch of other Linux features because they make Linux so much better). > Do you realise