text string | meta dict |
|---|---|
Q: BinaryTree doesn't seem to recognize the root node I'm not getting any result from the BinaryTree as output. There's probably a small mistake.
public class Worker {
public String name;
public double salary;
public Worker(String name, double salary) {
this.name = name;
this.salary = salary;
}
public String ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623331",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Chunking/streaming and filtering a time-series in DBT Snowflake I have a daily_user_product_activity table with the following model:
Field
Type
Description
key
number
hash(date, uid, pid)
date
date
date of the activity
uid
number
user who generated the activity
pid
number
product associated with the ac... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623334",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: "Run failed: pages build and deployment - master (0730b0d)" and "build with Jekyll" error: how to solve? I am new to Github and trying to make personal website instead of google site.
I changed some infos on config file, but I received an email which has title "[myname/myname.github.io]Run failed: pages build and de... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623338",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: error 1054 , unknown column c_id in NEW .... I have declared the id and c_id only but still it is showing this 1054 error message why? create table customers
(
custr_id int auto_increment primary key,
name varchar(40) not null,
email varchar(30),
birthdate date
);
create table message
(
c_id... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623340",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: What is the best practice when using HTTP methods which include (GET, POST, PUT, PATCH, DELETE) regarding how to pass parameters/data to the server? From my experience, this is what I understand at the moment.
*
*Get, delete: we should use query string(filter, sorting...), target-uri-identifier(api/users/1) to pas... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623342",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Query to get all rows that have recursive associations in another table Not sure how to explain this with words so I will begin with an example.
I have a table called Assets
SELECT * FROM Assets
id
name
1
asset1
2
asset2
Assets can "convert" into another Asset. There is additional data associated with ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623343",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Able to render to texture but can not present to MTKView on relative old devices I have a drawing app using Metal, that works well on newer iPhones and iPads. However, on older devices like the 6th and 7th generation iPad, the screen shows up as blank and transparent.
I checked the code that handles the drawing, and... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623345",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Multiple Clients, same Firestore We have an app that uses Firestore, snapshots, and lots of connections.
We have multiple customers wanting to use it.
Scale question - do we need to have seperate apps for scale or is it really all about just not accessing a specific document too often and it doesn’t matter if you ju... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623347",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is the "header-data split" enable in Linux network? (over RDMA or DPDK) I use the UD connection in ROCE environment, I use the custom header.
Therefore, a package is split into two part: header and data.
So when I receive packages from other node, the data part is not sequential, even though the ring buffer for rece... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623348",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Dialog didnt want to hide even the state has false in Jetpack Compose i have a alert dialog that show and close by boolean from the state, the problem is when i click close button and change the state to false, the dialog didnt want to hide. i've logged the state when i close button, and the result from logged state... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623349",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Your branch is ahead of 'origin/branch-A' by 12 commits This is a known problem on SO. The solution I believe is git reset --hard origin/branch-A (I am not 100% sure).
*
*I created a merge request from branch-A to branch-B. The changes got merged successfully to branch-B, no problem.
*I am currently on branch-A.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623351",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Why are my projects disappeared after banning the root user on gitlab? I have a private gitlab server hosted on digital ocean, and today one admin user accidentally banned the root user. After that almost all repositories disappeared, expect for Gitlab Instance repo. That’s very strange as the documentation states t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623352",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to include etable() regression output as latex table into rmarkdown? I want to include outputs of a regression as latex table in rmarkdown as html output. I tried:
regression <- function(analysis_data,formula) {
print(xtable(etable(feols(fml = formula,
data = analysis_data
, clus... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623354",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Run for loop linear regression across 1113 unique stores retail_LR = pd.read_csv('Retail_final.csv')
#print(retail_LR.shape)
#print(retail_LR.head(5))
#print(retail_LR.dtypes)
#print(len(retail_LR['Store'].unique()))
for store_id in retail_LR['Store'].unique():
reg_store = retail_LR[retail_LR['Store']== store_i... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623358",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to set tab for auto indent after pressed enter in vscode rather than space I must use tab for indentation. I set Detect Indentation as true, Insert Spaces as false. So that the tab will not replaced with space. But auto indent after "enter" is still space, how can I fix it?
What I have done is on above.
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75623362",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I run html files in tomcat server? I'm studying jsp/servlet. There is no issue running jsp files, but I can't run html files. (404 error, cannot find resources)
I can run through alt+f2 (open in a local file) , the code works well though. The problem occurs only on the browser URL. any idea about this?? I'm ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623363",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Convert imagemagick command line into php imagick code I want to convert this ImageMagick command to PHP code:
convert text.jpg \( +clone -blur 0x3 \) +swap -compose divide -composite -resize 1000% -morphology open diamond:1 -resize 10% x2.png
Here my code:
$input = new Imagick(__DIR__ . self::CACHE_PATH . 'data_'... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623364",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to integrate Visual Studio Code with Google Colab? How to integrate Visual Studio Code with Google Colab? I want to write, run and test code for Google Colab from VSC.
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75623368",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can't use LLD linker while building LLVM-MLIR When building MLIR by following these directions, one of the [optional] arguments is,
-DLLVM_ENABLE_LLD=ON
If used though, CMake throws this error:
Host compiler does not support '-fuse-ld=lld'
My Clang version is the following:
Ubuntu clang version 12.0.0-3ubuntu1~20... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623371",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to store a Tar file in Azure Devops Server 2020 Artifact Part of my CI process, I'm looking to store docker image file in Azure Artifact (Azure Devops Server 2020)which is in tar format. Which I need to refer later for next infra deployment.
I have created a feed in Azure devops Server 2020 and I'm able to uploa... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623373",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: New Debian 11 server with Intermittent database timeouts in PHP applications (WP/Laravel) connecting to RDS instance The stack is a newly built NGINX/php-fpm(8.2) debian 11 web server on EC2 and RDS database (MySQL8). Using WordPress and Laravel framework for separate apps along side WordPress.
Requests to PHP apps ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623374",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Python code that creates XML insert header I have a similar code to generate a XML. THe code is similar to this:
import xml.etree.ElementTree as ET
import requests
import json
import csv
data = ET.Element('XMLFORMPOST')
element0 = ET.SubElement(data, 'REQUEST')
element1 = ET.SubElement(data, 'LOGIN')
element2 = ET... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623376",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to use groupBy in C#? I have this model class:
public class Transaction
{
string Barcode { get; set; }
string Description { get; set; }
string DateCreated { get; set; }
}
How can I group a list of Transaction items, and return a new list
["barcode1"[list Transaction1], "barcode2"[list Transaction2],... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623378",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to sort the index legend by number and not by string in R I have this code:
gg = ggplot() + geom_line(data = correctAnswersPerStimu_1010v1, size=1,
aes(x=as.character(testPhase), y=percent_correct, group=as.character(individualIndex), colour = as.character(individualIndex)))
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623379",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: if else part not working when read from firebase database I'm trying to set the value of the upvote from the recycler view in the firebase database i.e when a user clicks a like button it will increment the value of the upvote by one but if again a user clicks a like button upvote value decrement by one. for this, I... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623380",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Getting error 'The type initializer for 'PerTypeValues`1' threw an exception' My elasticsearch is giving this error 'The type initializer for 'PerTypeValues`1' threw an exception'
the code is
CustomLogWrite.WriteLog("Viewed canidates Inside ");
UpdateByQueryResponse resp = Client.UpdateByQuery<Candi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623388",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to create a folder tree from an array? I am trying to create a folder tree, for example from such an array:
["nightmare", "profile", "cover"]
Using this code:
$folders = ["nightmare", "profile", "cover"];
$directory = './images/users';
foreach ($folders as $folder) {
if (!file_exists($directory . '/' . $fo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623391",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why is numPy not working when I already installed it? I have installed numPy through pip on my terminal but now when I try to do something simple like this on IDLE or vscode:
import numpy
arr = numpy.array([1, 2, 3, 4, 5])
print (arr)
This error shows up:
Traceback (most recent call last):
File "/Users/albertomor... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623394",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: What advice would you give when it comes to refactoring? I'm lost enter image description hereI'm in a software bootcamp and I'm learning refactoring codes. Although as simple as it may sound, I'm just having a hard time refactoring. I need methods, advice, and suggestions. Here is one example, how would you refacto... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623396",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Wait for Web Page to fully load before taking its Screenshot using Google Sheets and Apps Script I have a code that enables me to insert a list of URLs inside Google Sheets and take their screenshots using Apps Script and a Screenshot API (screenshotlayer API).
However one of the websites has a built-in loading scre... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623399",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to check the type of file while getting data from API whether the file is pdf or image so that it can be viewed? How to check the type of file while getting data from API whether the file is pdf or image so that it can be viewed?
How to check the type of file while getting data from API whether the file is pdf o... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623400",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to process data within .pipe()? I have a Angular component Typescript function to return an Observable<book[]>. Logic is
If (data exists in sessionStorage) Then
return it
Else
get it from remote API
save it in sessionStorage
return it
End If
Implementated as:
import { Observable, of, pipe } from... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623402",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Avatar Glow widget in flutter app is not working. How to solve this?
I am using avatar glow in floating action button. I am trying to make it glow, when I tapped on it., But this avatar glow widget is not working.. Can anyone give me solution? or what widget should use instead of this widget to glow the floating ac... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623403",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: The fontsStyle function does not work, taken from the video https://youtu.be/jU88mLuLWlk When calling gulp, everything works, but this function does not. Code was taken from this video. Already checked for typos.
fonts.js
import fs from "fs";
import fonter from "gulp-fonter";
import ttf2woff2 from "gulp-ttf2woff2";
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623406",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Isn't (10<=10) and (10>=10) same in python? The greater than(>) and less than(<) is operating differently in python. Why is it happening so? Here are the two pieces of python code, the only difference between the two codes is in line number 2. The question says that if the sum of nicholas and john's marbles is great... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623407",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-6"
} |
Q: Python KafkaTimeoutError: Timeout waiting for future I'm using Kafka to send logs to a topic. While sending the messages, I always get this error
Message: 'test log'
Arguments: ()
--- Logging error ---
Traceback (most recent call last):
File "/home/ubuntu/applications/pythonapp/kafka_handler.py", line 53, in emit
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623408",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Finding Pickel File in local files import pickle
filename='pred_model1'
pickle.dump(b_dtc, open(filename,'wb'))
here b_dtc is my modelname`
when I executed the code it works well but how to know where the pickel file is downlaoded in my system, as it is not present in my current working directory.
note: i am using ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623410",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to make index.php set path to /index.html I'm unfamiliar with php but I'm running a server locally on apache using XAMPP.
I want connecting to localhost to automatically set the path to localhost/index.html.
index.php looks as follows
<?php
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623413",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to load font data in native I'm developing android and IOS apps with flutter.
Due to certain conditions, I need to create Font files (.ttf) in native (JAVA, Objective-C) and obtain matrix data.
In android (JAVA), I succeeded in generating fonts in flutter project assets using Typeface class and obtaining Metrics... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623417",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to export Unity project with UVC Camera and OpenCV processing to use Android native features, including real-time sensor data? I am working on a project that involves an Android board with an external camera and an external sensor. Currently, I am using UVC Camera for video input and OpenCV for image processing ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623420",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Reset pruned trials in Optuna study? If I have a study where all the pruned trials needs to be reset for some reason, is there a way to do this?
Maybe something that might work: Creating a copy of the current study where pruned trials have their state reset.
Thank you for any suggestions to reset all pruned trials
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75623422",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Mail doesnot come in inbox of recipient mail when sending mail through gmail with codeigniter I am trying to send mail through gmail smtp relay.
I used a gmail mail id and created app password after enabling 2-step verification.
The function I used to send mail is as below:
function sendemail($name,$emailid,$token,$... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623423",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Limit text length to n lines using CSS not working on iOS Limiting the text length to n lines using CSS is not working on iOS, is still showing all the lines, here is my code:
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
A: try... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623424",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Unable to use decorators this below mentioned decorators given error. How to use decorators here:
def mfx(fx):
def mfx():
print("The list has been sorted to:")
fx()
return mfx
While calling the decorators in for loop method
@mfx
def list_sort(list):
new_list = []
while my_list:
mi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623427",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Caused by: java.lang.IllegalArgumentException: Servlet mapping specifies an unknown servlet name alt Caused by: java.lang.IllegalArgumentException: Servlet mapping specifies an unknown servlet name alt
but in my project servlet and the servlet-mapping name is the same what is the error
<servlet>
<servlet-na... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623429",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature with error code 403 I want to connect to my azure storage explorer and read the table data using python.It's running on Azure storage emulator.My code is like this;
storage_account_name ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623430",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Explain how justify content works in a block container as described by this image?
So the image above says justify content can be applied to block containers, and after experimenting with this code i still dont see it working i.e it doesnt centre/end items on the main axis or block axis.
<body>
<div id="wrapper"... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623431",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Bash function returning blank I have following function that calculates the time for execution of command in milliseconds
function execute_command(){
#Calculate the execution time for the command $1
exec 3>&1 4>&2
exec_time=$( { time $@ 1>&3 2>&4; } 2>&1 )
exec 3>&- 4>&-
RES=$(awk "BEGIN {printf \"%d\",${e... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623435",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: why does my linker say "file not recognized: File format not recognized" i have never worked with assembly so i was following a tutorial to create a assembly program, i downloaded yasm from choco and created this program
;;;
;;;hello.s
;;;prints "hello, world!"
;;;
section .data
msg: db "hello, world!... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623438",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Cannot read properties of null (reading 'store') I am learning react-native with redux. I am getting this error (seems the store is null but where?) when I am trying to access the state with useSelector.
Error:
Cannot read properties of null (reading 'store')
TypeError: Cannot read properties of null (reading 'stor... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623439",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Hibernate validator uses group sequences in the wrong order when validating cascaded objects Hibernate validator uses group sequences when validating the cascade insert object. If the cascade object is validated, SQL will be executed. Although it will eventually rollback, this will result in an invalid database hit.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623441",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Not able to cache the response internally when using send-request policy in APIM inbound I am new to implementing the policies in APIM. I am trying to access table storage from inbound policies using send-request and forming a response body. But I am not able to store the response in internal cache.
Can Anyone tell ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623442",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Pandas: How can I determine if a row has a value in a column and it in later columns? I want to iterate through columns and determine and see if a certain value exists in each row of data. Then I want to create columns that change based on whether or not the value exists. That is the basic question but for deeper un... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623444",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: argo workflow activeDeadlineSeconds BuildDate: 2022-09-19T05:39:17Z
GitCommit: 047952afd539d06cae2fd6ba0b608b19c1194bba
GitTreeState: dirty
GitTag: v3.4.0
GoVersion: go1.19.1
Compiler: gc
Platform: darwin/arm64
when i submit this template, it works fine(As expected it would be terminated after 10 seco... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623446",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to write the query to soft delete all the previous record in the table?and I Need only the current record How to write the query to soft delete all the previous records in the table? and i need only the current record.
And currently what I am using And currently what I am using is
UPDATE table
SET IS_DELETE = Tr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623449",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: A script to switch my Display 2 adaptor properties mode in a click for my ultrawide monitor? I am currently using an ultrawide monitor of 3840x1080 but when I switch to 2Window mode, I.E PS5 display on one side of the screen while my desktop remain on the right side of the screen, the desktop side of the screen rema... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623450",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: select drop down is bigger in height then others inputs Im using bootstrap the other inputs are okay but this one is bigger in height i tried every thing nothing worked, i cant remove the input group because i need that , and form-control in select tag as well needed, any solution i want equal hight for all inputs a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623452",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Write keypresses to the DOM So, I am trying to run a function that grabs the key that was pressed and puts it in a variable.
I have tried doing:
let text = "";
function keys(){
let key = KeyboardEvent.name;
text = text + key;
document.querySelector("#text").innerHTML = text;
}
while(1===1){
document.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623453",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Test failing when running "make test" for polars Just followed the instructions here for setting up a clone of polars.
Everything works until the make test command, where I get a single failure:
FAILED tests/unit/test_lazy.py::test_apply - exceptions.ShapeError: Could not add column. The Series length 56 differs fro... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623454",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Data not transferred to bootstarp modal based on the value of the row I have a page which display few fields of the record. There is one button view in front of every record. When I click on the view button it opens a bootstrap modal. This modal to display the complete details of that record. Basically, i want to tr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623455",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Component with a map not appearing after refresh on safari on IOS The component appears on refresh on firefox and edge, but on ios safari mobile refreshing it doesn't appear you need to go to "homepage" then back to "our team" from nav bar.
There is another component with map, however it does not have props or a pro... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623456",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: In WinUI 3 and C#, how do I bind to the auto-generated CheckBox controls from a ListView that has the property selectionMode="Multiple"? I have the following XAML code that binds to an object to populate a ListView in WinUI 3 with C#:
<ListView x:Name="filterListView" selectionMode="Multiple"
<ListView.ItemTemp... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623457",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to return the data of an async function? I can't seem to figure out how to return the data so I can use it as a react component from my asynchronous function. I lack the understanding of how to get my data from the promise or async function to a normal function that I can call for a component since I know you ca... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623460",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Openwrt MT7628 dan eMMC kernel 4.14 : Unable to communicate /read/write I am trying to enable eMMC support for MT7628 dan. For this I have freed up ethernet port 2,3 and 4 using mediatek,portmap = <0x18>; in switch node. Port2 used for UART2 and remaining to be used for eMMC support. I have done required changes to ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623461",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to overload an operator with multiple parameters like a = b = c? This was asked in m midSem, and I cant find answer anywhere.
I tried like this
void operator =(int a, int b ,int c){
c=b;
b=a;
}
but is this correct?
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75623462",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: 5D Scatter Plot is too big, how to modify the size attribute? I have followed this tutorial:
https://towardsdev.com/multi-dimension-visualization-in-python-part-i-85c13e9b7495
https://towardsdev.com/multi-dimension-visualization-in-python-part-ii-8c56d861923a
I see that the 5D scatter plot is too big, how to modify ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623470",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: MySQL + symphony querybuilder with paginator limit : wrong number of entities My database : MySQL
Project : Symfony 6
Table structure :
1 article may have many comments
each article must have 1 article.
Steps :
1 - I can list my articles filtered by user roles.
2 - I can list my articles and their comments.
3 - I ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623472",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: No Circle count down timer is showing i am trying to make a circle countdown timer and it is not dispaying nor giving an error No Circle count down timer is showing
No Circle count down timer is showing
No Circle count down timer is showing
No Circle count down timer is showing
No Circle count down timer is showing... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623477",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Why is my google slides always displaying contrast colors. I'm a hundred percent sure that I didn't turn on high-contrast When I didn't click at a slides, it is normal. But when I want to edit or view and click it in, it appears in contrast colors. I can barely see the words.
im worried
very worried
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75623478",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: What causes MPI_Irecv and MPI_Testall to a fail? I have a custom MPI struct that get passed between processes. Previously I was sending/receiving each struct individually and it was working fine, but the performance bottleneck is MPI, so I am trying to send/recv in chunks (If this doesn't help performance than I ca... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623479",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Flutter responsive design for container height and width, fontsize of text, padding, margin, etc What is the best approach/ best practice to design a responsive Flutter app? Like the width and height of a container, fontSize of a text that is responsive to different size of device.
I have tried like
Size size = Medi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623485",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Why does the mp3 player work correctly in FireFox, but does not work in other browsers? The problem is rewinding the duration of the track. This works in FireFox, but doesn't work in other browsers. I even reset the cache, everything works correctly in FireFox. Why is this happening and how to fix it?
JavaScript
let... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623486",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: cursor.close() UnboundLocalError: local variable 'cursor' referenced before assignment I have a Python Flask CRUD operation code. The GET, PUT, and DELETE methods are working fine, but the ADD method is not working. I am getting the error message "cursor.close()UnboundLocalError: local variable 'cursor' referenced b... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623487",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Query that returns only the rows where multiple criteria in same column are met
Client ID
Product ID
Product Description
Quantity
Contract Value
1000
20000
Product A
10
20,000
1000
20001
Product B
1
150
1000
20002
Product C
25
5,000
1000
20003
Product D
4
200
1002
20000
Product A
20
40,000
1005
200... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623490",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: while updating the record,when i'm fetching details the date field is not receiving the value from database instead its showing empty or placeholder <label for="birth"><b>Date Of Birth</b></label>
<input type="date" class="form-control w-75" placeholder="enter your Date Of Birth" name="birth" value="{{date... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623492",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to connect external SocketIO server in REST api express server? I have Socket server running on one docker container and I also have REST api express server running on another container. How to connect SocketIO server in express server?
Client will call express server apis, then in that REST apis we will call th... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623495",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Media queries css for more than 800 width devices I am trying to adjust the size screen from desktop to mobile in Visual Studio Code. The question is: modify the CSS by using media queries, so if the viewport is more than 800px it should display like this:
and if less than 800px it should display like this:
That's... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623496",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Convert from string to Pyspark Schema I have a pyspark database schema in form of a string:
Schema = "StructType([StructField('C_0_0', StringType(), True), StructField('C_0_1', DecimalType(10,6), True), StructField('C_0_2', StructType([StructField('C_1_0', StringType(), True), StructField('C_1_1', ArrayType(StringTy... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623498",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Toggle screens bearing similar text fields I am learning dart and flutter programming. I am creating two screens: sign in and signup page but since they share the same code with just a few different code lines, i wanted to design one code and use an enum and if statement to make it look like two screens and then tog... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623501",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: is there any extension for product option's price(product variation's price) in opencart4? I want to add float price for the product option's price but in the latest version in opencart4 didn't provide this facilities for the uers... It took only integer value and neglect float ( 1.023 ) price or convert it into rou... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623502",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python, get the index of maximum value in a list of lists I've got the following list of lists:
[[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[1.0, 4],
[0, 0],
[0.75, 3],
[0.75, 3],
[0, 0],
[1.0, 4],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 1],
[0, 2]]
I'm trying to get the index correspondi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623506",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: modify file content using debian/rules I'm maintaining a Ubuntu PPA with latest version of KeePass2 password manager. But it always has a mis-match version number between KeePass.exe.config and KeePass.exe files.
I can modify the version number locally by using script:
#! /bin/bash
version=$(/usr/bin/monodis --asse... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623509",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Git not found in docker container My Dockefile is based on python-bullseye:3.9 image.
The line of installing git:
RUN apt-get update \
&& apt-get install -y wget unzip vim git
Build result:
...
Setting up libldap-2.4-2:amd64 (2.4.57+dfsg-3+deb11u1) ...
Setting up libcurl3-gnutls:amd64 (7.74.0-1.3+deb11u7) ...
S... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623510",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Is there any way to use Version One API to fetch team room scorecard details? How can I fetch the details given in the image like total story points, detail estimate, capacity hours, done hours by using version one API.
Version one scoreboard
I have tried using many assets type like "Story", "Timebox" but can't find... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623511",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Recover file in pg-admin storage manager I have my code for data-mart in pgadmin server. Accidentally i replaced it another code.
Now how can I get this file pre 1.5 data mart code which i had saved before modifying on date march 3?
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75623512",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to prevent spawning a new thread in given code block of rust function/closure Given that a function or closure is provided as an argument of another function run
fn run<F, O>(f: F) -> O
where
F: Fn() -> O,
{
f()
}
with the constrains that new threads cannot be spawned in F implementation code block?
Is ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623514",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is it possible to copy the ErrorLog using a adb command and store it in a String in android What I am trying to do
*
*I have an APK where there is a crash where onDestroy is called.
*I am trying to copy the error log and upload it to the analytics.
What approach I am trying
*
*Is it possible to copy the error ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623515",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I receive (OSError: [Errno 9] Bad file descriptor) when attempting to open and append a file in python I am creating a simple flask website with a login and register page. The login page works fine with login information stored in a csv file. On the register page, after validating username and password, my code fail... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623520",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: angular bootstrap datetimepicker not woking properly In angular bootstrap datetimepicker choose date of previous month and datepick again then current month is displayed in popover
When I change the date, I get an error in the console.
I followed this link
https://stackblitz.com/edit/ng-bootstrap-datetimepicker?fi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623521",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Your branch is ahead of 'origin/branch-A' by 12 commits This is a known problem on SO. The solution I believe is git reset --hard origin/branch-A (I am not 100% sure).
*
*I created a merge request from branch-A to branch-B. The changes got merged successfully to branch-B, no problem.
*I am currently on branch-A.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623523",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Could not execute method for android : onClick E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.tashi.minerfinalpro, PID: 4599
java.lang.IllegalStateException: Could not execute method for android:onClick
at androidx.appcompat.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatVie... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623524",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Using boto3/MQ to list queues on a MQ broker I've tested the methods listed here: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/mq.html, but none return the actual queues running on the broker.
Is there a way to list the queues running on a broker using Boto3?
I'd like to get the queues ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623525",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: trino connector to flat files I am trying to create trino connector to query the data available in a flat file (say a text file with 100 records, each record is separated by newline and each column separated by comma). Trino documentation page (https://trino.io/docs/current/connector/localfile.html) shows how to cre... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623527",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to Return Just the Value of the first Document in MongoDB without knowing the Query Filter I am trying to extract the value of a field by appending that field’s name to my query when using findOne()
My mongoose collection called products:
{ "_id" : 1, "product" : "Bat", "sizes" : [ "S", "M", "L" ] }
{ "_id" : 2,... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623530",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Prevent .exe script to run from spring boot request body I am using SpringBoot in my application.
In one of the POST api, request body parameter are saved in DB and in GET call these parameters are downloaded as csv.
Request Body:
{"gender":"M","emailId":"test@test.com",,"mobileNo":"7771",
"notes":"=cmd|'/Ccmd.exe'!... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623538",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is there an algorithm to search for the best choice in a turn based rpg I have a turn based game where the player chooses between 6 moves, the first 3 can be targeted towards an enemy, and the last 3 moves cannot be targeted. I want to create an algorithm that is able to find the best move to use for a given situati... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623539",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Sending Private access token (PAT) in Authentication header to download an archive for a private GitHub repository in Inno Setup script I'm writing an install script that's supposed to download a private repository from GitHub:
if Pat <> '' then
begin
Pat := Pat + '@'
end;
Url := Format('https://%sgithub.com/<MY_... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623541",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: line 1: This: command not found I have an issue. Whenever I try to run any npx command on my windows 11 system I get this error
C:\Users\JOEL MATHEW\node_modules.bin/../node/bin/node: line 1: This: command not found
I have been facing this issue for a long time and it's still bothering me.
$ npx -v
9.5.0
$ npm -v
9.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623542",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Fetch country from cities in excel and save the result in excel as well using python Hello all im trying to fetch country from cities in excel and save the result in excel as well using python `
pip install pycountry
import pandas as pd
from geopy.geocoders import Nominatim
import pycountry
geolocator = Nominatim(... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623546",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Subfigures in Quarto (pdf) I was trying to insert multiple figures (subplots) in Quarto for the pdf output. I'm not generating plots in the code but importing .png files to generate the figure.
I tried in 2 ways, but it wasn't successful. Is there a way to achieve this in Quarto?
Below are my unsuccessful examples:
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75623547",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |