text string | meta dict |
|---|---|
Q: How do I string for a string in [HttpGet]? `[Http("id")]
var grade = students.Find(n => n.Id == id)`
This is used to look for id.
`public async Task<ActionResult<StudentGradingSystem>> Get(string Grade)
{
var grade = students.Find(n => n.Grade == Grade);
if (grade == null)
return Ba... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581107",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How can I generate a CSR based on a configuration file using C# and BouncyCastle? I have a CSR (Certificate Signing Request) configuration file that I need to use to generate a CSR in C#. The configuration file specifies the details of the certificate that I want to request, such as the common name and subject alter... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581110",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Is not possible create user when I am deploying MongoDB Kubernetes pod I have this deployment and service .yaml for MongoDB in Kubernetes.
apiVersion: apps/v1
kind: Deployment
metadata:
name: mongo
labels:
app: mongo
spec:
selector:
matchLabels:
name: mongo
replicas: 1
template:
metadata:... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581112",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Getting invalid message error: list index out of range in discord.py 2.0 version Here is the code
async def on_message(self, message):
if message.author == self.bot.user:
return
if message.attachments and message.author.id == 646937666251915264:
atta... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581114",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Gitbash command github upload project $ git push -u origin master
error: src refspec master does not match any
error: failed to push some refs to 'https://github.com/Badarismail/Flutter-App.git'
how to solve error?
when git hub ubload project? is error
$ git push -u origin master
error: src refspec master does not m... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581120",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Inferring Generic keys when editing Record This code example is a function for terse immutable editing of a record to set boolean values.
The function should accept a record of boolean values and a list of matching keys. It should return a new record which has all those keys set to true (using an 'immutable' update ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581121",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: UITableView with button in each cell highlights many cells when one is long pressed We are using a UITableView to represent a list of objects. The user can select to press a button in a cell to perform an action on an object. The tableview can grow while the user is interacting with it. The user can perform the acti... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581122",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Can't update packages via pip in google colab I'm trying to run a python deep learning model with google colab, and I'm still after installing tflite-model-maker and tflite-support with this code
!pip install -q tflite-model-maker
!pip install -q tflite-support
this error:
ERROR: pip's dependency resolver does not... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581123",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I keep tomcat logs to stay at last 30 days worth with logrotate? (RHEL) First time using logrotate, I'm trying to keep Tomcat logs to only have last 30 days worth in the directory regardless of size, job to be run every month.
Am I able to accomplish this with the script below?
/opt/tomcat/logs/*.log
/opt/to... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581127",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to correctly get TokenId via GPGS in Unity I'm trying to get player tokenId for my server. Auth was working fine before i added .RequestIdToken(). Now it canceling while creating AndroidClient with "returning error code'
Eny suggestions, what i need to do to get this TokenId?
Currently app in testing mode. In Sc... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581128",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Where should SVG files go in a NextJs project? In a NextJS project, in which directory should files such as SVGs and PNGs that will be used by components be stored?
Public does not seem to be the right place (see https://stackoverflow.com/a/45300180/20242212).
I do not currently have a src folder, I opt-ed out.
What... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581130",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Google Cloud deploy PHP/Symfony webapp with Docker I am using Google Cloud and I am trying to deploy this repository.
This is the docker-compose.prod.yml
And the Dockerfile
Everything goes perfect: the build stage is finish without any error.
But the problem appears on the deploying stage: I get this error:
The use... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581131",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to calculate number of nights between two dates? How to calculate in typescript a number of nights between two dates taking into account that we count night only if person stays in a hotel between 21:00 and 7:00 for at least 6 hours?
Example:
Start date: 12.10.2022 9:00
End date: 16.10.2022 23:00
Nights: 4
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75581133",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-4"
} |
Q: BDD : Test using Sclatest - AnyFlatSpec and Junit 5 not detected I'm using :
*
*scala 2.12.15
*Java 17
*scalatest_2.12:3.2.15
*JUnit 5
*Gradle
With this very simple codes in my test folder:
import org.scalatest.flatspec.AnyFlatSpec
class MyTestSpec extends AnyFlatSpec {
"An empty Set" should "have size 0... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581137",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: html "table-layout: fixed;" and flexible width in the same table I would like to use "table-layout: fixed;", but also need the flexiblility of flexible tables. I made a js-fillde that explanes the problem.
1st Table:
*
*Normal Layout.
*Longest left column's width sets the width for the left column.
2nd Table:
*... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581138",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Alamofire DidFinishCollectingMetrics Crash I have an application that consists of listing page and detail page. Pressing the back button on the navigation repeatedly before the detail request is completed. Alamofire is also experiencing this crash.
This is my full log:
*** Terminating app due to uncaught exception '... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581142",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: apex.submit does not cause Interactive Grid refresh On my page I am calling apex.submit("PROCESS1") from javascript. It executes the code of PROCESS1 process but the IG I have on the page does not get refreshed. After PROCESS1 executes I see the unchanged data in the grid and it only changes after I manually refresh... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581143",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I have this error that has been difficult for mse to solve.Can someone explain the problem as they would explain it to a beginner LoginView() received an invalid keyword 'templates_name'. as_view only accepts arguments that are already attributes of the class.
I haven't tried anything really
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75581146",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-9"
} |
Q: I need a browser-extension with which I can add custom glyphs, like German opening and closing quotation marks to text areas on websites I visit When I use social media, I can't easily use language-specific glyphs, like German quotation marks, without having a tab open with the entities to copy and paste into the te... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581150",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Spring WebClient fails on intermediate certificate I´m facing a strange issue.
We have a valid certificate from a trusted root CA - in concrete USERTrust RSA Certification Authority for server-01.
When i visit the API in the browser for server-01, everything`s fine.
We have a certificate chain with the above root CA... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581151",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: PoolClosedError [MongoPoolClosedError]: Attempted to check out a connection from closed connection pool I have been working with mongoose updating my database using Model.updateOne()
I been successfully working with mongoose till now i cant update my data from app.js
So i want ot update this _id with rating object
T... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581152",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Xamarin Forms Play Asset Delivery I got a game app that is 600mb+ as .aab. Google Console wont let any upload higher than 150mb.
I need to somehow use Play Asset Delivery to get my assets to be On Install Time when the app gets installed it fetches the bundle of resources. I do not have a clue if this is possible in... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581155",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to execute a Karate.exec() in AfterAll annotation in Karate Runner I have to execute a task after all the tests have run in karate. So i was trying to add @AfterAll annotation to the Karate Runner and defined a function to do the task of executing a python script by using karate.exec(), but it was showing an err... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581159",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to implement multicurruncy using context in react native I want functionality of multicurruncy in react native like when user select $ whole currency converted into $ in app, how to achieve this I search on google but not find a satisfied answer. Pls help, thanks in advance. I think used context api is easy way.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581160",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Delete all rows in a table where conditions are met by 2 separate columns I have a very large database, over 3 million rows.
It contains a list of users, their details, what applications they use (so may be several lines of same user 1 for each application, there are 70 separate applications)
Our customer has gone t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581165",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: No qualifying bean of type 'com.vaadin.flow.spring.security.VaadinDefaultRequestCache' available Just upgraded a small vaadin application vom 22 to 23 and now I have a problem that the system throws an error on startup that my securityConfig requires the com.vaadin.flow.spring.security.VaadinDefaultRequestCache bean... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581167",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to compare passwords using bcrypt and express-validator? I have my login page and I want to check if password entered by user matches with password beloning to a specific user in database. So first I need to somehow get user data by entered email, and then get password from db.
So far my validation code (made wi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581169",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to create Azure Function App Service in isolated process I tried to create Azure Function App Service from Azure Portal, but I can't choose isolated process when I create it, and the configuration from portal FUNCTION_WORKER_RUNTIME is always default to be "dotnet".
if I manually change it to be "dotnet-isolate... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581170",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: TypeError: Cannot read properties of undefined (reading 'filter') unit test karma-jasmine trying to solve this issue it makes all tests failed!
i am using angular 11 with karma-Jasmine,
it happens cuz on one filter method inside function that called in ngOnInt
unit test file
it('should create', () => {
expect(... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581171",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Event grid does not trigger Azure Function when out binding is specified When I upload a file to a storage account container I have an Event Grid System Topic to detect this. I have an Event Subscription associated to it, to trigger an Azure Function with a binding in. At this point everything is working.
However wh... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581172",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: When we say "I use .Net version 4.5.1.x", what 4,5,1,x represent in the version? When we say "I use .Net version 4.5.1.x", what 4,5,1,x represent in the version?
In an interview I have been asked with this question, and I wanted to know the answer.
A: When versions are identified numerically, the numbers are assign... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581174",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How calculate percentile for each value in PySpark data frame? Let say I have PySpark data frame with column "data".
I would like to assign for each value in this column "Percentile" value with bin = 5.
Here is a sketch of Python code and desired result
import numpy as np
# Array of data
data = [5,6,9,87,2,3,5,7,2,... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581175",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I set specific dates on my x axis using FixedLocator? I am trying to set specific dates for my x-axis tick locations. But my x-axis object type is datetime64[ns]. These are my attempts with the error code.
df = pd.DataFrame({"date": ["2022-01-01", "2022-01-02", "2022-01-03", "2022-01-04"],
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581176",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Output gives 0 value but calculation was declared I have declared the the calculation for the Age Calculation but the output is 0 for the age in the class. The following is a code for the class and main method.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threadi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581177",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is using nested callbacks for mongoose queries a good practice? Currently, when I try to run multiple mongoose queries in node js I write nested callbacks instead of promises, like
User.findOne({username: example}, function(err1, foundUser){
Payment.find({user: foundUser.payment_id}, function(err2, userPayments){... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581178",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Rundeck trigger job via api without exposing script Is there a way to permit a user to trigger a rundeck job via API without exposing the script? This seems to be the default in the HTTP reply I get from rundeck.
Example:
curl -X "POST" -H "Accept: application/json" -H "Content-Type: application/json" -H 'X-Rundeck-... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581180",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is there a way to measure the energy consumption of a program along with its max. temperature? I've been reading up on sustainability and I was baffled by this issue. I have a program written in C or Python that uses multithreading for parallelisation.
I was wondering if there was an open-source GNU program that cou... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581183",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: A complicated operation on a pandas DataFrame I would like to obtain, for each id_1, the number of common id_2s between the months of December and January. The example below:
id_1
id_2
Date
12
1
20221216
12
1
20230113
12
1
20230116
12
2
20221213
12
2
20230118
18
7
20221207
18
7
20220907
18
7
20... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581187",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: LXD VM storage restrictions I am using the dirdrive for my lxd and I have created a dedicated storage pool for my ongoing project. This pool is located in my one and only big data partition of my machine. In this project I need to create 5-6 LXC VMs. In them I am going to be processing large amounts of data and even... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581188",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to add custom CSS classes to Shiny app elements I have a shiny app consisting of multiple rows (fluidRow) and columns.
Example code
library( shiny )
library( ggplot2 )
ui <- navbarPage(
'NaVarTitle',
tabPanel(
'TAB1',
fluidRow( column( 4, plotOutput("Plot1") ),
column( 4, plotOutput("P... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581189",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Finding all cycles in graph Task: Finding all cycles without repetition in an undirected graph.
I need to write a lisp program without using loop statements, i.e. traverse the graph recursively.
And I wrote a function to traverse a graph in depth (I think breadth traversal won't work here)
What should I do next? Ple... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581190",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Production flask app running in parallel with main program on a Raspberry pi I have built a system around a Raspberry pi that continuously takes images, runs some computer vision analyses on the images, and reads some variables from a sensor.
Image files are saved on board as are analysis results and sensor data (in... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581192",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Do I really need to fix the type script error on the product? I'm a beginner in type script.
Currently, my team uses type scripts for projects. There are no problems and no errors in the products that are serviced to users, but in fact, the code is causing a type error. If you check in vs code, there are errors that... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581194",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Iterating though an array of objects in Javascript I've been stuck on the question below for a few days....
It's time to see if we can host our party!
Before the party is confirmed, the shareholders need two criteria to be met:
At least 5 people must be in attendance
At least £100 must be generated via pay-what-you-... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581195",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Updating Stripe Payment Intent throws Authentication error (401 error) I have the following code which uses a stripe webhook to update the customer database based on the payment intent event from stripe. The signature is verified and it works fine. But when the update payment intent API is called , it throws a 401 e... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581196",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Pcap data to .ts file script I want to get the UDP stream of a pcap file, get the raw data and save to a .ts file. I now i can do that in Wireshark doing: analyze->follow->UDP stream->show and save data as raw->save as->video.ts.
How can i make a script in Python for doing the same thing?
A: It could probably be do... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581199",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to add an icon (filter) next to the mat-sort column without line break I'm trying to add a filter icon next to each column header in mat-table, but the headers has the mat-sort action and I can't put the icon after the span without line break.
enter image description here
enter image description here
I don't wan... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581201",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: In docker, check whether hbase can be used with hive as a container I need to upload and process big data using hbase and hive. I hope to use docker to create hbase and hive containers directly. However, the tutorials found are all about creating a hadoop container in docker and installing hbase in the hadoop contai... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581202",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to change Panel background color in Python VCL GUI app I'm using the DelphiVCL GUI library for Python and trying to change the background color on a Panel component, but it's not working
I have the following code to create the Form and the Panel on my Form:
from delphivcl import *
class frmMain(Form):
def ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581204",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Aws amplify in retool ,and cannot use the library I am currently trying to use aws-amplify in my custom app in Retool, but I am having trouble using it with the CDN link (https://cdnjs.cloudflare.com/ajax/libs/aws-amplify/4.3.46/aws-amplify.min.js) that I have. I was wondering if it is possible to use aws-amplify wi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581207",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I place the points ordered by higher value in stacked chart of Chartjs I want to draw area chart with stacked line chart like this sample chart.
I want to place the points ordered by higher value, but it shows order by index of datasets of config.
Please, help me...
const config = {
type: "line",
datasets... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581208",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: when i call showuser with parameter it will not display result When i call the stored procedure with given parameter, it will resulting into empty table
This is the mysql code for creating and calling stored procedure
DELIMITER $$
CREATE PROCEDURE showuser(in Id int, in thename varchar(20))
begin
select * from user... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581212",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Mapbox studio - display polygon data I have a layer in mapbox styles that was created from a geoJSON file.
Each polygon in that layer has it's own properties. Within the styles editor: how do I display those properties upon clicking on that polygon?
I've tried using style with data conditions but that only seems to ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581213",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: For loop with big json data start to create same objects of model I have big json file with like 18k lines and after some iterations it startы to create same objects of model PresenceDetailInfo and return error
MultipleObjectsReturned
Im not sure how am i suppose to fix that or change my for loop
I`ve tried small ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581214",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: how to create server and database in google cloud platform In my current company, there are no servers or databases for data storage. I am interested in creating a server and database in the cloud using the Google Cloud platform to ensure neat data storage, rather than storing it in Google Sheets or Excel.
I have st... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581216",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Being logged out automatically / staying logged in (letsencrypt) I have a script, where users can login/out.
After logging in, my users are being logged out automatically when loading another page, without any reason /
or: logging out, leaving & reloading the page, results in them being logged in again.
This is the ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581217",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Intellij folders not showed I have a project tree like this:
Root Folder:
-- Folder A
-- Folder B
-- Folder C (src)
-- Some other files
Inside folder C, there is the build.sbt and some other folders.
To make intellij recognize that the project is a scala one, I have to open it by selecting the build.sbt file and sel... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581220",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Migration to Spring Batch 5.0 MySQL DataSource not working We had a very simple Spring Batch app working (4.2.1), and writing the Spring Batch Database Schema to a MySQL database where we could see each Job execution details and status.
After trying to migrate to Spring Batch 5.0:
The app is running , but we are not... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581222",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: stretched-link not working on a div > a href (react) I am trying to get a stretched-link to work without success. I have tried to add the class and set the position-relative to a parent div as requested by Bootstrap docs, and it's not working. I also tried to set the same z-index to the parent div and the link as I ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581223",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Google Cloud Vision OCR - Language hints seem to be ignored I am using the Python framework of Google Cloud Vision to OCR passports. I want to support Ukrainian now, but the system has trouble recognizing handwritten parts.
I tried to improve the results by giving language hints to the system, but it seems like thos... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581224",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: multistep forecast with multivariat Neural Network by using neuralnet package in R and test with the actual data I wrote the below code, to predict the temperature with other variables
library(neuralnet)
nn <- neuralnet(TEMP~ Rain+
Humidity+
Windspeed+
WindDir+ ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581225",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: why this "lsd" program won't run? error: failed to run custom build command for lsd v0.23.1
Caused by:
process didn't exit successfully: /tmp/cargo-installNS44vU/release/build/lsd-85271497f0ac1390/build-script-build (exit status: 1)
--- stderr
'lsd' requires rustc >= 1.62.0
warning: build failed, waiting for other j... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581227",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: imports in nested projects or own library dir How i should import modules in nested dir projects or in own libs?
When...
Structure:
lib_dir
|-my_module_2.py
\_my_module.py
Belove code works when i run it from main lib dir
#my_module.py
import my_module_2
But after creating library based on lib_dir i need to import... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581228",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: QEMU ARMv8-A Networking I am using QEMU 6.2.0 (qemu-system-aarch64) on Ubuntu 20.04.1 system. I am running a armv8a, 64bit Linux guest using the command line as shown below.
qemu-system-aarch64 -machine virt,gic-version=2,virtualization=on -cpu cortex-a53 -nographic -smp 4 -m 4096 -kernel /home/linux-5.10.155/arch/a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581229",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How does the Delay block work in Gnuradio I am reading the source code for block Delay in gnuradio,but I don't understand the following code.
std::memset(optr, 0, n_padding * d_itemsize);
std::memcpy(optr, iptr, n_from_input * d_itemsize);
It seems that they operate on the same pointer 'optr',0 is overwritten by th... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581231",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: unable to activate developer mode in odoo16 cause it not even showing up I have two odoo servers in local host from one which odoo15 which running as root in localhost:8069. And I can't make any development modules cause it has folders with all locked files inside it and also showing settings as needed. And I follow... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581233",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Link Github Issues to the PR Im collecting the list of issues and want to know exactly to which PR or branch it is connected.
I'm using the List of issues endpoint to get list of Repo issues: https://docs.github.com/en/rest/issues/issues?apiVersion=2022-11-28#list-repository-issues
Is there any possibility to connec... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581236",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: i getting error attribute error for zwcad using python import win32com.client
# create an instance of ZWCAD
acad = win32com.client.Dispatch("ZWCAD.Application")
# make ZWCAD visible
acad.Visible = True
# get the active document
doc = acad.ActiveDocument
# create a selection set
ss = doc.SelectionSets.Add("MySele... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581237",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: NEAT AI slows down really quickly I have created a 2D top-down car sim with Pygame and used NEAT to evolve the car's AI to drive. Each car has 5 raycasts (left, slightly left, forward, slightly right and right) which provide the distance to a wall as the input. There are 4 outputs: accelerate, decelerate, turn right... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581238",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I am trying to filter a dataset and use k-means to make predictions but i'm coming up with this error? import pandas as pd
from sklearn.preprocessing import StandardScaler, LabelEncoder
from sklearn.cluster import KMeans
# Read the excel file into a pandas dataframe
file_path = r'\\uh01502854.bmwgroup.net\hom... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581239",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how do i get +2 strings in php and awnser a question over shell script bash linux automaticly I need a some code with awnser a question over a shell script with php code over html:
Shell script
read -p nome: nome
read -p ramal: ramal
read -p passwd: passwd
echo " " >> sip.conf
echo [$nome] >> sip.conf
echo type=fri... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581245",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: Adding multiple bootstrap table classes with javascript classList.add not working My code
//bootstrap@3.3.7
//this works<br>
var table = document.createElement("TABLE");<br>
table.classList.add("table");
//this does not work<br>
var table = document.createElement("TABLE");<br>
table.classList.add("table");<b... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581249",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How I can make custom map annotation pins? I need to make different points on the map with animation.
I want them to look like this: pin, and after tapped:tapped pin
Pictures change depending on the place in the array.
And when they are clustered, I want to see just a circle with the number of points inside. And whe... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581250",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: how to write a Custom Rate Limiting Policy to block all request comes except some IP addresses to call a specific resource in rest api in wso2? how to write a Custom Rate Limiting Policy in wso2 api manager(3.2.0) admin portal to block all request comes except some IP addresses to call a specific resource in rest ap... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581253",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: WEB Game - images preload & performance optimazation I wonder how to solve performance problem in web game. Stack: PHP (backend), Javascript (frontend), sadly I don't know which frameworks are used.
One of the main functionalities of the game is of course gaining experience by fighting with monsters / other players.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581254",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: startActivity not adding/moving activity to foreground On Android Version 4.4.2:
I have this code inside an onResume() method.
if (paid) {
Intent intent = new Intent(this, EventsActivity.class);
startActivity(intent);
}
I am calling this from the ProductsActivity.class,and the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581258",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: There is a way to get current map coordinates? I'm using the grid-mapcontrol (https://wiki.genexus.com/commwiki/servlet/wiki?15309,Maps+Control+Type) to display some pins on the map.
I'd like to get new coordinates when the user moves across the map and show new pins for the new region. Is this possible?
I try the m... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581259",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Unexpected behaviour of generics wildcard I'm interested in understanding why, in the example given below, the row instantiating wrapper2 gives a compilation error:
java: incompatible types: inference variable V has incompatible bounds
equality constraints: java.util.stream.Stream<EntityVersion<? extends BaseEnt... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581261",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python contour plot from CSV There are a lot of topics about how to create contour plots from CSV file. Unfortunately I have not got the right answer.
My CSV file (which has over 1000 rows) shows some random data for different sea depths every one hour.
Time;1_m;2_m;3_m;4_m;5_m
10;0.039;0.033;0.025;0.041;0.071
11;0.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581264",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Filter specific data from a nested array object I want to write a recursive method that will filter out only those data which don't have a complete object or a string. Take as below example -
const userParticalData = {
student: {
id: 1,
name: 'sankhnad',
mobile: 1111111111
},
resu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581265",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Pass logic to the root component in a multistep form I'm trying to pass the script logic to an app component, bur struggking how does it work with . How Could I rewrite the logic inside the app component? So that my architecture is App --> --> <Step1-and-
<template>
<Form>
<component :is="currentStep" />
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581266",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I check if at least 70% of the values from March went together into a new group in April? I've created a test dataset which contains the period (March/April), the student name and the class name. In March students were distributed between Class A/ Class B/ Class C. In April, students were rearranged into the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581269",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to remove duplicates from an array without removing the whole row? I am looking for earthquake detections as well as P and S waves. Once these parameters have been found, I store them in different tables: one for the detections, one for the P waves, and one for the S waves.
for i_sta in range(len(List_dir)):
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581270",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: QIcon not showing..? I just made below code and added icon with QIcon but not showing the icon.
I double checked that png file is in right location.
Anyone can let me know the reason..?
I made the icon with png file 512x512 pixel. Transparent background.
from PyQt5.QtWidgets import QApplication, QTextBrowser, QLineE... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581271",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: API call issue inside docker container I am facing the following error message when I try to make an api call inside a docker container.
HttpRequestException: No connection could be made because the target machine actively refused it. (localhost:21000)
Both the front-end and the api are on the same machine.
here's... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581272",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Woocommerce: function to update selected products with a button so I have a similar issue as this
But I need to be able to select which products to be updated rather than being automatic. any way I tried this method but didn't work for me.
I'm calculating some numbers with a jQuery script according to the product de... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581275",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How does the Kubernetes ingress-nginx controller verifies backend application services/pods mapped in Ingress definition are healthy or not? I am trying to use kubernetes nginx-ingress controller in AKS , in addition to Azure application gateway ingress controller (AGIC), but dont find annotation used for health pr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581278",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Google-Drive / Google Vault - Filter list of people with access to folders and files A client is asking if it's possible for me to provide them with a list of people who have access to Google drive files and folders outside of the company, of which there are thousands of users.
Is this possible?
I will then have to ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581280",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: store read bytes to unsigned long array I would like to use istream::read, with an unsigned long array. I expect the result to be as if I was using a char array but the result would be stored in an unsigned long.
example:
std::ifstream foo("filename.txt", std::ios::binary);
//supose foo is 0x00 0x01 0x02 0x03 0x04 .... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581282",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Flutter: How to make draggable bottom sheet with fixed draggable triggering i want to make something like below:
initial state of the bottom sheet
,
when dragging upward the bottomsheet
Expected behavior
when i drag upward the bottomsheet, the content will be displayed like the second picture, and when the sheet re... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581284",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: No hint path defined for [sitemap] laravel 9 I'm using laravel-sitemap in order to create sitemap.xml file for laravel website. Here are route and controller.
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Spatie\Sitemap\Sitemap;
use Spatie\Sitemap... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581285",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to return in middle of the program? first of all, I am sorry for my bad english.
These days, I am developing the Web.
My crawl program is so slow that I want to crawl in the background and return to the front-end every time I crawl.
But I dont know how to this.
using programming languages: javascript, python, fl... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581288",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How to collect a returned response in a variable from flask python into java I need to grab a variable tempnum from flask python and collect it into java and then insert it into a db,how do i collect a response from flask in a java variable and use that to go into the db?
so far i have done nothing in java as i dont... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581289",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: errors in my commands on easyphp devserver i wish to run the following command on my easyphp devserver from the server thats running on my machine but there are so many errors that i dont know the meaning of.
i went from an old version of easy php(old version that school uses) to the recent build.
CREATE DATABASE Us... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581292",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Wildcard for generated Content files in vcxproj I have a C++ desktop app that uses several folders of resources, some of which are generated at buildtime like this:
<ItemDefinitionGroup>
<PreBuildEvent>
<Command>generate stuff</Command>
</PreBuildEvent>
<PostBuildEvent>
<Command>xcopy stuff ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581294",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can't kill a process created by ProcessBuilder I'm just trying to kill a process created by ProcessBuilder and all its children. This is what I've done until now:
*
*Create the process:
File workdir = new File( this.midiasFolder );
String[] cmmm = {"./urlworker.sh", this.url, this.streamNa... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581295",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: AES encryption do not work on ARM processor I have a device with armv8 64 architecture and I want to use its instructions for accelerating AES. I found this code in Github which implements AES encryption:
https://github.com/noloader/AES-Intrinsics/blob/master/aes-arm.c However, it is missing decryption. I code it my... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581296",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: UIBezierPath(roundedRect:cornerRadius:) creates a fully rounded object I'm trying to create layer with rounded corners using UIBezierPath(roundedRect:cornerRadius:). For example, I have rect = CGRect(x: 0, y: 0, width: 208, height: 64) and cornerRadius = 24. When I use UIBezierPath it creates fully rounded corners o... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581297",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why this is not an unreachable statement for the Java compiler? public class Main
{
static String test(){
if(true){
return "true";
}
else{
return "false"; // Why this is not an unreachable code?
}
}
public static void main(String[] args) {... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581300",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: VBA - Show entries in ListBox2 according to selected material in ListBox1 I´m currently facing the problem, that my VBA program doesn´t work as I wish it would. I have between 2- x materials in 'List_Mat' (Material 100520, 100620, 100658, ...) (unlimited number of materials). These materials are the raw materials of... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75581301",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |