text string | meta dict |
|---|---|
Q: How to enumerate camera devices in C# using DirectShow and MSMF to match OpenCV index I'm working on a C# program that uses OpenCV to record videos. The user is able to select the camera index and API (DirectShow or Microsoft Media Foundation) before recording a video.
As I understand, OpenCV does not support enumer... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604869",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Indexing a list of list of vectors with a list of indices Given a list of lists of vectors represented as a 3d-array, and a 1d list of indices, how can I index the list of lists such that I return a list of vectors. Semantically, I'd like to achieve the following with a single NumPy call:
N, L, H = 5, 3, 2
data = np... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604871",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I modify my TypeORM query to also include relations passed in as a parameter? Context
I want to add role based authentication to a method in the UserService class of my API that restricts access to the endpoint by getting the entries of a column in my database that contains a JSON string in three possible fo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604874",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: AOC CURVE Issue I have written AOC_Curve:
X_train,X_test,Y_train,Y_test=train_test_split(X,Y,test_size=.20,random_state=1)
# AUC and ROC for the training data
from sklearn.model_selection import *
from sklearn.linear_model import *
# predict probabilities
probs = reg_dt_model.predict_proba(X_train)
# keep probabili... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604877",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Transactional writing to file In the program, I download data from the Internet, and this data needs to be saved to disk. I want to know: if writing data to files using std::ofstream is transactional on Windows OS or is it possible that in case of system failure only part of the data will be written to the disk at t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604878",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to temporarly not provide an Identity Provider in Asp.Net Core We have an Asp.Net core backend, with an Angular frontend.
We have a wizard that is executed when the backend indicates it has not been configured(it's only a variable in the appsettings.json).
This works nicely, I just have one issue:
In this wizard... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604880",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Web Deploy Automatic Backups not creating backup I tried to set up Automatic Backups on a server running websites on IIS version 10.
On IIS, I have set the backups on site level with Configuration Editor:
As well as on global level by editing the applicationHost.config file as per below:
On VS 2022, I have a publi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604881",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Classify api changes using pandas column as input I have a peculiar problem, I have a dataframe wherein I have a column named url which goes to the openapi specification file of the particular API at the given date it was committed. An example of such url is as follows:
Example URL
I want this url to be taken as inp... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604884",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Other than SSH, connect to a remote Ubuntu server I'm writing a Python script that connects to a remote server (Ubuntu), but I'm not allowed to use SSH due to company policies.
I tried stunnel, but it requires configuration changes, which are not possible in my case because my python script is running on a tool, and... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604885",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Tesseract unable to recognize simple text Im running tesseract on small images of instruments on a Piping diagram. For some reason it is unable to recognize the text though it is clear in the image. The command is text = pytesseract.image_to_string('crop.png', config='--dpi 200 --psm 12') I've tried changing the dpi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604887",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: react native TouchableOpacity doesn't work My touchableOpacity doesn't work and I really don't understand what is the reason of it.
I think the reason could be the Animated.View but I don't understand why and I need this animation.
Someone could explain me where is the problem please ? I continue by my side.
I corre... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604888",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: receive mDNS/bonjour from two different ip I have two cameras in a network. I want to find these cameras but I dont know their IP, I do know that they send mDNS messages. I found a python script that sends a message and that returns the ip of the camera.
Now I found out that one of the cameras is on a different ip. ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604890",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Java PDFBox addPage produce blank pages I try to create a PDF Document merging all my PDFs files and between each page of each file a fixed PDPage
// Create final PDF Document
PDDocument document = new PDDocument();
// List all pdf files input folder
String[] filenames;
File f = new File(context.repertoire_output_d... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604892",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Why ExecutorCompletionService some times using only thread from ExecutorService pool and not calling the thread task Hello all,Iam using the ExecutorCompletionService.the scenario is iam getting the some records from solr .after getting the response from the solr iam using matchapi to match the records.
The code is ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604893",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to enable redis-search and redis-json on redis-stack docker image? I have a docker-compose.yml that I set up like this:
my-redis:
image: redis/redis-stack
networks:
- base_network
ports:
- '6379:6379'
command: redis-server --save 20 1 --loglevel warning --protected-mode no
volumes:
- redis... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604897",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to concatenate cells under a condition across columns using ARRAYFORMULA? I've found similar questions, but none with this type of condition. I need to join all cells that are dependent of another cell, separating it by comma. So, If A2:A has repeated values, concatenate all the correspondent B2:B, the dependent... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604899",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Avoiding key error while checking multiple lines My Json file contains many lines and not each item of tasks has element Subtasks.
So in my file f.e if I will try to run such operation I will get KeyError, because subtasks doesn't exist under item [0].
data["tasks"][0]["Subtasks"] = [data["tasks"][0]["Subtasks"][0... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604902",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: DelegateAuthenticationProvider not found after updating Microsoft Graph I have the following code (copied from Microsoft Learn), that was working fine with Microsoft.Graph 4.54.0
var authProvider = new DelegateAuthenticationProvider(async (request) => {
// Use Microsoft.Identity.Client to retrieve to... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604903",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Button in popup doesn't work - chrome extension I've tried every solution I found here but nothing worked.
I only need this button to open my options.html page in a new tab.
Here is manifest.json:
{
"name": "Block Site With Images",
"version": "1.0",
"manifest_version": 3,
"web_accessible_resources":... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604905",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Thinking process or first steps before writing a Java code? I want to understand best approach for starting writing code for Java programs.
For example the task is to create an application for Airline Reservation system: user registration, login, reservation, and cancellation with Abstraction, Encapsulation, Inherit... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604906",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Swift Package Manager Throwing Error While Adding Package I am facing "Authentication failed because the credentials were rejected" in Xcode when I tried to add Packages.
I tried both username and password and Personal Token Access methods with valid credentials still it shows error. Can anyone help me to solve this... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604908",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Stack smashing detected (Aborted Core Dump) My code is supposed to replicate the strncat() function. The code gives the desired output but it always ends up with the "stack smashing detected" error. I'd like to know why and how to fix it.
What am I doing wrong or not doing at all?
main.h
#ifndef MAIN_H
#define MAIN_... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604909",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Python web scraping with Selenium only extracts first element's data in list of lazy loaded elements I'm attempting to use Python and Selenium to scrape the NFTrade web page and fetch all the card IDs and prices for a particular collection of NFTs.
Even though the elements on the page are lazy loaded 75 cards at a t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604911",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Function or dict comprehension as a Snakefile output I have a Snakemake rule with a highly redundant output (here simplified):
rule redundant:
output:
a_x = "prefix_a_x.ext"
b_x = "prefix_b_x.ext"
a_y = "prefix_a_y.ext"
b_y = "prefix_b_y.ext"
run:
process_1(output.a_x)... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604912",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Angular generating HTML and Head tags twice I'm building an angular app with multiple layouts. I have my router code setup like this
const routes: Routes = [
{
path: '', component: AppLayoutComponent,
children: [
{ path: '', component: HomeComponent },
{ path: 'login', component: LoginComponen... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604916",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Antd Range Picker make possible to set start date if it is before already chosen start date how can I do functional for antd Range Picker to select date which is before selected start date?
but these dates are disabled by default and I can't undisable them
case for default antd Range Picker
antd version: "4.23.1"
fu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604917",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Tkinter Scrollbar doesn't support built-in options If i try to change the Scrollbar options, i have error. This is example for
scrollbar = ttk.Scrollbar(console_frame, orient='vertical', highlightcolor='green'):
_tkinter.TclError: unknown option "-highlightcolor"
But, if we look at the __init__ in ScrollBar class, w... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604918",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is it possible to use useFormikContext hook when form is initialized with useFormik I have an app where some forms are created using the formik library and specifically the hook useFormik() :
const formik = useFormik({
initialValues: { nom: '', email: '' },
onSubmit: values => {
console.log(values);
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604919",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can a Groovy source file in Jenkins' Shared Library access a method from a global variable? Can a Groovy source file in Jenkins' Shared Library access a method from a global variable?
my Shared Library structure is:
(root)
+- src # Groovy source files
| +- org
| +- foo
| +- Call... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604920",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: What makes my PhpStorm keep on de-exclude one "PHP added" directory I am using PhpStorm, which is great. But one of my project is quite big and has a lot of dependencies, and the indexing of all this code is really long. Thus I really pay attention to exclude all the directories that I don't need. And it works... ex... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604922",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: XCode Unable to Install AppName Please somebody save me!
I am developing a mobile app in react native and the app is not installing anymore in the physical device using XCode. The build succeeds, but the error message appears: "Unable to install [AppName]"
See below the error message details:
Could not inspect the ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604923",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to edit multiple xml files using python? I tried to edit multiple XML files in a folder using python and was not able to replace the required one. This is the XML file and I need to replace the name with 'license_plate'. I tried the following code, but it is not replacing the name. I tried it in a loop as i have... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604929",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I do a build in Flutter in a separate thread? How do I do a build in Flutter in a separate thread?
I am using ListView.builder, FutureBuilder does not apply.
I am creating an android/ios compatible app in flutter.
In one screen, there are countless tables containing lots of widgets in a list.
Even with ListVi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604933",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Particle System: How to check distance between two points before arrival? I am developing a simple time-based particle system.
One aspect I’m working on is an attractor. This works fine but I am having difficulty making the particle stop once it reaches the attractor. The reason is because although I am checking the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604934",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to open very large SAS datasets, like "head" in Linux? I'm new to SAS, using SAS Enterprise Guide 8.3. I have very large datasets with .sas7bdat extension.
How can I open them to just see the first thousands rows? I don't need to process them, just view similar to a Linux "head".
A: Perhaps if it is only to pri... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604935",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "4"
} |
Q: Apply pypfop on html? I want to print html to pdf. One way is to use a browser to directly print the HTML file. But when the HTML file is very large (say resulting in thousands of pages of PDF), browser may not be an appropriate solution.
I am wondering whether pypfop is an appropriate solution to generate a pdf wit... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604937",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: ReferenceError when using browser's console in JavaScript I have 3 files (Wardrobe.js, index.html and script.js). I import Backpack.js on script.js and both as type="module" in my html.
When I run my Live Server on VSCode and go to the console no errors show up but when I type the name of my object (smallWardrobe) I... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604942",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Having a problem retrieving more records with Cursor When I try to use a cursor to retrieve more records, I get the same results again.
I make a call to the v2 API to list videos:
$ curl -X POST https://open.tiktokapis.com/v2/video/list/?fields=id,create_time --header 'Authorization: Bearer act.9060XXXXXXXXXXXXXXXXX... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604943",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Flutter App Background Location Permission Issue Iam making a application using flutter. When a user signup and get to home page i request location permission using geolocater and save latitude and longitude in data base
I only accessing it in foreground.
But google play store rejected my app by saying i using backg... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604945",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I start a powershell process with administrator privilges and redirect stdin (os.exec) I want to start a powershell process with administrator priviliges and redirect stdin to a writer, I have everything working except how to run it as admin.
// Start powershell
powershell := exec.Command("powershell")
// Add... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604946",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: iPhone browser bar hides ReactJS elements I making a web app using ReactJS.
On desktop browser, it displays perfectly.
But when I view on Safari or Chrome on iPhone, the browser bar hides some elements.
This is my expectation:
Can you please let me know how I can solve it?
My URL is: https://react-sublime-theme.v... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604947",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Could not convert ‘{{"sigmoid", ((ActiviationFunctions*)this)->ActiviationFunctions::sigmoid}}’ from ‘’ When is try to create a map with "function-pointer" I get the following error:
class ActiviationFunctions{
private:
protected:
public:
ActiviationFunctions() = default;
ActiviationFunc... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604948",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: HMR errors after migrating Vue CLI app to Vite 4 (Vue 2 application) I migrated my Vue CLI (Vue 2) application to use Vite instead. It compiles without errors, but the HMR does not work.
Each time I make a change in my code, HMR prints an error in the browser console, like this one:
ReferenceError: Cannot access 'my... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604952",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Kibana Visualization of NEW values How would I create a visualization showing only the NEW values for a field? Currently I have a visualization using Top values of xxx.keyword.
What I would like in addition is to only show values that were not previously observed. For example, show be values of xxx observed in the l... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604953",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Xamarin Forms: Spacing issue between keyboard and the bottom layout in chat page I am using a CustomEditorRenderer to solve the spacing issue between keyboard and Editor. I already posted a ticket related to that. Now I have attachment and send icons are in the same place. But when the keyboard appears, only Editor ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604955",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I send and receive text from two different applications using twilio? I need to be able to send and receive messages from two different applications. They both use webhooks; however I can't find a way that will work and sync text between the two.
Tried this, but didnt work.
enter image description here
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75604956",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Kubernetes Ingress Load-Balancing It might be a stupid question. As we know, nginx-ingress controller uses round-robin algorithm by default and the ingress traffic should be distributed to Kubernetes nodes equally.
The concern is when I get ingress details, it shows me only 1 node address, even though I have 3 nodes... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604957",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to use Liquibase parameters in db-changelog.xml for spring app I have a spring application on jdk 11
Note: The application is spring packaged as war packaging.
using maven, with the following liquibase dependency :
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-cor... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604960",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Get alarm app to send local push notification on react native So i'm trying to implement a custom alarm app that could schedule alarm and then run a push notif with custom sound on a scheduled time.
I am using React-Native-Push-Notification for my Alarm APP, everything is working fine but in silent mode, it does not... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604961",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Azure event Hub ( Event Processor Host vs Direct Receivers ) I am using Event Hub, wanted to know which one is better approach to consume events
Event Processor Host or Direct Receivers. if one of it is better then why.
Also Can you help me any java code sample github or java Azure SDK to write event consumer.
Does ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604963",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: C# System.Text.Json Can't deserialize response from open sky api. My DTO model doesn't fit C# System.Text.Json Can't deserialize response from open sky api. My DTO model doesn't fit
I have response body like this and i can't desearilize it to c# dto model:
{
"time": 1677521877,
"states": [
[
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604964",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to make org.json.JSONObject ordered? JSONObject uses unordered HashMap as a backend. How to force it to use ordered version?
Please avoid demagogy about JSON dicts should be unordered, because most modern libraries (for example Python's json and Java's Jackson) already don't think so.
The solution should assume ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604965",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can we compare two Map object with keys and create new map with value of one map as key and value of another map as value in java8 Input
mMap==>{A=one, B=Two, D=Four}
nMap==>{A=1mg, B=2mg, C=3mg, D=4mg}
OutPut
OMap==>{one=1mg, Two= 2mg, Four=4mg}
How can we achieve this using java8 streams
A: You can use Coll... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604966",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: Duplicate Sub Query I was looking into my django orm sql queries to improve them.
The django made query something like this
SELECT `A`.`id`,
`A`.`name`,
-- ......,
-- This is same as the HAVING PART --
COUNT(
CASE
WHEN `AU`.`user_id` IN (
SELECT U0.`to_user_id`
FROM `user_friends` U... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604967",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: error redecleared as different kind of entity I have been given a cpp file of a gps system and I have been tasked with editng the code and implementing code for some of the functions. On my final function there seems to be an error that is occuring when i compile the build on Jenkins.
src/nmea/nmea-parser.cp... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604970",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-4"
} |
Q: Django does not see a change in the primary key data type In the data model, I changed the data type from INT to VarChar for the ID field. Unfortunately, this change was not noticed by macemigrations and I was forced to do a migrate zero and generate the migration file from scratch. Unfortunately, this didn't help e... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604972",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: My VS code status bar is showing "42 files to analyze" numbers that keeps increasing
It's showing that.
Sometimes it disappears and reappears after some time and I don't know why.
I tried to look into the extensions to see if it would explain, but I'm not sure.
I deleted and reinstalled VS code but it is still appe... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604975",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: I am implementing GAN to generate samples for ID-VG curve. But the Fake data generated is not same as real generated samples In this example, we generate 1000 real samples using the generate_real_samples function. We then define the generator and discriminator networks using the define_generator and define_discrimin... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604976",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: gradient descent for neural from scratch while doing manual scaling of one of the variable Insurance data has three columns 'age', 'affordability' and 'bought_insurance', based on age and affordibility whether bought_insurance is to be predicted. While running python code getting ValueError: Unable to coerce to Seri... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604979",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can't find the default run configuration in Android Studio I'm new to Android Studio. I followed a guild on YTB how to create a project and probably messed up something. As you can see in the picture, there's no run/debug configuration by default when I created the project. Here's the screenshot
I tried deleted the ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604980",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Laravel session sharing for main and subdomain I have 1 main domain and 2 subdomains like example.com, abc.example.com , xyz.example.com. These domains are pointing to same direcotry single projet.I want to share session between these 3 domains. I have scrolled through many articles and tried many solutions.
I found... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604981",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Not sure if this is Programming Related Before, I go on and tell you what I have done and the issue, I just wanted to make sure that this is an appropriate question. Basically, I cannot get access to an older Gmail because I no longer have the phone associated with that Gmail and thus can not get a he code in order ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604985",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Use stream to filter certain key-value pairs in hashmap I have a hashmap1 with the signature
Map<String, List<Self-Defined-Object>>
The key/value set within hashmap1 is:
key = ".ABC", value = [Self-defined Object1, Self-defined Object2]
key = ".DEF", value = [Self-defined Object3, Self-defined Object4]
key = ".GHI",... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604986",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to know at what time EC2 instance stopped with instance details aws ec2 describe-instances
--filters Name=instance-state-name,Values=stopped
--query "Reservations\[\*\].Instances\[\*\].\[InstanceId,State.Name,State.TransitionReason,StateTransitionReason.Status,StateTransitionReason.Code,StateTransitionReason.M... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604987",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: typescript i18next react, how to implement the translation of the text that comes from the backend I have both locales in public, where the local translation is stored, and I come to the state with backend content. I call all static via {t('main.title')} and it works, but if I want to pull out and translate content ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604990",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to fix error RuntimeError: This event loop is already running sys:1: RuntimeWarning: coroutine 'Executor._shutdown_polling' was never awaited I have a code(telegram bot) written by ChatGpt, it should work like this:
*
*Send a link to your TikTok account
*The code reads the data of all videos on the account
*... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604993",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: cURL error 60 prevents me from sign in attempt in Laravel I have upgraded from laravel 7 to 8 but cannot log in. I get the following error;
"GuzzleHttp\Exception\RequestException"
"/var/www/html/my-day-v2.0-be/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php"
line : 211 message : "cURL error 60: SSL: no alter... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604994",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to keep a web worker self-contained I built a website that relies on frequently requesting and displaying data from a rest-api using fetch().
After I was done with the hardest part of the work I found that my site doesn't refresh like intended on my iPhone.
First I thought the reason is that Safari on iOS doesn'... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604995",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Debouncing distributed task dependencies in python I would like to define some tasks that can be triggered dependent on messages from a broker (e.g. SQS). These tasks would be able to re-publish messages triggering other tasks.
While this is partially solved solved by libraries like celery/selinon, one extra require... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604996",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: dns forwarding https vs http I have two domains (example mydomain.com and myseconddomain.com) where I'm trying to eliminate the need for an ssl for the second domain. I have moved myseconddomain.com from an azure VM over to being an azure App instead, and I set up the custom domain to be myseconddomain.mydomain.com... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604997",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python - Perform calculation on column according to row value I would like to calculate the annual percentage change in GDP for respective countries in a dataset. The dataset is formatted as follows, with each row corresponding to a annual recording for a country:
Country
Year
LifeExp
GDP
Chile
2000
77.3
7.7... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75604999",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Filtering for Specific Dates in Python I am trying to only get the date of IDs with history starting on 1/1/2022 through today or a further date out. I have imported a csv from excel and have imported pandas numpy and timedelta. The current "start_date" is an object in string format. Here is an example of what I hav... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605003",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: what's wrong with this html mail code I want to attach it to a mail bot? '<html>
<body>
<form action="mailto:somemail5@gmail.com?subject=Email%20Subject&body=Email%20Body" method="post" enctype="text/plain">
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject"><br>
<label for="b... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605005",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to Add Two checkBoxs for single select in React dropdown as showen in image enter image description here
once click on the select Dropdown it should appear as showen in image(enter image description here) that having two checkBox for each select Yes or No
I tryed with comboBox fluentUi but it was showing single ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605006",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to login to a Spring login form using node-fetch I have access to a Spring application via a username and password from my browser and I want to login from a NodeJS application.
I followed the post (How to login to a spring security login form using cURL?), which allowed me to successfully use cURL or Postman. B... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605009",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: IsADirectoryError: [Errno 21] Is a directory: How to use Pathlib correctly image_folder = Path("path_to_image_folder")
def get_preprocessed_image(image_path: pathlib.Path) -> PIL.Image.Image:
with image_path.open("rb") as image_input:
return PIL.Image.open(io.BytesIO(pyabbyy.preprocess(image_input.read(... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605010",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I utilize OpenAI's fine-tuning feature to create a question and answer system? I am unable to obtain the desired response from the model I have trained.
i have this datasets for example
{'prompt':'what are you','completions':'I am a ABC Company Support AI'}
{'prompt':'who are you','completions':'I am a ABC C... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605013",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: When I run in the application simulator the build succeeds but the output is black. this type of error are face image description here]
When I run it in the application simulator the build succeeds but the output is black. this type of error is faced. The problem is mentioned in this image url.
A: The error in the ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605015",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to put data's to top tab navigator in react native? I got a all data's from API and i have to put it to top tab navigator
I don't know exact components for render it
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75605017",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-4"
} |
Q: Get Active Cell Pane I am making a macro and I want to preserve the pane selected when changing the sheet.
For doing that, I want to get the number of the pane I am placed in the Active cell.
I don't want the cell address, that I already know hoy to get it, I want the active pane.
I already searched for the document... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605018",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: jquery all children of a child has class im trying to run a function once all children of a child has a specific class, here is my code so far, i have tinkered with this a quite a bit in various ways but can't seem to get it to work.
#section-1 is the parent
.job-row-wrapper is the child of above
.checkbox is the ch... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605019",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Linkedin API get profile picture organization I'm trying to get the authenticated user, organizations with profile picture like this:
https://api.linkedin.com/v2/organizationalEntityAcls?q=roleAssignee&projection=(elements*(organizationalTarget~(localizedName,profilePicture)))
But I get this back:
{"elements":[{"o... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605020",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Collectors stop to export data with tail-sampling enabled I have several JVMs instrumented with opentelemetry agents 1.21.0 that send traces (only them) to five opentelemetry collectors 0.70.0 proxied by nginx (Gateway method of collector deployment). The problem is that when RPS on JVM services rise collectors stop... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605021",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Laravel queues pushing job into batch (and process it) when current job fails Tried in many different ways but can't get this working, and i'm quite sure it was working until last framework updates (but got no clues diffing source code).
Basically: when a job on a site (A: StartTestJob) in a batch fails, after consu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605022",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: django prefetch_related filtered with object column models:
class Person(models.Model):
birth_date = models.DateField()
class PersonData(models.Model):
(...)
last_name = models.CharField(max_length=255)
valid_from = models.DateField() #default data urodzenia (Person)
valid_to = models.DateField(... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605024",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Code Coverage on AzureDevOps fails to generate coverage when referencing microsoft.CodeCoverage nuget When executing tests in a azure devops pipeline while using a datacollector uri=„datacollector://microsoft/CodeCoverage/2.0“ we are seeing errors in the generation of the coverage attachment file if a recent version... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605025",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Azure Python SDK ClientSecretCredential fetch the values from Azure keyvault Unable to get the values of tenant_id, client_id,client_secret which are stored in Azure Keyvault, by using library from azure.identity import ClientSecretCredential. I have installed and imported the modules azure-keyvault-secrets azure-id... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605026",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: SpringDoc schema how to use more than one @ExampleObject in the response Any help or hint would be greatly appreciated it!!
I am using SpringDoc to do the swagger generation.
I am trying to use more than one "ExampleObject".
But it doesn't seem to work for the below syntax.
@ApiResponses( value = {
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605028",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Property does not exist on type (Union type) I am using a type which is one of several interfaces.
When using this in Vue, it says the property does not exist.
export interface Link {
to: string
text?: string;
}
export interface Text {
text: string;
}
export interface Html {
html: string
}
export type DataIt... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605036",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to scrap an element Under two divs that has same class_ as another elements.(Python) I just learned about web scraping and as a practice I tried some web scraping of a certain website called Empire which don't allow me to scrap its movie titles. Can somebody help me with that.. Forgot to tell I was using python ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605037",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: AWS Cognito and Identity Server missing Claims in C# application Using AWS Cognito with Identity server I am unable to obtain the full claims in either the id_token or access_token (from my client app).
One of the attributes we need to obtain is the email, this is enabled in the app pool client:
When I query the to... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605039",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to prevent a newline in a form How can I prevent newline in a html form for copy and paste into notepad:
Similar to this question:
How to prevent newline at the end of html input field?
If I copy the text and paste it into notepad, the newlines are present.
The code snippet in first answer displays correctly on ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605040",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Calculated Empirical Variance is negative (python, pytorch) I have a data encoded to one cluster each, and I am trying to calculate the empirical mean and variance of each cluster. I will use N as batchsize (in other words, number of data), D as a dimension of each data, and K as a number of cluster.
x is a input da... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605041",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I view cluster status in CnosDB? I have set up the CnosDB cluster (3 meta nodes + 3 data nodes) according to the manual.
Is there any easy way to view the cluster status in a command? I found this command doing partial work:
curl http://127.0.0.1:21001/metrics
curl http://127.0.0.1:21002/metrics
curl http://1... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605042",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Flutter Shared Preferences cannot use async/await, so I must use a then void _authKey() {
Hmac hmacSha = new Hmac(sha256, utf8.encode("604ec80ffa552786f409590994dc89cfef040b72"));
String hashValue = "";
List<String> sortedKeys = _datas.keys.toList()..sort();
sortedKeys.forEach((f) => hashValue += _da... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605044",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: List of object constants I have a class "Process", where the "Exams" property is a List of the Exam class.
public class Process
{
public int Id { get; set; }
[Required]
public Person? Person { get; set; }
[Required]
[MinLength(1, ErrorMessage = "Must select at least one exam")]
public List<... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605045",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Adding Hardcoded text on Mui data grid Export Is the any way we can customize the mui data grid export Feature content?
What I want to do is add a custom Hard coded title and description while exporting data grid, that is, A title followed by description followed by The table content
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75605046",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Autocomplete component keeps menu open when prefilling value I'm using the MUI Autocomplete component for my React application. I want to prefill an existing value from some user state if present. However, when I do so, the value is prefilled but the menu remains open (shown in the picture below with the "No options... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605047",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: I just uploaded an MP4 to my website. How do I find the url to embed that video in an email? (The video is original and not hosted elsewhere) I need an embed code to put in an email, which will access a video from my Weebly website. I know how to find the url of the webpage, but not the url of the video within it. P... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605049",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Page is reloading on first click and works normally by the followed clicks Triggering the clipboard.on function for the first time reloads the page (e.preventDefault() gives, it is not a function error) but from the second time it works perfectly normally. I have to stop it from reloading when the clipboard.on funct... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75605050",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |