text string | meta dict |
|---|---|
Q: How to iterate through a list of tuples and make pairs out of them? I have a list like this:
point_list = [(54,8),(55,9),(56,10),(57,11)]
and now I want to make them as pairs like:
[(54,8),(55,9)],[(55,9),(56,10)],[(56,10),(57,11)],[(57,11),(54,8)]
and I have a function which takes in 2 point coordinates and retur... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629065",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Can I use user filteration on change resource Nofitication subscription using Microsoft Graph API? I am currently using Microsoft Graph API to access Microsoft teams messages information using delegated user.In the process I have subscribed to change notification for particular channel messages and extract messages ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629066",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can i automate the merging from staging to production? I have a project on gitlab with a staging and a production branches, i want to have my feature branches being automatically merged into staging with merge requests and the staging being merged into production with a manually created merge request.
The proble... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629069",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Why when split a string into a list of substrings, without removing the separators, parts of this original string are lost in the splitting process? import re
from itertools import chain
def identification_of_nominal_complements(input_text):
pat_identifier_noun_with_modifiers = r"((?:l[oa]s|l[oa])\s+.+?)\s*(?=... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629071",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Secret Manager GCP, certificate PKCS12, Spring boot 2 I have question
*
*I added Secret Manager (I upload file certificate PKCS12) in GCP in this part.
*I need to add in JVM the certificate.p12 (now use java 8)
then:
call certificate value from spring boot this way:
${sm://projects/MY_PROJECT_ID/secrets/MY_S... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629074",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is there a name for a convolution that has the same size as the input? I have an input tensor of dimensions (C, H, W) and kernel with size (H, W).
It feels like there should be a name for this but I am unaware and can't get Google or ChatGPT to show it to me. Is there a name for this?
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75629075",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Django CBV with DropzoneJS and django-storages backend for multifile upload form won't validate I am using django-storages with (GCS backend) and would like to be able to use DropZonejs to upload multiple files to a model that has a FK. This is where I've gotten so far. It always comes back what Bad Request, form no... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629077",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Valid Regex causes "Unable to check" if used as HTML input's pattern
Unable to check <input pattern='/^[a-zA-Zà-úÀ-Ú0-9äöüÄÖÜß@\s+-_.,{}[]()#']+$/'> because the pattern is not a valid regexp: invalid identity escape in regular expression
First Try: <br />
<input type="text" pattern="/^[a-zA-Zà-úÀ-Ú0-9äöüÄÖÜß@\s\... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629078",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Expected TensorFlowOpLayer but TFOpLambda returned I am creating a keras model with the Functional API. However, not all the intermediate layers are of the type I expect. Specifically, this is the code:
def alpaca_model(image_shape=IMG_SIZE, data_augmentation=data_augmenter()):
input_shape = image_shape + (3,)
###... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629079",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: how to use ffi-napi with hwebpack what i want to do is use webpack while using ffi-napi without the need to do an externals method
since the webpack is being shipped to users , as far as i know the native module cant be webpacked
but i wonder if there is a solution that failed to get across
my webpack file
const pat... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629081",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Loop - Select row, find value, replace value How can I loop this?
this is currently selecting row 4. Finding the value in AO4, and replacing the value in AQ4.
How can i loop this until the end of the sheet? Based on data in column E
next would be select row 5, find value in AO5, replace with value in AQ5
VBA Code:
R... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629084",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to prevent ClassLoader leaks when using ClassValue? For my tests, I'm using rest-assured which is partially written in Groovy.
In my application, I use a custom ClassLoader to load rest-assured and Groovy classes, after each test, the ClassLoader is closed and ready to be collected by the GC.
In case, I launch m... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629086",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Deallocating memory for array within a linked chain struct I am trying to deallocate the memory used by different struct that are part of a linked chain.
The dumpGroupingOrder() function is supposed to deallocate the memory used, however the whole program ceases to function once it is used. Without it the program wo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629089",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: var debug = require('debug')('express-locallibrary-tutorial:server'); I'd like to know mean of it. I'd like to know mean of it I'm learning Express for backend development.
So I built express-locallibrary-tutorial from GitHub.
But I don't understand
var debug = require('debug')('express-locallibrary-tutorial:server'... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629090",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why SQL Query with LEFT JOIN is giving this result? I have the following tables defined by:
CREATE TABLE db.books (
id INT auto_increment not NULL,
title varchar(100) NULL,
category_id INT NULL,
PRIMARY key (id)
)
CREATE TABLE db.books_categories (
id INT auto_increment not NULL,
category v... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629093",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: React seems to not execute sequentially My component is built like this:
function myComponent(props){
const [state, setState] = useState("WAIT")
function run(){
setState("LOAD");
props.apiFetch();
setState("WAIT");
}
return(<h1 onClick={run}>{status}</h1>)
}
When I click on the element, state is... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629094",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Split a dynamic string as levels I have table containing dynamics string that changes in length as per the example below
string 1: A.B.C:D.E.F:G.H.I:J
string 2: A.B.C:D
I need to split the string to get to the following design :
level_0
level_1
level_2
level_N
level_Attribute
s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629095",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Using Yardstick to calculate RMSE for aggregate of predictions per group Sometimes I don't want to assess my models on their performance on predicting single observations, but rather I want to assess how a model performs for predictions in aggregate for groups. The group resampling tools in rsample, like group_vfold... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629097",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: In C#, using "using" results in errors, is there a better practice than just not using "using"? I have the following method:
[SuppressMessage("Reliability", "CA2000:Dispose objects before losing scope", Justification = "If we dispose of the csvWriter, it won't be available to write.")]
public static MemorySt... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629101",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: "or" in pip constraint On conda-forge, tzdata has version numbers like:
*
*2022a
*2022b
*2022c
But on PyPI, the version numbers are like:
*
*2022.1
*2022.2
*2022.3
How can I set a requirement, in my pyproject.toml file, to require at least tzdata 2022.1 or 2022a?
I've tried guessing
dependencies = [
"tzd... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629102",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: The expected type comes from property 'onChange' which is declared here on type 'IntrinsicAttributes & ISelectInput' I tried to pass an event to my onChange event. But I get intrinsic error all the time.
I made my selectInputInterface format this way:
interface ISelectInput {
placeholder?: string;
onChange: () ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629103",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Turbocharged realtime data table search not functioning I'm just trying to get search functionality working with form_with and Turbo, however I seem to be failing at the first hurdle. I know where I've got to isn't fully Turbo charged, but my understanding is at this point when a name is searched it should at least ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629105",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to get data using API? I need to get data using API, but my code cannot open the connection. I would appreciate if you could let me know how to resole this error.
Code:
library(tidyquant)
library(jsonlite)
library(tidyverse)
library(readr)
library(igraph)
library(dplyr)
library(lubridate)
library(data.table)
Sp... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629108",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Use query result as a limit parameter in the next query So I have a query that returns a count of employees from a table and I would like to use it as a limit for the next query. I tried something like:
select * from table2 limit (values select * from sampleSizeLimit)
and
select * from table2 limit (select * from s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629111",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Formula or trick to tell when Excel data goes from increasing to decreasing I hope this isn't a stupid question, but I am working on a project that involves data increasing and then decreasing. I need to find when that shift happens. I usually just do this by scrolling through the data and visually finding it, but I... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629115",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is there a way to bulk-download all texts from a certain Project Gutenberg bookshelf? I need to download all .txt files from this bookshelf.
Is it possible via wget? I can't seem to find any parametres to pass regarding the bookshelf categorizing.
A: It's a little outdated but you can try https://github.com/aparris... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629116",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Google Sheets script - Compare sheets using multi-dimensional arrays, write results to sheet I have derived aspects of this script from similar topics to improve my knowledge of multi-dimensional arrays through practical use, but I am not sure how to approach the comparison and population step of this script, as I h... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629118",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Moving files from one dir to the new dir. Removing unneeded subfolders when replicating file path? Im trying to move files inside source_dir that has a folder structure like (folder>AAAA>03-03-2023>file.txt). I want to move the AAAA Folder and the file.txt to the new destination (dest_dir). Right now my code is ba... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629125",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Algoritmo di ordinamento in C Ciao, ho un problema. Devo creare un algoritmo di ordinamento che faccia questi passaggi:
*
*Trovi il max e il min in un vettore, e salvi il min nella prima cella (chiamata p) e il max nell'ultima cella (chiamata r).
*Dopo aver fatto questo il vettore verrà scomposto in un sotto-vet... | {
"language": "it",
"url": "https://stackoverflow.com/questions/75629130",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to extract a string between two points and a dot I have the following string in R:
11:22334455.CEL
I would like to extract only the number series after : and before ., that means
22334455
I was trying with gsub("\\:*", "", 11:22334455.CEL), but I got the following result:
11216803.CEL
How could I fix the gsub... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629132",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: how to fix flutter desktop screenshot plugin error
I had an error when building flutter windows application with
screenshot plugin.
Launching lib\main.dart on Windows in debug mode...
Nuget.exe not found, trying to download or use cached version.
CUSTOMBUILD : error : Couldn't resolve the package 'screenshot' in... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629133",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Trouble when publishing website in Quarto Pub using VS Code enter image description here
I am trying to publish this website into Quarto Pub.
When rendering on the local host, it worked just fine. But when I ran the code " quarto publish quarto-pub" on the terminal. It generated this error. Please help me. Thank you... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629136",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: trigger click on mouse find previous i element I have a page where i use an i element to add a row to form:
jquery:
$('body').on('click','.newTask',function(){
var id= $(this).attr('data-tableId');
//ajax call to get
<tr>
<td><input type='text'></td>
<td><input type='text'></td>
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629141",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I am trying to make signOut work using firebase I am creating a Netflix-clone using firebase. When setting up firebase auth signing in works but following the documentation for signing out its not working. I keep getting (_firebase__WEBPACK_IMPORTED_MODULE_3__.signOut is not a function) error. Has anyone had this pr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629145",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: extract rows of a datetime dataframe pandas python i have this following Datetime dataframe that i have set the datetime column as my index
Datetime ratio dif
2022-06-09 12:33:00 -0.3861241598107547 -299.50183804712964
2022-06-09 12:34:00 -0.360130489922861 -274.88184087028105
20... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629147",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: MvvmCross Navigation to open a New Windows and let the original be open I wish to open a new window and not a view inside another window. I have a notifyicon with a menu from the menu I whant to open a new windows from my MainViewModel. Can that be done? It comes up with this error.?
System.InvalidOperationException... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629148",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to trigger the modal popup from click a button in ELixir Phoenix Phoenix 1.7 generator comes with a modal in "CoreComponents".
The instructions do not explain how to toggle it. I am not very good at working with Elixir Phoenix and I am trying to learn.
The base syntax is:
<.modal
id="user-modal"
show >
Th... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629153",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to fix FireFly Fabconnect container start issue: "User credentials store creation failed. User credentials store path is empty" Sorry upfront for the long question. I wanted to make sure all the information was laid out for you.
I am having issues getting my FireFly Fabconnect container to be able to read/see/re... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629154",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is it possible to set service connection authorizations using az devops command? It looks like az devops can be used to manipulate service connections in ADO. But just creating a service connection is not enough in my case. I have to add authorizations to certain ADO teams to manage the new service connection.
Today... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629155",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I am attempting to create an interactive map in tkinter using mpl_toolkits Basemap import matplotlib.pyplot as plt
from mpl_toolkits.basemap import Basemap
import tkinter as tk
from matplotlib.backends.backend_tkagg import FigureCanvasTk, NavigationToolbar2Tk
from matplotlib.figure import Figure
# Create the window... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629156",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: PhpStorm Testing: "Connection was not established. 'Xdebug 3.2.0' extension is installed. Check configuration options." My Settings
*
*PhpStorm Version: 2022.3.2
*macOS: 13.2.1 (22D68)
php.ini XDEBUG Config
[xdebug]
zend_extension="xdebug.so"
xdebug.mode=develop,coverage,debug,profile
xdebug.idekey=PHPSTORM
xdeb... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629159",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to create a link to a page managed by Sulu? I am using Sulu as CMS and added some pages. Additionally I have some custom Symfony actions with their own twig templates.
Now I want to add a link into the twig template that directs the user to one of the CMS pages. How can I achieve that?
I know about sulu-link but... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629160",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Java using AWS SDK with S3 object versions I am using the AWS S3 SDK to upload objects to various s3 providers. The uploads are multi-part. On completion of an upload if the bucket is configured for versioning then my expectation is that CompleteMultipartUploadResult will contain the versionId. This expectation does... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629162",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Power Query : Add Week column using the column position I want to add a new column with the day of the week, from another date column.
This code works :
#"Add DAY OF WEEK" = Table.AddColumn(#"Add DAY", "WEEK DAY", each Date.DayOfWeek([DATE_JOURNEE_PRODUCTION], Day.Monday))
But I cannot replace the name of the date ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629164",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Find Elements ın Python Selenium Im trying to find some button elements with XPATH,CSS_SELLECTOR since yesterday but my codes is not working. I dont understand I have one of the tags I chose in the website but cant find the element what is the problem ?
from selenium import webdriver
from selenium.webdriver.common.k... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629166",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python class member containing list of itself I wanted to create that object structure:
@dataclass
class OrientedNode(DataClassJsonMixin):
neighbor_oriented_nodes: List[OrientedNode] xxxx error
@staticmethod
def decode(self):
pass
Unfortunatly, the member list declaration doesn't to be acce... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629169",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: JavaScript find property match with in formcontrol object Hi I've an array of object which I'm looping
let DOArr: [] =[]
{
"selectedDC": {
"DC": [{
"id": "23293839",
"name": "Legal · L5",
"active": true,
"parentid": "23293827",
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629170",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to optimize dockerfile multi-stage build with ODBC 17 driver installation: review needed I am learning Docker and Dockerfile best practices. What is the best way to install system packages with apt-get that serve on at build or run-time by taking advantage of Docker's multi-stage build (in this case gnupg, curl,... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629172",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I am trying to deploy micro service in ECS fargate getting below error Stopped | CannotStartContainerError: ResourceInitializationError: unable to create new container: mount callback failed on /tmp/containerd-mount2307274170: open /tmp/containerd-mount2307274170/etc/passwd: no such file or directory
Can some one he... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629174",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can Apache Camel unmarshal CSV records into a POJO using header names? I found several examples of Apache Camel Bindy unmarshalling CSV records into POJOs using field position:
@CsvRecord(separator = ",")
public class Person {
@DataField(pos = 1)
private String name;
@DataField(pos = 2)
private Stri... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629178",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to share data to all view in codeigniter 4? i dont find any answer to share data to all view in codeigniter 4
anybody can share me how to share data to all view in codeigniter 4.
i am using basecontroller to share data, but i think it not perfect. in laravel have file appserviceprovider, but in codeigniter i don... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629180",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: What is the difference between cluster computing and parallel computing? I have a big computational problem. Parallel computing breaks it down and shares with other processors and all the processors compute the instructions simulateously.
Cluster computing is like a cluster of processors and they do the same but one... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629187",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to Fix ValueError: Embedded Null Character in Python Code for Uploading Attachments to Asana Task? I am working on a Python code that uploads an attachment to an Asana task using the Asana API. The code loads an Excel workbook, gets the attachment file name and path from the worksheet, encodes the file data usin... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629188",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Export table to excel file with pagination and filters I haven't found anything online and was hoping someone here could help me.
In my application I have a table complete with pagination and column by column filters, the problem is that if I now go to create an excel file with these functions
Excel-service-ts
impor... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629189",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Register multiple instances on IHostesService providing different IConfiguration to each instance I want to instance multiple agents, instances of the same long running task, injecting a specific configuration (a different settings.json or, better, a IConfigurationSection of the same main appsettings).
So I'm defini... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629191",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do i solve this strange error in my .Net MAUI page? Trying to learn MAUI i prepare a page where there is a Label that is hidden. At a certain event the label becomes visible. All it works ok, but when i put this label inside a "CollectionView" trying to bind her with a value from a database the Label become "not... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629192",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: GA4: manually sending parameters UA has such as GeographicalOverride? the Measurement Protocol (Google Analytics 4) reference does not have information about parameters such as GeographicalOverride present in the Measurement Protocol (Universal Analytics) reference.
They appear to be 'automatically populated' as des... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629193",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Run Angular directly from dist by double clicking index.html Up to Angular 13 I was able to run the project by double clicking index.html from the dist folder. The only requirement was to add
*<script>document.write('<base href="' + document.location + '" />'); </script>*
to index.html.
This doesn’t seem to be enou... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629194",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Spring Cloud Data Flow - relaunch/retry Composed Task from the middle I have a Composed Task in Spring Cloud Data Flow server as below:
If task-b produces the exit message as FAIL then it will execute task-d and end the flow.
I would like to retry this job/composed-task from task-b again once the issue was fixed so... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629196",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I solve this error while trying to create cluster via pygeoda library I'm trying to create clusters of a dataset with 'pygeoda' library based on a distance based wight and the max-p greddy algorithm, using the area of each polygon to indicate the maximum area that each cluster must have.
The problem is that ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629199",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Using PLY to parse C header files As a means to an end in a larger project, I am trying to write a simple C compiler using the python PLY library. I'm really struggling to understand how the parser terminates(?) after successfully finding a sequence. As it stands, it seems to correctly identify the first line in the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629201",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Unable to make AdalineGD Class to work: Unable to coerce to Series, length must be...Error still struggling to make the AdalineGD class to work.
When I run something simple like the following
df = pd.read_excel("MyDataframe.xlsx")
X = df.iloc[:,2:10] # This is a Dataframe of Predictors
y = df.iloc[:,86] # This is... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629204",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: PyQt do not use system theme
So, the picture with the calculator is my system theme Numix Dark. And the picture with the button is a PyQt6 application. Problem: I want my app to look just like any other app in a Mate desktop with Numix Dark. Code:
from PyQt6.QtWidgets import *
from PyQt6 import QtCore, QtGui
from ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629205",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: ERROR TypeError: undefined is not a function, js engine: hermes Please help me to fix this error I faced this issue when I was trying to add ReactNavigation to my app. Please help me out, guys.
I really tried hard to fix this error but I couldn't. I don't know why I am facing this issue. If I remove ReactNavigation ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629209",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to return a Json from a Sql Select Query and place it in a view [ASP.Net 6 MVC] I want to find a row by Id and get details about it then convert the result into a Json and return it to a View.cshtml where it can be seen. For example i want to get all Subjects and Grades a student has got so far.
This is what i t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629210",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: merge sort - divide and conquer algorithm using python I have a 2D array i wont to sort it for example:
array=[[b, a, c], [2, 1, 3]]
I want to have
array=[[a, b, c], [1, 2, 3]]
So far what I've come up with is:
enter image description here
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75629212",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Create a flutter app without interface to print results to the console like CLI I just wanted to test a flutter package to create two separated ways to get results. One is from CLI and other is from flutter interface.
But that package is only supported for flutter because of some dependencies, that`s why I want to r... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629217",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Greengrass-cli: Command not found I am working on AWS Greengrass with raspberry pi4. I have successfully installed all the necessary software for this and also have done some deployments but after the one or two deployments, I found error: bash: greengrass-cli : command not found. Can anyone tell me about the issue ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629221",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: video on ended plays again from start instead of stop/pause <video class='vsingle' id='vsingle' src='ph/video.mp4' poster='ph/vposter.jpg' controls></video>
js
$('#vsingle').on('ended',function(){
$(this)[0].load();
});
This code results in playing video again from start
I want just to reload it, so starting p... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629223",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Fluent Nhibernate with oracle full text search Contains Im using Nhibernate with linq query and need to use full text search with 'CONTAINS' like
CONTAINS(text, 'oracle', 1) > 0;
As i seen there is no solutions for generate this keyword with linq, there will be easier to use custom sql query, but i need to get IQuer... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629225",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I calculate Jaccard Index for a batch of images? Context:
*
*I have done a detection application. For each image, M mask detections are made. Each image has N ground truths elements. For each image M and N can be different.
*A mask is of shape [widht,height]
*I've grouped those images in batches of siz... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629227",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: PLC4X with PEAK PCAN-USB I wonder, if there is an opportunity to make PLC4X CANOpen run with PEAK PCAN-USB adapter.
has anyone a proposal to use PLC4X CANopen with PCAN-USB or how to implement a suitable transport layer for doing this ? Thanks for efforts!
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75629228",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: ggplot & values: where ggplot get these values if I've set a specific ones? I'm trying to plot the wage for each individual of my dataset. In the x-axis I want his/her age and the y-axes the amount of the wage.
This is a sample of my dataset:
tpens = is the wage
eta = is the age
> head(final2, 20)
nquest nord sex... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629232",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how can i build an application which entire UI is a 2-d indoor map of my university's building? i'm trying to create an application, in which the entire UI is a 2-d indoor map of my university's building.
for both phone and desktop.
take snapmap(of snapchat) as an example, but except the world's map, it's just one b... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629239",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Get connected AC-Adapter ( power ) from Windows Laptop through WMI Was wondering if it is possible to get the model name or supplied wattage from a WMI query on a windows machine. I've seen laptops prompt a message about power adapter not supplying enough power on startup so I thought this data may be found in WMI s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629240",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Connection to a server with Ubuntu: ssh: connect to host 172.20.xxx.xx port 22: Connection timed out I have a workstation (Windows) at my office and a laptop(Windows). I wanted to use the workstation as a server to connect with my laptop at home. I work with Ubuntu on both of the computers.
I followed the instructio... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629241",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Number of days between today and a certain date (Pandas) I have a dataframe df which looks like this. Date is in a text format.
Reference
date
RefA
2022-11-24
RefB
2021-05-14
...
...
My question is seemingly simple - I would like to create a new column, with for each Reference the time difference (in... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629244",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Try to understand why i'm having an unexpected UNMET PEER DEPENDENCY error When I npm ls react-dom it returns on my project the following graph
package1@28.4.0 /Volumes/Workspace/package1_WT/dev
├─┬ @storybook/components@5.1.11
│ └── UNMET PEER DEPENDENCY react-dom@16.14.0
├─┬ @storybook/react@5.1.11
│ └─┬ @storybo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629246",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Change Sample Result Save Configuration for Sumary Report with jmeter maven I have a JMX project with a "Sample Result Save Configuration" for "Sumary Report" as reported in the attached picture. And that JMX project is executed with Jmeter Maven plugin.
Now I would handle dynamically the Configuration of report fro... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629248",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Headless chrome disconnections during jasmine tests I have an angular 15 project and I run my tests with jasmine and karma:
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.0",
"@angular/cli": "~15.0.0",
"@angular/compiler-cli": "^15.0.0",
"@types/jasmine": "~4.0.0",
"autoprefixer": ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629254",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Looking for an easy way to secure access to a service for retrieving user data in blazor I have a blazor server application that uses EF Core to retrieve user data from the database. My problem is that I want to restrict the retrieved data based on user role. As in a user could only ever see entries related to him b... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629256",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Edit tables with Dataframe I have a list named title and I want to add this list to the data as the main title and save the output to excel as below. Can you help me
Output
I couldn't add the main title and add the all table to excel
import numpy as np
import pandas as pd
title=["Sabahci","Oglenci"]
columns=["No","N... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629258",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: XSLT mapping to add missing child tags in the same sequence I have the below input xml where some mandatory xml tags are missing like <email_template_id>
which needs to be reproduced in the output in the same sequence
<?xml version="1.0" encoding="UTF-8"?>
<rsp stat="ok" version="1.0">
<result>
<total_results>700</t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629260",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: xvfb-run : command not found in chrome:headless mode I am trying for the CI integration of testcafe in GitHub Actions.
Our runner does not have xvfb. So we are trying to run in headless mode to avoid xvfb error. But we are still getting:
Command failed: xvfb-run --server-args="-screen 0 1280x720x24" npx testcafe ch... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629263",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to check in which bin an entry of a pandas data frame group belongs? I have a following problem.
I have a pandas data frame, eg something like this:
example = {'Player': ['A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
'B', 'B', 'B', 'B', 'B', 'B', 'B', 'B',
'C', 'C', 'C',... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629264",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Graphics drawing: Is there always an automatic call to super.paintComponent? I am testing the following. I want to draw a rectangle at each place I press the mouse. I only want the screen to be cleared when I press the key 'c'. I expect that every place I click should show the rectangle. That is not happening. I... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629267",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to bucket a list of returns based on % ranges I recently downloaded open an closing prices of the S&P500 from 1925 until 01-03-2023 and calculated yearly returns on python colab. I was wondering how i could bucket those almost 100 yearly returns in buckets based on some percentage limits, for example -15%...-10%... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629268",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How is the lParam of LVITEM stored in virtual list control? In a virtual list control, I can obtain a LVITEM by a function OnGetdispinfoList. But if I add additional information here through lParam and assign this to LVITEM, Is this pointer-to-data (my guess so far) really stored in the LVITEM? Because virtual list ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629270",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Typescript falls back to the default value of generic type for no reason Sorry if the title is not very obvious. I don't know what is the problem so I couldn't come up with a good question. This is a simplified version of the problem that I'm struggling with:
type Key = unknown[];
type Option<TKey extends Key> = {
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629273",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Length mismatch: Expected axis has ' ' elements, new values have 1 elements i'm trying to select a specific column from the data set but i always get the same error :
Length mismatch: Expected axis has 31 elements, new values have 1 elements
A: The code in your question is:
import yfinance as yf
import yesg
ticker... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629276",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: sqlalchemy is not able to connect to a database when the script is compiled to an executable with pyinstaller I have a python script which uses sqlalchemy to set up a connection to an external database. It works just fine when I run the script within VS Code, but as soon as I make an executable file out of it with p... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629278",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: nodejs hashing multiple times I'm doing this exercise and I'm not obtaining the correct answer. I have to hash a word 3 times in a row (sha256, sha384, sha512) using nodeJS.
This is what I've tried:
function findHash(password) {
const hash_256 = crypto.createHash("sha256").update(password, "utf-8").digest("hex");
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629280",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: In a web application, what would you consider the best way to store secret keys obtained via an SDK? Currently I am working on an application that requires secret keys to encrypt and sign information generated by the client and transmited over the wire, these keys are granted per user.
Currently when the user logs i... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629282",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How does go-logr return a new Logger Instance in this function? I don't understand this function from go-logr:
func (l Logger) V(level int) Logger {
if l.sink == nil {
return l
}
if level < 0 {
level = 0
}
l.level += level
return l
}
From the docs on this function
// V returns a new Logger instance f... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629283",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Slice a string in np.where data = [10,20,30,40,50,60]
df = pd.DataFrame(data, columns=['Numbers'])
df['add_7'] = (df['Numbers'] + 7)
Here, I have a dataframe that looks like this:
Numbers
add_7
10
17
20
27
30
37
40
47
50
57
60
67
What I want to accomplish, is that if the add_7 column is a ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629285",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Get data from terraform Output and use it as input I'm using Terraform to build and automate infrastructure and I'm having trouble in finding the solution to grab the output of an Azure WebApp, specifically the Public IP addresses used by that WebApp and use them as inputs to update a Cloudflare list.
output "webapp... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629286",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python, I can print the expected result but I can't store the result without getting an error with the API ete3 I am using the python API ete3 for phylogeny analysis. I am looping over a tree and a dictionary and when the key and the leaf have the same ID, I firstly want to create new nodes (child) which are the key... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629288",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Can't receive coredata update by silent push I'm using coredata + cloudkit + nsfetchedresultscontroller and can't receive core data update by silent push as it's said in documentation.
I've double checked all "standard": registering for remote notifications, automaticallyMergesChangesFromParent = true, the same iclo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629289",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to fill in a dataframe column based on another column of the same dataframe using a dictionary I am working with a dataframe in Python with a 'Country Name' and a 'Region Name' column. The Country Name does not have any nans, while the Region Name has.
I have created a dictionary:
dict = {
"Central and Easte... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629290",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Excel Conditional Statement - 2 cells equal keep 1 based on value of another Hi I am looking for help writing an if statement in excel. I have a data set containing zip codes, and a residing/adjacent column. I would like to create a new column that contains either blanks, keep, remove based on the below conditions.
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75629292",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |