text string | meta dict |
|---|---|
Q: Cannot create a receiver function in Go on Jupyter Notebook I'm using Go in Jupyter Notebook as a way of documenting. I run the following compose:
version: '3'
services:
jupyter-go:
image: gopherdata/gophernotes:latest-ds
ports:
- "8888:8888"
volumes:
- "./src:/src"
stdin_open: true
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598301",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Create a custom "Add Appointment" Button with Devextreme React Scheduler I´m looking all over internet for a way to implement a custom "Add Appointment" button on the Toolbar of the React Scheduler component from @devextreme. Creating an appointment with double click on the time view works really good, but I need to... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598303",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Pyspark: How to write table to AWS S3 file I try to write a simple file to S3 :
from pyspark.sql import SparkSession
from pyspark import SparkConf
import os
from dotenv import load_dotenv
from pyspark.sql.functions import *
# Load environment variables from the .env file
load_dotenv()
os.environ['PYSPARK_PYTHON'] ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598306",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is it possible to show two Databricks dashboards side by side in another Databricks dashboard (or otherwise) I have two Databricks dashboard I would like to display side by side. Is this possible?
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75598307",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is it possible to display the caret outside of token, when it is positioned right after its last character? I have a TokenNode, which is pretty much just a regular TextNode, but with some additional styles:
createDOM(config: EditorConfig): HTMLElement {
const dom = super.createDOM(config);
dom.style.backg... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598310",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Laravel table join and pass the value to view this is my code
public function view( $sid )
{
$subpage = DB::table('subpages')
->join('categories', 'subpages.category_id', '=', 'categories.id')
->where('random_id', '=', $sid)
->get('subpages.*', 'categories.category as category_nam... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598312",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Updating json field in objectionjs throws Unknown column 'lng' in 'field list I have a nestjs app where I am using objectionjs and knex to communicate with my mysql db.
The address field is a json like:
data = {
address: { lat: 12, lng: 20 }
}
Whenever I run an update using:
this.personRepository
.query()
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598313",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Title: ConnectWise Automate API – API Token Not Giving Access Token in Payload I am attempting to get an API token from Postman from the ConnectWise Automate API. I put in my ClientID, my username, and my password in the header and body. I get a response that you see in the screenshot.
My question is, where is the ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598317",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: AWS EC2 - Get EBS Volume information Is there a way/method in the EC2/AWS API such that I can get the EBS volume that is attached to a particular EC2 instance?
IE:
I just want something that allows me to do something along the lines of:
method(instance_id) - returns the EBS volume that this particular instance_id is... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598318",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Android SDK Build Tool - how to find which dependencies use it? Context:
I am moving our org's infrastructure to Graviton which has arm64 architecture. Our Android build requires multiple build-tool versions. The lowest best build-tools;30.0.3
Problem:
I cannot install build-tools;30.0.3 on arm based machine so I am... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598321",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: JavaScript Destructuring Assignment I am stuck here figuring out why the password argument from bcrypt.comapare(password, user.password) line keeps getting value from const {password, ...rest} = user; instead of const {email, password} = req.body line.
I know that I can fix this issue by changing variables' name, bu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598327",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: C# .NET Machine Language "Feature" class generation I am working on a Microsoft ML project. The Feature class required by the Microsoft ML libraries is hardcoded in all examples I've found.
This Feature class, as shown here:
public class Feature
{
[LoadColumn(1), ColumnName("A")]
public float A { get; set; ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598330",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Kusto: Query properties within stringified JSON body Using Kusto Query Language, Is it possible to parse a stringified JSON body and then filter by value for a specific key within this JSON body?
For example, a data blob contains a string property message.
Within this message, it contains a stringified JSON body.
Wi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598331",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to round a java.sql.Timestamp to nearest day? I'm trying to round a java.sql.Timestamp to the nearest day. All the timestamps are in UTC time.
At this location https://stackoverflow.com/a/60100403/9745488, I saw a way to get to the hour, but I can't seem to figure it out.
The 1800000 seems to be 30 minutes in mi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598334",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Python - Attribute-Error and name 'open' is not defined when using try-block in recursive function For school we have to create a vending machine and for now i have a very high complexity because I am using many while loops. So I tried to usefunctions.
But now I get weird Errors.
I have this json file:
{
"Stocki... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598335",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to use sanity data directly in javascript I'm using Sanity as CMS for my Nuxt 3 website and I can't manage to access the data object in javascript after fetching the data.
There is the error code:
<script setup lang="ts">
const query = groq`*[_type == "seoContent"]{
seoTitle,
seoDes... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598337",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Reinstalled RVM after an implode, but now command 'rvm' isn't found When trying to install Ruby 2.7.7 for one of my projects, I ran into an error while running make install. Installation halted message. Since then I have tried a lot of different things I found on google, including imploding RVM and reinstalling, and... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598339",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: (git) Change which branch I branched off I accidently branched off of master instead of develop123, on my currect branch feature1.
I made plently of commits on this feature1 branch, and need to change the branch I branched off of. How would I do this. Would this suffice? I was suppose to branch off of develop123.
gi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598341",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Properly Fitting a Gamma Cumulative Distribution Function I have two Numpy arrays (both 210 entries in total) of rainfall values, one observed and the other forecast. My goal is to create a best-fit gamma CDF (my first time diving into gamma CDFs) to both of these arrays and determine the relevant percentile that va... | {
"language": "eu",
"url": "https://stackoverflow.com/questions/75598344",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: React useEffect warnings and recursive loop I have two issues in the code below and I need inputs from the community for the same.
*
*I am getting a React Hook useEffect has a missing dependency: 'medicationState.eligibilityResponse'. Either include it or remove the dependency array warning warning but when I incl... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598346",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: SSRS Report Incorrectly Displays Conditionally Hidden Tablix After a Hidden Subgroup is Toggled on a Separate Tablix My SSRS report has multiple Tablix elements. Their visibility is conditional to the content of the datasets they use. It works as intended when first displayed. When the dataset is empty, the Tablix i... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598350",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to find mysql internals manual doc in mysql officical site I cannot find mysql internals manual doc in the official site; the url https://dev.mysql.com/doc/internals/en/index.html is redirect to https://dev.mysql.com/doc/dev/mysql-server/latest/;
how to get mysql internals manual doc
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75598353",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Setting categorical variable as factor influences variable importance table I am using caret random forest in R with 20 explanatory variables, some of which are categorical but numerically encoded. For example, one categorical variable is soil drainage with 6 different levels (1 = well-drained, 2 = moderately draine... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598356",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Pyserial Not Detecting Com Ports on Windows 10 ASUS Laptop whenever I try to print out the ports, I get an empty set of ports and when I try to directly use the command to list them, it says that no ports are detected. I know I have a COM4 and COM6 port and windows says my device is actively plugged into one of them... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598357",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: GitLab installation on clean Debian 11 is accessable from any domain (not only external_url) I did the installation of GitLab on a clean Debian 11.6 system as instructed on the GitLab Homepage:
https://about.gitlab.com/install/#debian
I used the following line to install GitLab:
sudo EXTERNAL_URL="https://gitlab.exa... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598358",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Outputting outliers into a vector or dataframe in R with the help of the lovely Rui Barradas I was able to cycle through multiple columns and create box plots with labeled outliers. Currently, I am trying to output these outliers into a vector using the following code:
ClusterRepVector <- character()
i_num = which(s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598360",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Navlink causes URL to change but page does not load I've built an app with a few pages. There is a navigation bar with different Links related to authentication("Login", "Signup" etc). The pages change the URL and they load the appropriate content when I type into the URL but when I click on a NavLink with the same ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598362",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Power bi - Getting MAX on a single day within a time frame I have a table that contains data of people within a program. The relevant columns within the table are PersonID, Start Date, End date.
I also have a Date Period table. So I have YTD with columns from 1/1/2023 - current date.
How would I create a measure tha... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598363",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Gradle subprojects not seeing each other, but only on Java 17 I have a gradle project consisting of two sub-projects, one of which (a Java project) depends on the other (a Kotlin project).
/settings.gradle
rootProject.name = 'PROJECT NAME'
include 'server'
include 'rules'
server/build.gradle
...
dependencies {
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598364",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to fix a content editing batch script I have over one hundred txt files, and in each file are words which need to be changed.
If anyone can help me fix this I would appreciate it.
Here is my script:
@echo off
set "Find=Earth"
set "Replace=World"
set "source=Folder1"
setlocal enableDelayedExpansion
(
for /F... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598368",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to highlight files where no function has been called I am trying to run the python coverage tool over my source code to identify what code has been traversed/tested.
One issue I observe is that in many of the python files, none of the function implementations are hit/tested. However, since these python files are... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598369",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: R: Improving processing time for a set of codes Question:
How can I improve the processing time of the following code?
Goal description:
I have the following example dataset in which each observation contains
ids of two individuals (the primary agent coded as aid and the partner
coded pid) who worked together in a p... | {
"language": "pms",
"url": "https://stackoverflow.com/questions/75598370",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: ValueError: Input 0 of layer "resnet50" is incompatible with the layer: expected shape=(None, 224, 224, 3), found shape=(None, 735) Sample Code Feeding npy files to resnet
I am having trouble fitting the resnet50 model. The dataset is a very large .npy array for satellite images.
This is my code snippet:
SPLIT DATA ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598372",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Adding a time loop to fill in an array in a Python function I am trying to plot projectile motion for 3 different integration methods which fill fill an array giving the x-coordinates of the object at a consistently increasing timestamp. I have the function done, and it is working to compute the values, but I can on... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598373",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to programmatically set the background color of a MenuItem based on specified conditions? I am working on a Navbar thing that uses a NavigationView and a menu resource. I want to change the background color of a MenuItem based on if its id matches a string.
I've tried using setActionView(), and using setCheckabl... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598375",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to replace a .winmd in a customer's .appx, .msix, .msixbundle package? Scenario : A customer is using my SDK (a .winmd file), and is reporting a problem. They have sent me their .appx file. I wish to replace the SDK in their .appx file with a debug version of my SDK, so that I can debug the customer's problem... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598376",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: JavaScript getElement for specific div I'm struggling to directly get an Element for NTP as the number of f-field tags varies. Here is an example with three f-field tags, for which this getElement call works:
document.getElementById("system-time-dlg").querySelector("section").getElementsByTagName('div')[4]
Because ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598379",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Make users use a custom view I have developed an extension that provides a view that provides information about the status of the environment and related data, recent system news, and training and support information. I want all of my users to use it. Going to Manage | Customization | Views and selecting the custo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598380",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Undefined array key "version"' in 'C:\xampp\htdocs\mantisbt\core\commands\IssueViewPageCommand.php I recently installed Mantis BT and when I create an incident, the title error appears. I went to the file mentioned in the message and this is what I see, I honestly don't know what it could be. I'd appreciate your hel... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598384",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: AWS CodeDeploy Blue Green deployment stuck at AllowTraffic I have a Node JS application that I am deploying with AWS CodeDeploy via Blue Green deployment. It is deploying the application onto EC2 instances on autoscaling groups. The deployment process launches a new autoscaling group since I'm doing a Blue / Green d... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598392",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Integrating the Apphud SDK with iOS I'm trying to integrate the Apphud SDK. I want to purchase a specific product with product id sub_30. I'm using the iOS SDK.
How can I query for a specific product instead of all products? For example, I want to query for a specific product with id sub_30, and pass it to the purch... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598393",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Cross-Validation, Bias and Varience of a machine learning algorithm issues This model is trained using a small data set, so I don't think this is needed.
However, I've recently learned about cross-validation, bias and variance, and wanted to implement these techniques alongside prediction into a program.
here's the ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598394",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How to call the next task in flowable after the 20X response from the http task? I have a scenario, There are multiple http tasks one-after-other, The other http tasks will be called only after the current running http task receives (200 or 201 or 202) success response from the API.
How to handle this scenario?
what... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598396",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: jenkins dsl to gerritTrigger based on change in filepath Team,
i have below working for triggering builds when user sets in comment test in gerrit gui reply. but I need to know how could i trigger if there is a change in path.
triggers {
gerrit customUrl: '',
gerritProjects: [[
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598401",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Determine Google Form question reference to Google Sheet column Problem:
I have a Google Form with duplicate question titles. I want to ingest the data from my spreadsheet into my own personal database. I need to build a mapping from Google Form Question to Google Sheet Column so that I can set the response value fo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598403",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to prevent sub panel from popping up over my current activity I'm creating an app for FTV and having an intermittent issue where I press and hold menu button on remote, a subpanel is created over our current window. This sub panel contains no children, thus invisible. But when the subpanel appears, it gets the f... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598404",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: function for binning data based on date values I am writing a function to bin data based on the number of months in the entire history of the data set.
Here's the data I am working with:
month = pd.date_range(start = "2016-01-03", freq = "6D", periods = 100)
quarter = pd.date_range(start = "2016-03-01", freq = "28D... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598405",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I make a variable accessible by multiple computers? I want to make a website where people on different computers can click on a button, and a counter below will show the total times the button has been clicked by everyone on the website, and the counter automatically refreshes. I also would like for each pers... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598406",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Use Jolt to Transform Change Log JSON to Start/Stop Format I'd like to use Jolt to transform the following JSON from its existing Change Log format to a From/To or Start/Stop format. Is this possible? Can you write a spec to do the transformation?
{
"fields": {
"status": "Done",
"created": "2023-02-22"
}... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598407",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: WPF application not releasing CPU Hi We have WPF application, when we are running that on one specific client machine/server we found CPU usage don't go to 0, everywhere else when there is no activity CPU goes to 0, but not for this client. I researched using Process Explorer and found there is one thread clr.dll!DL... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598408",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Abstract class program issue I'm finishing up a program that will output traffic tickets using an abstract class. I have 5 javadocs. The first is the abstract class that has all the gets and sets for all the ticket information and at the end I have an abstract method for printTicket(). The next 3 javadocs have the s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598409",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How do I stop random console output in IntelliJ while debugging a flutter app Ever since I upgraded to flutter 3.7 I’ve been having weird printouts occurring in the console when I enter debug mode on iOS and MacOS. Is this related to Xcode and am I able to turn this off?
I’m using an M1 MacBook Pro and IntelliJ for ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598410",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Snowflake, using REGEXP_REPLACE to match a pattern and replace it by a single dot I'm trying to replace any amount of whitespace (If any), followed by ".", followed by any amount of whitespace (if any), by "." only.
I can match this string " . " , for example in notepad easily with this regex :
\s*\.\s*
an... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598411",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: The Safari page on iPadOS 16.4 Public Beta crashed (if we have video using videojs on adminLTE theme) The safari page crashed when I tried to add a video with Video.js on AdminLTE 2.4.5 theme.
I replicated the issue on jsfiddle and this is what happened.
Here's the fiddle that we can test on iPadOS 16.4 Public Beta... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598412",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Small multiples plots replicating entire network in each panel in ggraph() I would like to make a small multiples plot of a network using ggraph. For each node in my network, I have two features, feat1 and feat2. I would like to visualize the feat1 for the entire network in one panel, and feat2 for the entire networ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598414",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Is there a limit for the S query in Gerrit-Rest-Api? Sorry for my unknowledge about Gerrit Rest API, the documentation is not very easy to understand for me.
I'm trying to fetch alot of data about code-changes with Gerrit.
I'm using the S query to refresh to the next page, but it always seems to stop at 19500. I can... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598418",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Pandas string extract from a dataframe with strings resembling dictionaries I am not really sure how to use pandas string extract feature and I would appreciate some help
I have a dataframe like this
lista=[ "{'FIRST_id': 'awe', 'THIS_id': 'awec_20230222_1626_i0ov0w', 'NOTTHIS_id': 'awep_20230222_1628_p8f5hd52u3oknc... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598419",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: robot framework / Selenium don't recognize xpath element text() and chrome fellows!
I'm trying to get a piece of text which is recognized in the developer tool of chrome, but once I run the test in Robot Framework I'm getting an error.
The code I use:
${name}= Get Text xpath://tr[1]/td[1]/text()
Chrome dev tool
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598421",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: can't find button with selenium webdriver This is really throwing us. I am working on an indeed application bot and we are hung up on finding the apply now button in the html. Right now, the bot clicks a job post in the left pane- this opens the post in the right pane. The bot then switches focus to the iframe that ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598427",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to generate all possible melody strings for this melody generator, minus the duplicates offset by some number of beats? I have this question in the Math site, to figure out how to calculate the number of combinations of melodies in this situation: How many patterns can be built from sequences of these musical no... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598430",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: how can I fix this error (TypeError: object.__init__() takes exactly one argument (the instance to initialize)) I got this error while building a login window with kivy (TypeError: object.init() takes exactly one argument (the instance to initialize))
here is my code
import kivy
from kivy.app import App
from kivy.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598431",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Create access policy for NiFi using REST API I am trying to set an access policy to a NiFi instance using REST API. Here is my code in python
def create_policy(clientid, componentid, request_token):
payload = {
"revision": {
"clientid":clientid,
"version":0
},
"id"... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598432",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: node-gyp ld: warning: ignoring file , building for macOS-x86_64 but attempting to link with file built for macOS-arm64 I am getting this error in Github Actions running with macos-12. I would like to force node-gyp to build as arm64 and match the arch, but not sure how to set the binding.gyp file to do so. Here's m... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598434",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Update a table based on the existence of a row in the subtable? This is a bit confusing to explain, but basically I've got a parent table fruits and a child table fruits_sub, which references fruits via a foreign_key fruits_id.
fruits:
fruits_id
enum_0_col
enum_1_col
1
0
1
2
0
1
fruits_sub:
fruits_... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598435",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Default Gitlab CI/CD Tokens for Git Commits I want to git commit to current repo in Gitlab CI/CD
I don't have paid subscription, what are some default tokens that I can use for that?
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75598439",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I go about localizing route URIs? Let's say I want to translate my web app into multiple languages. How would I go about localizing the route URIs?
So let's say I have a "/register" route. But if you were on the French version of the app, I'd want that route URI to be "/enregistrer". How would I go about that... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598440",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why is this printing 'None' or ('hello', name) in the output? in the first test it shows non in the result , so in the second test i tried another method to avoid the problem but it shows me the result like this ('hello', name)
first test
import math as math
def f(x):
return 'hello',x
name= str(input('name:'))
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598446",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Azure App Service Bicep Network Access Restrictions Disallow public access I have a set of Azure App Services deployed via bicep. These will use Private endpoints as a backend service.
I've checked Resource Explorer, dumped an existing App to ARM and converted it to Bicep, and searched all of the documentation, but ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598447",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: .Net Web API Project throws CORS error only when targeting x64 platform I am putting a new (Angular) front end on an older .Net Web API project (using .Net Framework 4.8). CORS is enabled in the web.config file, like this:
Everything works fine when I set the platform target to be "Any CPU". But when I set it to "x... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598448",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How does Vcenter clone? My boss brought up an interesting question. How did vcenter clone a 55GB VMDK file almost instantaneously? When you run a vm clone in vCenter 7.0u3, what is happening in the background?
This is the only somewhat helpful documentation regarding this specifically.
https://docs.vmware.com/en/VMw... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598451",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Creating many to many relationship with nullable and non-nullable, getting AmbiguousForeignKeysError I'm having some trouble with SQLAlchemy 2.0 relationships with the new declarative form. I'm trying to setup a Practice class and associate it with multiple addresses whose foreign key exists in another model. I put ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598452",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Angular project on github pages: in index.html is blank I'm making a portfolio website on GitHub Pages built with Angular. When I visit the site, it renders as a blank page. In the console, there are many copies of the error:
styles.ef46db3751d8e999.css:1 Failed to load resource: the
server responded with... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598453",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Is openGauss a HTAP database? According to openGauss documentation, openGauss has both row storage and column storage engine. Does it mean that openGauss could be used as a HTAP database?
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75598455",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Send datatable records to a form I am creating an asset management system, where the information of the assets (comes from a database) I show it in a datatable and to modify something of an asset, I was thinking that the user to click on the edit button, another window opens with a form and in its inputs would be th... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598456",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Infix to postfix assignment I've been stuck on this program for about a week and I can't see what I'm doing wrong. I can't get the operands and operators to print in the proper spot and the '(' ')' won't delete. Here's what I have so far. HELP!!!
public static int precedence(char token) {
if (token == '^... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598459",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Select2 Jquery When dropdown is opened there is another container that opens up Select2 Jquery When dropdown is opened there is another container that opens up. Here is my link to the page. Please switch to mobile using IE and view the dropdown issue : http://3.131.234.17/database/
https://i.stack.imgur.com/lgABh.p... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598461",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: XCODE 14.2: RCTLinkingManager: 'openURL:' is deprecated: first deprecated in iOS 10.0 I found that not many discussion on this.
My app is currently running on React-Native 0.59.10 and would like to package it using Xcode for iOS version.
As the current requirement, we are required to set the minimum iOS version in X... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598462",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Pytest ordering of test suites I've a set of test files (.py files) for different UI tests.
I want to run these test files using pytest in a specific order. I used the below command
python -m pytest -vv -s --capture=tee-sys --html=report.html --self-contained-html ./Tests/test_transTypes.py ./Tests/test_agentBank.py... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598463",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: When shoud I use numpy.mean and numpy.average? I was studying statistical analysis in pandas and numpy and I came across
numpy.average
and
numpy.mean
I was wondering how numpy.average and numpy.mean are different. Are there any performance related difference? When should I use each?
I thought the two were basically ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598464",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can I add Spring model attributes to a redirect using Javascript? Using attributes and flash attributes on my spring model, I am able to update page elements from my controller like normal. However I am wondering if I can add attributes to my model during a redirect initiated from Javascript?
Currently I'm just usin... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598465",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: If object in array is found, increment value inside, if not push to array I'm trying to perform an updateOne() query on my db where if an object within an array in the doc, has an _id that matches some value, increment a value within that document, but if there are no matches with that _id, push a new object to the ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598466",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python dataclass does not understand that yaml configuration setting is a Path object and not a plain string I want to create a python dataclass to hold program settings (e.g., file Paths) read from a yaml configuration file.
The issue is that my dataclass (Config) declares a ROOT_PATH field having a type of Path. H... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598467",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Shopify: Send customer to a page after registration I have a shopify store and I want the customer to go directly to the product page when registering.
I changed the customers/register.liquid file and it does what I want, but now it doesn't check if the password is valid or if the user exists.
What's the problem? se... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598469",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How would you go about plotting this data in 3d over time?(python) So,
The data looks like this:
(the spaces represent different columns, and the data represents 10 particles going around a central particle "Sun" and at different time steps in this case every 1,000 days for 3.6 million days )
and I've been running ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598478",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Color code is not properly appearing in stacked Bar chart I am trying to plot stacked bar chart with color code as fill.
But the problem is the color code in the stack is not properly showing all.
It is showing one color for multiple data stack nearby.
plot <- ggplot(data=data, aes(x=reorder(product, +Number), y=Num... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598480",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python Code who search values in some columns and pickup values from others problem I have the next python code:
import os
import csv
import requests
import json
# Set the input values to search for
with open('C:/asg/ftpfiles/!searcher/01parseall.json') as json_file:
dataparse = json.load(json_file)
PartNumbe... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598481",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: ECharts Confidence Band (Line) chart defaulting to 0 with null values I am converting Google Chart confidence band (line) to Apache Echarts and I have a major issue when using areaStyle on confidence-band stacking in the line charts with null values.
The issue arises only when having null values in the min/max lines... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598482",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Julia: Poles and Roots of Log(z) Testing the Julia's package RootsAndPoles.jl v2.0.0 for the (complex) logarithm f(z)=log(z) with standard (default) parameters as described on GitHub by Piotr Kowalczyk I obtain the following result in a moderate domain around the origin
number of roots: 1
number of poles: 1
Whil... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598483",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Can I trigger a jenkins dsl pipelineJob from another job? I have a jenkins DSL freestyleJob which polls a github repo and triggers when it detects a change.
I want to trigger a 'pipeline' job within this freestyleJob. Is this possible?
I see in the web ui that I can add a 'post-build' step to build another project, ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598484",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to change slider hover color in MAUI? I'm developping a glorified audio player which features a slider which is central to the UI.
I'm having a hard time though because I can't change the slider hover color (blue, I presume. I am colorblind). That color appears when hovering on the elapsed part of the slider.
I... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598489",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Version number in code generated by NSwag is detected by Git as a difference I have a client class which is generated in Visual Studio 2019 using the Unchase OpenAPI (Swagger) Coonected Service Extension.
The generated client class is given the following attributes.
[System.CodeDom.Compiler.GeneratedCode("NSwag", "1... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598491",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: What should GitHub repo package folder of a Python project include to manage dependencies? I have a question that I cannot seem to find the right answer for (perhaps I am articulating it incorrectly).
My program is dependent on Numpy and datetime. should I include those inside the modules folder? Or is it assumed th... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598493",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Fourier transform with cuFFT, are complex to complex more efficient? I'm writing a code that integrates a PDE in time in Fourier space, and I'm doing so in CUDA/C++.
There is one real valued array I need to evolve in time.
I've written the code in two different ways, but following the exact same logic.
In one versio... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598497",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: combining two dictionary to create a new dictionary in python I have a dictionary that maps orders to bins.
orders_to_bins={1: 'a', 2:'a', 3:'b'}
I have another dictionary that shows the items in the orders.
items={1:[49,50,51,62],
2:[60,63,64,65],
3:[70,71,72,74]}
I need to create a new dictionary t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598498",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How to run multiple projects from a GitHub clone I'm trying to create a game that has both a Client and a Server. But I'm unable to run both of them at the same time without having two instances of Visual Studio open. I cannot find a way to select multiple startup items. The .sln files for both the Client and the Se... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598499",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Google OAuth Login in DRF application raise Invalid token type I had implemented Google OAuth in my DRF application using all-auth and dj-rest-auth, but for some reason stop working.
Traceback shows the JWT, but for some reason, allauth raise this
raise DecodeError(f"Invalid token type. Token must be a {bytes}")
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598500",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Stuck with argument "data" is missing, and unexpected symbol errors project1_model <- neuralnet (formula = Churn ~ Day Mins+Eve Mins+Night Mins + Intl Mins + Day Calls + Day Charge + Eve Calls + Eve Charge + Night Calls +Night Charge+ Intl Calls+ Intl Charge+ V Mail Message+ Cust Serv Call... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598503",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can you connect DBT to a datasource using ODBC Driver DBT supports a many platforms. Does it support connecting to a datasource using an ODBC Driver?
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75598505",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why can't I use '!checked' to toggle the checked property of my checkbox in React? I have some state in my component that holds the value of my checkbox element. I need to update the state as well as the UI everytime the checkbox is clicked. My Question is why I can't use !clicked like this
function handleChange(eve... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598508",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: AVAudioRecorder doesn't flush captured audio in FLAC file I'm building a simple audio recorder for iPhone using SwiftUI.
import SwiftUI
import AVKit
struct ContentView: View {
var body: some View {
HomeViw()
.preferredColorScheme(.dark )
}
}
struct ContentView_Previews: PreviewProvider... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75598510",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |