[Interest] QWebEngine and MP4

2015-11-04 Thread Roland Hughes
switches, or do you just need to add a few switches to the application when compiling? Thanks, -- Roland Hughes, President Logikal Solutions http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com

Re: [Interest] QtWebProcess and QtWebPluginProcess

2015-12-17 Thread Roland Hughes
not the WebKit have built as well? Thanks On 12/17/2015 1:31 PM, Konstantin Tokarev wrote: 17.12.2015, 21:58, "Roland Hughes" <rol...@logikalsolutions.com>: All, I'm on Ubuntu 15.10 64-bit. Pulled down the 5.4.2 source tar and built Qt for a project. What I see is that neither

[Interest] QtWebProcess and QtWebPluginProcess

2015-12-17 Thread Roland Hughes
of these _or_ a utility which allows an RPATH to be injected into an existing binary. Thanks, -- Roland Hughes, President Logikal Solutions http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com

[Interest] functioning link to 5.4.2 source tar?

2015-12-15 Thread Roland Hughes
of existing scripts, etc. Thanks, -- Roland Hughes, President Logikal Solutions http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com ___ Interest mailing list Interest@qt

[Interest] QWebEngine MP4 and version 5.5.1

2015-12-14 Thread Roland Hughes
All, Did the licensing issue for MP4 get resolved with Qt 5.5 or do I still need to build from source? Thanks, Roland -- Roland Hughes, President Logikal Solutions http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com

[Interest] Calendar widget style sheet

2016-03-24 Thread Roland Hughes
All, I have a touch screen project with a 600 pixel width and 1024 height. On one of the pages we need a calendar widget but we need it to look good and be "finger sized". I poked around quite a bit and found a starter stylesheet on this thread:

Re: [Interest] QObject::connect returns true, but the, connection does not work

2017-02-25 Thread Roland Hughes
t method so it runs from within the exec() loop, i.e. replace the QTimer line with console.run(); Your connect call will return true but the signal will never trigger the slot because execution is occurring outside of an event loop. -- Roland Hughes, President Logikal Solutions http://www.

Re: [Interest] QObject::connect returns true, but the, connection does not work

2017-02-25 Thread Roland Hughes
February 2017 at 06:09, Roland Hughes <rol...@logikalsolutions.com> wrote: Stupid question, but is this a console app? I'm asking because this happens with console apps. It can happen with any app, but console apps tend to have the problem most often. Here is what I mean: #include #include #i

Re: [Interest] Qt 5.6LTS vs 5.7+

2016-09-05 Thread Roland Hughes
an undue burden on the processor. This is especially true in the battery operated world and one of the main reasons we now have "wall huggers." On 09/04/2016 06:22 PM, Sze Howe Koh wrote: On 5 September 2016 at 02:13, Roland Hughes <rol...@logikalsolutions.com> wrote: I just

Re: [Interest] script invoked with QProcess cannot open files, with spaces in path

2016-09-01 Thread Roland Hughes
rough old projects for what I had to do. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com http://www.interestingauthor

Re: [Interest] Qt 5.6LTS vs 5.7+

2016-09-04 Thread Roland Hughes
6) Company buyer gets screwed. http://legalnews.com/oakland/1430462/ " During Steve Ballmer's tenure, MSFT bought 149 companies, and 121 of them have vaporized into the ether." -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyoune

Re: [Interest] Qt 5.6LTS vs 5.7+

2016-09-04 Thread Roland Hughes
them keeping the processor pegged. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com http://www.interestingauthors.com/blog __

Re: [Interest] script invoked with QProcess cannot open files, with spaces in path

2016-08-30 Thread Roland Hughes
om "helping you out." -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com http://www.interestingauthors.com/blog __

Re: [Interest] script invoked with QProcess cannot open files, with spaces in path

2016-08-30 Thread Roland Hughes
Please provide the entire QProcess() call. On 08/30/2016 06:53 PM, Larry Martell wrote: On Tue, Aug 30, 2016 at 7:38 PM, Roland Hughes <rol...@logikalsolutions.com> wrote: I am invoking a python script with QProcess. I have found that if the script tries to open a file that has

Re: [Interest] Qt, running as root (sudo/setuid), DBus and OS X

2016-09-18 Thread Roland Hughes
>> Hi, Is it possible to use Qt-based applications on OS X that run with elevated privileges (= as root), in general and if they need to connect to the user's session dbus? --- Typically you need to look at QApplication documentation. There is something you have to set in that class BEFORE

[Interest] .remove() feature?

2016-09-23 Thread Roland Hughes
Currently working at a site which is using 5.4 commercial under Ubuntu 14.04 to develop an embedded system. Spent days tracking down a bug in the current project code base. There was an ugly for() loop which was processing a QHash (which really should have been a queue). They were calling

Re: [Interest] What you don't like about Qt

2016-09-23 Thread Roland Hughes
Tried replying to this earlier, but didn't see the content come up so will toss in my 0.0003 cents on this thread. >>- C++ is difficult, Qt lacks quality bindings for mainstream languages - moc (on build systems that don't automate this step) - FUD around licensing Well, Digia has itself to

Re: [Interest] What you don't like about Qt

2016-09-23 Thread Roland Hughes
On 09/23/2016 06:18 AM, Konstantin Tokarev wrote: 23.09.2016, 13:50, "Roland Hughes" <rol...@logikalsolutions.com>: [snip] What I don't like right now about Qt is the 3-legged arthritic dog running in deep snow called QML. It was a bastardized concept when first conceived and

Re: [Interest] .remove() feature?

2016-09-23 Thread Roland Hughes
It was a C++ for (int x=0;...) loop, but we are compiling for C++ 11 On 09/23/2016 07:44 AM, Lorenz Haas wrote: Hi, Has anybody else seen this behavior in 5.x? Is removeAt() really queueing a low priority event so the removeAt() doesn't actually happen until the event queue is processed

Re: [Interest] .remove() feature?

2016-09-23 Thread Roland Hughes
Lorenz, Good call. I went back through the code. Was actually a QList<> not a QHash, but . . . your mention of shared was the light which shined on the monster. The pointer held in the QList was a pointer to an object declared with CANBUSSHARED_EXPORT. Thank you very much! I hate mystery

Re: [Interest] What you don't like about Qt

2016-09-23 Thread Roland Hughes
On 09/23/2016 10:13 AM, Jason H wrote: What I don't like right now about Qt is the 3-legged arthritic dog running in deep snow called QML. It was a bastardized concept when first conceived and it hasn't gotten any better. Nokia started that concept which explains why they are non-existent in

Re: [Interest] What don't you like about Qt?

2016-10-18 Thread Roland Hughes
/reality-check/2013/11/healthcare-agile.aspx Contrary to your opinion, Healthcare.gov is a shining example of the faster-cheaper-splat that is Agile. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http

Re: [Interest] What you don't like about Qt

2016-10-14 Thread Roland Hughes
those who wanted to try it on a Raspberry Pi using libraries not in the current Pi repos were welcome to run their own tests posting the results here. The resounding silence means they achieved the same sucky outcome. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.them

Re: [Interest] What don't you like about Qt?

2016-10-18 Thread Roland Hughes
On 10/18/2016 07:00 AM, interest-requ...@qt-project.org wrote: I'm not even on board for TDD, because tests don't help you against interlocking-issues, data races, etc. and are only of limited use against many others like dangling pointers, subsequent memory corruption, UI freezing, etc. Tests

Re: [Interest] What don't you like about Qt?

2016-10-18 Thread Roland Hughes
On 10/18/2016 07:00 AM, interest-requ...@qt-project.org wrote: It's hard to know when you're really done because you don't really have metrics to tell you--or the customer--when the project/is/ done. Per the 1985 accounting rules change, if you have a definition of "done" you cannot book

Re: [Interest] What don't you like about Qt?

2016-11-15 Thread Roland Hughes
s assigned, if I can. If I couldn't within one day, I won't be able to until there's more information posted. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblo

Re: [Interest] What don't you like about Qt?

2016-10-15 Thread Roland Hughes
developer selects the bugs they're going to fix. There's common procedure. My procedure is: I'll fix everything that is assigned to me, the moment it's assigned, if I can. If I couldn't within one day, I won't be able to until there's more information posted. -- Roland Hughes, President Logikal

Re: [Interest] Interest Digest, Vol 61, Issue 5

2016-10-15 Thread Roland Hughes
methodology, not this week's marketing hype. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com http://www.interestingauthors.com/blog

Re: [Interest] Interest Digest, Vol 61, Issue 4

2016-10-15 Thread Roland Hughes
. They were told "Yes, we know it is a bug. It has been a bug for N years. Pay us XX-thousand and we will fix it, otherwise hope one of the OpenSource developers pulls it off the bug heap. I kid you not. This is why so many commercial clients post here. -- Roland Hughes, President Logikal Solu

Re: [Interest] What don't you like about Qt?

2016-10-15 Thread Roland Hughes
On 09/28/2016 12:25 PM, interest-requ...@qt-project.org wrote: Don't you have unit tests? Yes. But which is better, to be forced to use an inherently error-prone language (JavaScript) and rely on unit tests to clean up the mess, or to use a robust modern language (C++) and have less bugs to

Re: [Interest] What don't you like about Qt?

2016-10-15 Thread Roland Hughes
f there is a management team in place measuring "performance" by how many stories get completed each sprint instead of just how much better the end product is. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infinite

Re: [Interest] Interest Digest, Vol 66, Issue 19

2017-03-29 Thread Roland Hughes
On 03/29/2017 02:18 AM, interest-requ...@qt-project.org wrote: Hi, On Tuesday 28 March 2017 13:23:01 Roland Hughes wrote: I have to ask, why is it such a sin to have a stand alone program with a null modem cable and mini-tester as a testing tool. I have been working with serial ports off

Re: [Interest] Is there a way to simulate serial port data?

2017-03-28 Thread Roland Hughes
he problem. Or perhaps you have already done that and I'm just rambling... -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com http://www.interestingauthor

Re: [Interest] [PAID] Seeking a C++/Qt Tutor/Mentor

2017-03-31 Thread Roland Hughes
and retrieval of large volumes of data. There are many other books on the basic philosophy behind Qt, etc. but most examples are just simple snippets which aren't useful or rewarding. On 03/31/2017 10:49 AM, interest-requ...@qt-project.org wrote: [PAID] Seeking a C++/Qt Tutor/Mentor -- Roland Hughes

Re: [Interest] QPrintPreviewWidget

2017-04-04 Thread Roland Hughes
- The sub-event loop monitors the printing process with a thread safe communication mechanism, like signals and slots. - When the printing completes, close the dialog. - Exit your sub-event loop. Thanks, Dan Allen. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.th

Re: [Interest] QPrintPreviewWidget

2017-04-04 Thread Roland Hughes
changed with the introduction of QPA (Qt Platform Abstraction) I do not know. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com http://www.inte

Re: [Interest] Getting a QImage from an QML Image, protocol, agnostic QImage?

2017-04-12 Thread Roland Hughes
tps://blah/file;) and have it load synchronously. Is there any way to do that? Use a QnetworkAccessManager to fetch the file first. Cheers, Sean -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmit

Re: [Interest] Getting a QImage from an QML Image, protocol, agnostic QImage?

2017-04-12 Thread Roland Hughes
+ 70 years for works published after 1978. On 04/12/2017 08:41 AM, Jean-Michaël Celerier wrote: On Wed, Apr 12, 2017 at 3:02 PM, Roland Hughes <rol...@logikalsolutions.com <mailto:rol...@logikalsolutions.com>> wrote: Google wantonly engages in the world's large

Re: [Interest] Getting a QImage from an QML Image, protocol, agnostic QImage?

2017-04-12 Thread Roland Hughes
, 2017 at 12:43 PM, Roland Hughes <rol...@logikalsolutions.com <mailto:rol...@logikalsolutions.com>> wrote: it is illegal to copy the image without the express written consent of the copyright holder. Good to know that most image thumbnails hosted on google's server

Re: [Interest] Getting a QImage from an QML Image, protocol, agnostic QImage?

2017-04-12 Thread Roland Hughes
. *Sent:* Wednesday, April 12, 2017 at 10:37 AM *From:* "Roland Hughes" <rol...@logikalsolutions.com> *To:* "Jean-Michaël Celerier" <jeanmichael.celer...@gmail.com> *Cc:* interest <interest@qt-project.org> *Subject:* Re: [Interest] Getting a QImage from an

Re: [Interest] Interest Digest, Vol 67, Issue 12

2017-04-12 Thread Roland Hughes
On 04/12/2017 10:50 AM, interest-requ...@qt-project.org wrote: [Disclaimer: IANAL] On Wed, April 12, 2017 12:43, Roland Hughes wrote: Only problem with "fetch the file first" is it would be illegal in most cases. Your sentence translates to: "It is illegal to view any fi

Re: [Interest] Getting a QImage from an QML Image, protocol, , agnostic QImage?

2017-04-14 Thread Roland Hughes
specifically for this purpose. I responded to a technical query. Sean -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com http://www.interestingauthors.com/blog

Re: [Interest] Getting a QImage from an QML Image, protocol, , agnostic QImage?

2017-04-16 Thread Roland Hughes
r 14, 2017 at 08:56:18AM -0500, Roland Hughes wrote: And some 12 year old kid will do a Web search, find the interest archive messages then do exactly that. Once they release their app into the wild they will be in all kinds of legal trouble. That is why I chimed in. These posts live forever at variou

Re: [Interest] Getting a QImage from an QML Image, protocol, , agnostic QImage?

2017-04-16 Thread Roland Hughes
-giants-prosecuted-for-aiding-copyright-infringement/ On 04/16/2017 09:35 AM, Ch'Gans wrote: Stop spreading FUD! We don't need your biased opinion on the matter, go home and take your pills! Chris -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com

Re: [Interest] Getting a QImage from an QML Image, protocol, , agnostic QImage?

2017-04-16 Thread Roland Hughes
Follow your own advice and enjoy the communal prison showers. If you wish to purchase a copy of the novel which got those reviews you can find it here: http://www.barnesandnoble.com/w/john-smith-roland-hughes/1102176003?ean=9780982358061 https://www.goodreads.com/review/show/718180938

Re: [Interest] Quantum Computing and Qt

2017-07-09 Thread Roland Hughes
-- Jean-Michaël Celerier http://www.jcelerier.name On Sat, Jul 8, 2017 at 10:08 PM, Roland Hughes <rol...@logikalsolutions.com <mailto:rol...@logikalsolutions.com>> wrote: >Qt company belive that qml is the best thing that happened to qt. So many years have passed and we

Re: [Interest] Set QTableWidgetItem checkbox when clicking, anywhere on QTableWidget's row

2017-07-08 Thread Roland Hughes
Sean, >>> P.S. Oh, and get rid of the QTableWidget. Use QTableView instead. >> What does that do for me in this case? > Nothing to solve this particular issue. Its just a pet-peeve of mine. >> My table is very simple, it's basically a read-only table EXCEPT for allowing > the user to

Re: [Interest] Interest Digest, Vol 69, Issue 11

2017-07-08 Thread Roland Hughes
device. The image file standards we have today will simply go away, replaced by Quantum data fed into an image rendering library on a Quantum core. Sorry, I guess I need to mindlessly vent. This happens when I decide to read email I've been putting off instead of writing another book when I kno

Re: [Interest] Interest Digest, Vol 68, Issue 13

2017-05-17 Thread Roland Hughes
. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com http://www.interestingauthors.com/blog http://lesedi.us/ http://onedollarcontentstore.com

Re: [Interest] Interest Digest, Vol 68, Issue 13

2017-05-17 Thread Roland Hughes
Wow! Thanks! The KDE crowd used to be so adamant about keeping "their" process. Maybe they finally stepped into the light? Roland On 05/17/2017 03:06 PM, Jean-Michaël Celerier wrote: On Wed, May 17, 2017 at 9:30 PM, Roland Hughes <rol...@logikalsolutions.co

Re: [Interest] Interest Digest, Vol 68, Issue 13

2017-05-17 Thread Roland Hughes
on't you just build QtCreator for source then? You can then compile it against the Qt version you have on your system. Sounds like way less hassle than trying to fiddle with getting other IDEs to run. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow

Re: [Interest] Interest Digest, Vol 68, Issue 13

2017-05-17 Thread Roland Hughes
u...@qt-project.org wrote: Why don't you just build QtCreator for source then? You can then compile it against the Qt version you have on your system. Sounds like way less hassle than trying to fiddle with getting other IDEs to run. -- Roland Hughes, President Logikal

[Interest] Eclipse plug-in status - QtCreator on KDE Neon

2017-05-15 Thread Roland Hughes
the library issue is an actual problem, but, I've been told wrong before. Thanks, -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com http

[Interest] qmake and IDEs

2017-05-20 Thread Roland Hughes
great deal. Most stand alone embedded designs need to send email reports on status and reading summaries. Many systems which should be standalone end up having to also develop a central server which receives data packets, chews on them, then spits out a report creating unnecessary maintenance a

Re: [Interest] Interest Digest, Vol 68, Issue 13

2017-05-19 Thread Roland Hughes
bi-5-5-1 Depends: qtdeclarative-abi-5-5-0 Recommends: qtcreator-doc but it is not going to be installed Recommends: qtxmlpatterns5-dev-tools E: Unable to correct problems, you have held broken packages. -- Roland Hughes, President Logikal Solutions (630)

Re: [Interest] Interest Digest, Vol 72, Issue 5

2017-09-14 Thread Roland Hughes
: https://www.ics.com/blog/configuring-qt-creator-raspberry-pi which is just a tweak of this: https://wiki.qt.io/RaspberryPi2EGLFS Obviously the library path isn't going through the Raspbian sysroot tree first. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http

Re: [Interest] PostgreSQL cross compile for Pi

2017-10-07 Thread Roland Hughes
Instead, that calendar year is spent digging through the mountain of "bugs" as either real or "new feature" then assigning all of the real bugs to be swept up. Why? Because today's low priority not fun to fix bug is tomorrow's Equifax headline. Just my 0

Re: [Interest] Interest Digest, Vol 73, Issue 14

2017-10-08 Thread Roland Hughes
and IoT. Ubuntu had to punt on their phone http://www.techradar.com/news/canonicals-dream-for-an-ubuntu-phone-is-dead so they have their own fork of Fuchsia (sp?) Unit was a grotesque desktop so I'm kind of glad it all failed. Now if Neon could fully divorce itself from Ubuntu... --

Re: [Interest] PostgreSQL cross compile for Pi

2017-10-10 Thread Roland Hughes
copy the information in the bug report itself. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com http://www.interestingauthors.com/blog http://lesedi.us/

Re: [Interest] PostgreSQL cross compile for Pi

2017-10-10 Thread Roland Hughes
fo, and the issue report will be re-opened.? By the same token, if you never reply, then it stays closed and off their radar. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http:/

Re: [Interest] move methods in QList

2017-10-10 Thread Roland Hughes
ew one over it, as in Big itemToAppend; QList list; list.append(Big()); list.last() = std::move(itemToAppend); Are there any plans to add the move methods to QList etc? -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedt

Re: [Interest] PostgreSQL cross compile for Pi

2017-10-10 Thread Roland Hughes
it. On 10/10/2017 01:45 AM, interest-requ...@qt-project.org wrote: While we are on the topic, here is the lovely response. Be reasonable. Just linking to your rambling blog in the bug report is not reasonable. Hamish -- Roland Hughes, President Logikal Solutions (630)-205-1593 htt

Re: [Interest] QT for Asus Tinker

2017-10-10 Thread Roland Hughes
to no information on doing such a thing. I?ve found this QT blog but sadly I get 200+ errors when trying to build a very simple program when following this post. http://blog.qt.io/blog/2017/05/03/qt-git-tinkerboard-wayland/#comments I hope someone can assist me. -- Roland Hughes, President Logikal

Re: [Interest] PostgreSQL cross compile for Pi

2017-10-09 Thread Roland Hughes
box. And they marked it RESOLVED! That's the kind of support people find s endearing. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com

[Interest] PostgreSQL cross compile for Pi

2017-10-05 Thread Roland Hughes
: 1) how do I file a bug report on this because the wiki page is definitely wrong? 2) has _anybody_ found a work around to cross compile PostgreSQL support for the Pi, which hopefully doesn't involve loop mounting an image? Thanks, -- Roland Hughes, President Logikal Solutions (630)-205-1593

Re: [Interest] PostgreSQL cross compile for Pi

2017-10-05 Thread Roland Hughes
The link is in the blog post. Actually, both links are. Look for "official Qt Wiki article" On 10/05/2017 05:11 PM, Irfan Omair wrote: You can always log a bug here: https://bugreports.qt.io/ What page of wiki you are referring here is wrong? On Thu, Oct 5, 2017 at 3:03 PM, Rol

Re: [Interest] Interest Digest, Vol 73, Issue 18

2017-10-17 Thread Roland Hughes
extermination would not have helped as many people nor would it have provided additional content for "The Phallus of AGILE and Other Ruminations" hopefully being released sometime next year. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.co

Re: [Interest] QT for Asus Tinker

2017-10-11 Thread Roland Hughes
mistakes. My plan if successful is to create another blog with 100% clear and understandable build instructions to help others, so they won’t have to waste day’s trying to figure this find. Thank you for your time. Kind regards Ben W On Tue, Oct 10, 2017 at 4:52 PM, Roland Hughes <rol.

[Interest] Cross compiling for Pi with PostgreSQL

2017-09-26 Thread Roland Hughes
of the lib. Has anybody found the work around for this? Preferably a work around which does not require loop mounting the SD image. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com

Re: [Interest] PostgreSQL cross compile for Pi

2017-10-07 Thread Roland Hughes
rfan Omair wrote: You can always log a bug here: https://bugreports.qt.io/ What page of wiki you are referring here is wrong? On Thu, Oct 5, 2017 at 3:03 PM, Roland Hughes <rol...@logikalsolutions.com <mailto:rol...@logikalsolutions.com>> wrote: All, Rather than pollute the lis

Re: [Interest] Interest Digest, Vol 73, Issue 17

2017-10-11 Thread Roland Hughes
at the Qt Contributor Summit, we concluded we will most likely keep our containers in Qt 6 and they'll continue to be implicitly shared. We may provide a non-implicitly-shared alternative (with all the Qt look and feel, possibly even exception-safe for QVector, QMap and QHash). -- Roland Hughes

Re: [Interest] move methods in QList

2017-10-11 Thread Roland Hughes
such a big API break. But, when should such a change be made, if not during a major version bump? There's nothing more major than that. The only more careful approach I can think of is deprecation over a full major cycle, only to be changed in the next. Or are we going to live with a Qt API that interfac

Re: [Interest] Interest Digest, Vol 73, Issue 18

2017-10-17 Thread Roland Hughes
 points 50x over now. If you don’t like how Qt handles things, fork the code base and maintain it yourself. Seriously this has been going on for over a week now. Take a step back and have drink. 諾 Sent from my iPad On Oct 17, 2017, at 5:17 PM, Roland Hughes <rol...@logikalsolutions.

Re: [Interest] Interest Digest Wiki instructions for PI cross compile do not work for PostgreSQL support

2017-10-17 Thread Roland Hughes
On 10/17/2017 12:54 PM, interest-requ...@qt-project.org wrote: On ter?a-feira, 17 de outubro de 2017 08:11:13 PDT Roland Hughes wrote: The bug tracking system is under our control - it will not just disappear (from our perspective). Oh yes it will! Speaking as someone who has heard

Re: [Interest] Interest Digest Wiki instructions for PI cross compile do not work for PostgreSQL support

2017-10-19 Thread Roland Hughes
/2017 04:38 AM, Vlad Stelmahovsky wrote: QML is not that resource hogging as JS. dont use JS and you'll be fine On Tue, Oct 17, 2017 at 8:11 PM, Roland Hughes <rol...@logikalsolutions.com <mailto:rol...@logikalsolutions.com>> wrote: On 10/17/2017 12:54 PM, interest-requ...@qt

Re: [Interest] Need advice to add tests to an existing, project

2017-11-07 Thread Roland Hughes
code. Oh! Even better example. If you are unfortunate enough to own an inkjet printer, when you first power it on it does all of that nozzle flushing, head sliding, etc. That same "test" code gets executed when you choose menu options to clean/align print heads, etc. -- Roland Hughe

Re: [Interest] Need advice to add tests to an existing, project

