All Questions
20,757,058
questions
0
votes
0answers
3 views
Pushing static IP to OpenVPN client - Proxmox
I installed Proxmox on a machine, and I want to make the web GUI available from Internet, so I can work on VMs when I travel.
I installed and configured OpenVPN on my Proxmox host (192.168.0.50) to do ...
0
votes
0answers
4 views
How to Deserialise JsonDocument To POCO
I would like to update a System.Text.Json.JsonDocument properties. I can read the id property
using:
var id = obj.RootElement.GetProperty("id").GetString();
JsonDocument is read only so ...
0
votes
0answers
3 views
Selenium returns stale element or NoSuchElementError although elements are on the page
I have the following code to find some buttons that I need to click using Selenium and Python:
elems = driver.find_elements_by_xpath('//div[@id = "RangeViewer"]//button[starts-with(@class,&...
0
votes
0answers
3 views
Reduce the time needed for a database to be read
I'm writing a program in which I have to read a huge amount of data from a database (Sqlite) and then display the obtained values in a window. I need to refresh the windows each second, so the ...
0
votes
0answers
2 views
WKWebView in Navigation Controller. After selecting image, webview reloads. Why? How do I fix this?
So this question is similar to the one asked here, but it never got any answers:
WKWebView behavior. Reloading after Image picker returns
I am using Swift 5.2 in Xcode 12.4, and the setup is very ...
0
votes
0answers
8 views
how do I fix undefined error with Javascript
(function(window) {
var name = {};
Greeter.name = "John";
var greeting = "Hello ";
Greeter.sayHello = function() {
console.log(greeting + johnGreeter.name);
}
window.johnGreeter = ...
0
votes
0answers
3 views
Web API Push on iOS/Safari - React App. Really no Service in 2021?
in a few words: this dilemma is about native push notifications on iOS in a Webapp (React PWA). Is it still completely shut down by Apple? And still not 3rd Party service out there to circumvent this? ...
0
votes
0answers
2 views
Console not writing class object name
C# in Visual Studio... very simple main and class method. When running, my program only reads out "Hi friend", and not "Otis". Any ideas to what's going on?
Thanks.
using System;
...
0
votes
0answers
4 views
React navigation 5 route undefined
I am trying to send some paramaters to other screen but when I console props.route it showing undefined. I really tried hard but not able to resolve this issue. Could someone please help me how to ...
0
votes
0answers
6 views
Javascript stopped working on website page
I have a javascript on a website page that populates a dropdown menu in a (contact 7) form with track names from an audio playlist generated using the generic wordpress playlist generator.
It was ...
0
votes
0answers
3 views
Config SSL in python Confluent for Kafka cluster running in OpenShift
I have a Kafka cluster deployed on Openshift via Strimzi operator. The cluster is configured with SSL for external connections.
I was able to connect my Java consumer to the cluster by extracting The ...
0
votes
0answers
2 views
Apache2 Flask PermissionError: [Errno 13] Permission denied: 'uploaded\\\\images'
I recently deployed my flask app on an Apache 2 server running on a Ubuntu 20.04 system and received this error when I attempted to upload an image: 'PermissionError: [Errno 13] Permission denied: '...
0
votes
0answers
13 views
how can you generate a random number in C++?
I have this little script in C++ for autohotkey software and I need both sleep number to be random, first from 700 to 900 and the second from 1800 to 2200. Anyone knows how to do it? Thanks! This is ...
0
votes
0answers
5 views
embed synchronous python code with Asyncio
This script below is some example code from the open leader project that uses iohttp and asyncio for a client server XML based web protocol communication process for the utility industry.
Newbie ...
-1
votes
0answers
9 views
Return statement from a .then function is always undefined or Promise{<pending>} [duplicate]
When returning an object from inside a .then function I receive an undefined value, when I do receive some value its always a promise{}. any help to resolve this issue would be appreciated, I have ...