Posts by tmm88 • 43 points
18 posts
-
0
votes2
answers76
viewsA: How can the end of "for" be a user-defined variable?
In order to be able to implement what you have in mind you must do the following: create a condition to end the cycle while, in the definition of input to console to read an input variable from…
-
0
votes1
answer28
viewsA: problems with installing wordpress on server with Cpanel
I found out where the problem was. when making an http request on the site, when you put ip/~username, username is the user of the ftp server. was the only thing that was actually failing. doing so,…
-
0
votes3
answers284
viewsA: What should I observe when creating a hash code?
a good simple and easy way to create a hash code in Unix is: using the pwgen command, which can be used to create passwords (which has to be installed in the shell with a package manager for the…
-
-1
votes1
answer28
viewsQ: problems with installing wordpress on server with Cpanel
I am trying to help an NGO as a volunteer to: recover your website after an incident with your web hosting service (internal sabotage by someone who left the organization) the fact that I do not…
-
1
votes0
answers237
viewsQ: request for examples - how to embed React.Video in Javascriptxml?
I am currently developing a data frontend/visualization project where I need to incorporate the Node.js module React.Video, in Javascript, XML, or JSX. The project can be found at:…
-
3
votes3
answers284
viewsA: What should I observe when creating a hash code?
in my opinion, a good hashing algorithm should: define a value for the protocol and for the data size to be used; let’s assume for example that wants to hash six digits with a hexadecimal encoding.…
-
2
votes5
answers8944
viewsA: What is an SDK?
SDK, or "source Development kit", is: a proprietary framework, which is made public the purpose is that external users can contribute to the development of a platform. allows as a rule to integrate…
-
0
votes2
answers450
viewsA: Error in uploading Wordpress themes
first of all: did you unzip the Theme file? if yes, and I assume so: if you are working with Wordpress on localhost, copy the wordpress template to the respective location the client you are using…
-
0
votes2
answers1073
viewsA: How to run a python file as an admin?
that’s right python python_script.py in windows and su bash chmod +x python_scrypt.py sudo python python_script.py in linux/osx to install python modules (let’s assume, google’s tensorflow, for…
-
0
votes1
answer220
viewsA: Password Comparison Script Only checks once
one of the possible approaches (I don’t mean I’m the only one), will be set a timer, say 10000 ms, and triggar the function from there, as described in example code below var myVar =…
javascriptanswered tmm88 43 -
0
votes1
answer42
viewsA: Problems when including library in Qt project
I ended up with include the project as: #include <RtMidi.h> making linking from the library in the Sources and adding the following code to the *.pro file TEMPLATE = app QT += qml quick CONFIG…
-
0
votes1
answer42
viewsQ: Problems when including library in Qt project
I’m trying at the moment include the rtmidi library in a project of Qt for make Binding in a graphic interface system that I created with Midi messages. I added the following line to my project:…
-
1
votes1
answer45
viewsQ: How to create a mask between a QML image and a Qtquick element
How to create a mask between an image imported to QML (e.g., a png icon, jpeg, svg, etc...), and a user interface element in the background (e.g.: a re-click)?
-
1
votes2
answers274
viewsA: Playsound function
The answer to your question is extremely simple: you have to create two constructors for each of the sound layers you want to reproduce simultaneously, and define the context in which they will be…
-
0
votes1
answer14
viewsA: Split QML Project into Sub-Directories
I forgot to include the files in their subdirectories. It was something like: import QtQuick 2.0 import QtQuick.Window 2.0 import "_Buttons/" import "_MIDIKeyboards/" import "_StochasticSelectors/"…
-
0
votes2
answers78
viewsA: Dynamic/stochastic object allocation in QML
in my case I put the code like this: import Qtquick 2.0 Item { id: randomMIDIkeyboardSelector; Anchors.Fill: Parent //fit item size to Parent size Property var Random: 0; function…
-
0
votes1
answer14
viewsQ: Split QML Project into Sub-Directories
I have the following question: I divided a project of QML, in different sub-directories. In doing build, the IDE cannot locate the deployed files, returning the following error: Starting…
-
4
votes2
answers78
viewsQ: Dynamic/stochastic object allocation in QML
I am currently trying to do the following in QML, simultaneously: do dynamic loading of Objects previously created a separate file; by doing what is described above, select objects stochastically…