2017-11-09 Thread Roland Hughes
On 11/08/2017 04:02 AM, Christian Gagneraud wrote: On 8 November 2017 at 13:35, Roland Hughes <rol...@logikalsolutions.com> wrote: Back in the days of the VAX 11/750 all of that microcode (what it was called I know VACOS (VAcuum Cleaner Operated System) but I do not know VAX,

[Interest] Qt Licensing and OpenSource

2017-12-11 Thread Roland Hughes
re vendors to recoup damages and possibly make some money. If all of the weak security parts are OpenSource, they can't be successfully sued. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-boo

Re: [Interest] Interest Digest, Vol 75, Issue 6

2017-12-11 Thread Roland Hughes
wrong leading to random and inexplicable crashes because you are actually linking against/using many of the 32-bit linux host headers and libraries instead of the PI. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http

Re: [Interest] Interest Digest, Vol 75, Issue 5

2017-12-09 Thread Roland Hughes
awyers you have asking it. You, me and everyone else will all have sales continue telling us even "Hello World" needs a commercial license. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposur

Re: [Interest] What's happening w/Qt3D?

2017-10-25 Thread Roland Hughes
to invest and develop Qt 3D but we have temporarily withdrawn our contributions until senior management at The Qt Company makes it clear that they genuinely wish to treat the Qt Project as an Open Governance project and that external contributions are welcomed and valued. -- Roland Hughes, President

Re: [Interest] Interest Digest Wiki instructions for PI cross compile do not work for PostgreSQL support

2017-10-21 Thread Roland Hughes
--- Jean-Michaël Celerier http://www.jcelerier.name On Fri, Oct 20, 2017 at 3:38 PM, Roland Hughes <rol...@logikalsolutions.com <mailto:rol...@logikalsolutions.com>> wrote: On 10/20/2017 08:25 AM, Vlad Stelmahovsky wrote: is someone pushes someone to use QML as

[Interest] Status: Incomplete

2017-10-22 Thread Roland Hughes
Nothing to do with Qt but given our previous given out previous conversation on how OpenSource bugs are left to rot then mass exterminated, this one just showed up in my inbox this morning. It's noteworthy because, yet again, to avoid working on something the maintainer flagged the report

Re: [Interest] Status: Incomplete

2017-10-22 Thread Roland Hughes
that the issue was assumed to not be reproducible anymore, and no one reported to the contrary. What more do you want? On Oct 22, 2017, at 11:35 AM, Roland Hughes <rol...@logikalsolutions.com> wrote: Nothing to do with Qt but given our previous given out previous conversation on how Open

[Interest] Non-blocking console reads

2018-05-05 Thread Roland Hughes
overrun any OS level input buffer. http://www.coldestgame.com/site/blog/cybertron/non-blocking-reading-stdin-c Btw, the existing database examples (&()*&)*(ed me off so much I wrote this book: http://www.theminimumyouneedtoknow.com/qt_book.html -- Roland Hughes, President Logikal Soluti

Re: [Interest] Interest Digest, Vol 80, Issue 9

2018-05-14 Thread Roland Hughes
On 05/14/2018 10:54 AM, Thiago Macieira wrote: On Saturday, 12 May 2018 07:18:03 PDT Roland Hughes wrote: On 05/12/2018 08:57 AM,interest-requ...@qt-project.org wrote: On Thursday, 10 May 2018 23:11:04 PDT alexander golks wrote: i think it "silently" breaks here without set

Re: [Interest] Interest Digest, Vol 80, Issue 9

2018-05-14 Thread Roland Hughes
On 05/14/2018 10:54 AM, interest-requ...@qt-project.org wrote: On Saturday, 12 May 2018 07:11:57 PDT Roland Hughes wrote: On 05/12/2018 08:57 AM, Thiago Macieira wrote: I'm claiming that Qt is run 1% of the time in big-endian mode. Explain to me why the 99% should perform the byte swap

Re: [Interest] QFile::write(const QByteArray&) does not, write, all data?

2018-05-14 Thread Roland Hughes
On 05/14/2018 10:54 AM, Richard Moore wrote: On Sat, 12 May 2018 at 15:45, Roland Hughes <rol...@logikalsolutions.com> wrote: Any time a write comes up short, it is an error. ?That is simply incorrect. It might not be how you would like it to behave, however it is the norm that short

Re: [Interest] Interest Digest, Vol 80, Issue 9

2018-05-14 Thread Roland Hughes
/ClefOS7.1%20Disc1 search for qt. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.johnsmith-book.com http://www.logikalblog.com http://www.interestingauthors.com/blog http://lesedi.us/ http

Re: [Interest] Interest Digest, Vol 80, Issue 7

2018-05-12 Thread Roland Hughes
Sorry for the delayed response. Been helping with planting season back on the family farm. On 05/07/2018 11:39 PM, Thiago Macieira wrote: On s?bado, 5 de maio de 2018 07:58:45 PDT Roland Hughes wrote: Data centers have been moving to ARM (the new absolute bottom) and Z-machines for quite

Re: [Interest] QFile::write(const QByteArray&) does not write, all data?

2018-05-12 Thread Roland Hughes
rrent code base his only method of determining a human intervention needed error happened is to continually retry writing until the error occurs in the first chunk. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposur

Re: [Interest] QFile::write(const QByteArray&) does not write, all data?

2018-05-12 Thread Roland Hughes
the input array size, which is the behaviour i see. It's not an error to not write everything. It most certainly should be. Either everything got written or there was a failure, device buffer full, whatever. The only reason to not write everything is some error happened. -- Roland Hughes,

Re: [Interest] Interest Digest, Vol 80, Issue 8

2018-05-12 Thread Roland Hughes
: https://doc.qt.io/archives/qt-4.8/qstring.html#isEmpty Changing default behavior based on a single viewpoint, while a time honored AGILE tradition, is always a bad thing. Then again, AGILE is always a bad thing. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.th

Re: [Interest] Interest Digest, Vol 79, Issue 21

2018-05-08 Thread Roland Hughes
On 05/07/2018 11:39 PM, Thiago Macieira wrote: On s?bado, 5 de maio de 2018 07:58:45 PDT Roland Hughes wrote: While all of this is an entertaining conversation, it doesn't change the fact that big-endian ___must___ remain the default binary format for the class in question. That class

Re: [Interest] Interest Digest, Vol 79, Issue 21

2018-05-05 Thread Roland Hughes
On 05/01/2018 06:06 PM, interest-requ...@qt-project.org wrote: On Tuesday, 1 May 2018 07:38:52 PDT Roland Hughes wrote: For decades the x86 defined the absolute bottom of the IT universe. When you didn't care about it you put it on x86. You do realise that 99% of the Cloud today is x86, right

Re: [Interest] QFile::write(const QByteArray&) does not write, all data?

2018-05-17 Thread Roland Hughes
. This deviates from standard C/C++ where you can. Before opening an output file you need to test for its existence then delete it. You can also play games with opening the file for I/O and truncating, but, success is file system dependent on that one. -- Roland Hughes, President Logikal Solutions (630)-205

Re: [Interest] QFile::write(const QByteArray&) does not, , write, all data?

2018-05-16 Thread Roland Hughes
read/write was not an error because they ran smack dab into the middle of the overlap. SOME I/O might have happened and that value had to be returned. ___Hopefully___ the developer can find the real error on their own. Qt is written in C++ so it can do better. -- Roland Hughes, President Logikal Solu

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-21 Thread Roland Hughes
were taken to require painting only occur in the GUI. That would be a much more beneficial conversation for the Qt community as a whole, especially since we can paint off-screen then blit it on. It would seem that off-screen painting should be threadable. -- Roland Hughes, President Logikal Solutions

Re: [Interest] QFile::write(const QByteArray&) does not, write, all data?

2018-05-18 Thread Roland Hughes
lation logic for any displayed text. Given the way the event loop operates, you cannot be certain what got executed in what order. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.theminimumyouneedtoknow.com http://www.infiniteexposure.net http://www.

Re: [Interest] Interest Digest, Vol 79, Issue 21

2018-04-30 Thread Roland Hughes
big-endian machines for serious throughput. The simple act of gathering sensor data and packetizing it can easily exceed the throw-away chip's capability so adding more workload to it cannot really be considered. -- Roland Hughes, President Logikal Solutions (630)-205-1593 http://www.

  1   2   3   4   5   >