text
string
meta
dict
Q: I need to generate a large list of 16 digit consecutive numbers I tried this in Excel but ran into formatting issues (number that large could only be a text, so I could not generate a list). The data required was also too big for google sheets. How can I create a large list of consecutive 16 digit numbers? Tried for...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565201", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How do I show user info? I am doing a app in ionic with angular, and I am using node js and mongoDb in backend (all in typescript). This is de model in backend import { model,Schema } from "mongoose"; import {IUsuario } from "../interfaces/usuario"; const mongoosePaginate = require("mongoose-paginate-v2"); const mo...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565202", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: (MySQLdb._exceptions.OperationalError) (1045, "Access denied for user 'admin'@'SERVER-CONNECTION' (using password: YES)") I am trying to connect to a mySQL database on AWS using SQLAlchemy but I keep getting this error. My permissions and inbound rules for the RDS is definitely correct and so is the login details. i...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565205", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Frequent Issues With Importing National Bank of Ukraine API Data into R I am trying to access data from the National Bank of Ukraine's api using R, but it does not seem to work when I try to make custom API calls. Just as an example, here is code I can use to import the monthly survey of enterprises in Ukraine data ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565206", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Rooting with TWRP for Xiaomi Redmi note 8 Pro I am trying to root my xiaomi using TWRP for Xiaomi Redmi Note 8 Pro. i unlocked my bootloader with xiaomi official tool and downloaded img file on my windows (later also on linux because it doesn't work) and did some commands: └─# fastboot devices buifzdrw8d8tu44x ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565209", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: What tools and technologies are used to build QStash? What tools and technologies are used to build QStash? Context: I started my first job as a web developer 6 months ago and I recently integrated QStash into our solution. I love it but like many other SaaS platforms, it's not really transparent and it's really dif...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565210", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: cv::imshow on two different threads, imshow hang after a while My goal is to cv::imshow("Live") and cv::imshow("ROI") on two different threads. The Live window is to display the frame captured by the Camera. The ROI window is to display the frame that will be used to focus. The problem is after a while the cv::imsho...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565211", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Room how to type convert a really complex data class? I want to use Room database to store data about my Itineraries, but the problem is that my Itinerary data class is really complex due to the large amount of data from API call. What is an optimal way of writing type converter for these types of classes? Main clas...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565215", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: React - drag audio file and pass it in tag I'm makin custom DragDropFile component. import React from "react"; import "./DragDropFile.css"; export const DragDropFile = () => { const [dragActive, setDragActive] = React.useState(false); const inputRef = React.useRef(null); const [files, setFiles] = React.us...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565217", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Show Only the Lowest Price woocommerce I used this code to show the lowest price among product variants in my shop. https://www.styl-bruk.eu/ Unfortunately, I noticed that the code does not show the lowest price on the single product page, it works only on the shop page, can anyone help me, what did I do wrong? ente...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565223", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: in pyvis I always get this error: "AttributeError: 'NoneType' object has no attribute 'render'" I want to do a network visualisation using pyvis in the latest version and the python version 3.9.6: from pyvis.network import Network g = Network() g.add_node(0) g.add_node(1) g.add_edge(0, 1) g.show('test.html') every ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565224", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "3" }
Q: python-whois showing different results I made a script that opens the csv file which contains multiple domain names and then uses python-whois module to find the emails for each domain. import whois import csv with open('emails.csv', 'r', newline='') as f: reader = csv.reader(f) distro = [row for row in re...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565226", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: matplotlib: get precise point of intersection import numpy as np import matplotlib.pyplot as plt x = [1,2] y1 = [11, 0] y2 = [0, 5] np_x = np.array(x) np_y1 = np.array(y1) np_y2 = np.array(y2) idx = np.argwhere(np.diff(np.sign(np_y2 - np_y1))).flatten() isect = zip(np_x[idx], np_y1[idx]) for x,y in isect: p...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565227", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "2" }
Q: Bootstrap 5 select dropdown with multiple value display properties I have the following code<hr> HTML <select id="select" placeholder="Choose Select" class="selectpicker" multiple></select> <div class="container"> <div id="all" class="items">ALL</div> <div id="1" class="items">Div_1</div> <div id="2" cl...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565228", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: HTML+CSS: navigation list toggles between horizontal and vertical whenever nav bar is clicked I'm quite new to HTML and CSS but have been following Code With Mosh's 'Ultimate HTML5 & CSS3 Series' course. I'm fairly far through, part 3/3, and we've just made a navigation bar for the website we're working towards. It ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565230", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to implement Dark Mode on Android in 2023? As the title says, I wanted to know how to set dark mode on Android. Previously, I did it, I guess, cave man style where I directly set the colors directly to the views. But now, I wanted to at least support light and dark mode. But after looking around, man, there are ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565231", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Check if img src tag is empty or null or undefinded I'm working with JSON data and process that data to insert it into the proper html-tags. Some times the JSON data doesn't contain information or isn't available at all. In the given example the src is empty or the kicker isn't there which gives results like {} or u...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565232", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Terraform how to use for_each for ssh_keys when creating multiple digitalocean droplets Background I am using the digitalocean_droplet resource. I would like to create multiple digitalocean droplets, each with their own SSH key. The droplets will be created by reading locals variable named droplets at the top of the...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565234", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: "No exports found in module" error when deploying Express REST API on Vercel I am trying to deploy my Express REST API to Vercel, but I am facing a 500: INTERNAL_SERVER_ERROR (Code: FUNCTION_INVOCATION_FAILED) error on the 'Functions' tab of my deployment: 2023-02-25T11:38:34.982Z 553b0c7a-952a-4944-8842-acf218dd...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565239", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: What are some metaheuristics that don't do many cost computations? I need to write an optimization algorithm for a client to minimize a cost function. This cost function has already been written by the client and can be run through their API, but I do not have access to the source code. Depending on the input size t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565241", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: ActiveMQ Multiple SAN SSL setup I have SSL certificate with multiple SAN configured in it, but when it's used in the ActiveMQ it fails the SSL authentication. Any help to configure SSL authentication with multi-SAN in ActiveMQ 5.16.3 would be great help. jetty.xml and activemq.xml both are configured with Multi-SAN ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565243", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: java.lang.NoSuchMethodError:No static method intArrayOf([I)[I in class Lkotlin-There's no solution? E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.exampleapp, PID: 14562 java.lang.NoSuchMethodError: No static method intArrayOf([I)[I in class Lkotlin/jvm/internal/Intrinsics$Kotlin; or its super ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565244", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Keeping Address Info in PostgreSQL DB How can I integrate all valid addresses (such as city, street) belonging to a country into the database? (Except for manual insert) I have created my city, street, country and etc. tables, but is it possible to pull this information from somewhere while filling them?
{ "language": "en", "url": "https://stackoverflow.com/questions/75565245", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: How to access specific information inside using python I'm extracting information from a wiki page from azure devops. I use response = requests.get(url, headers=headers) # Check if the request was successful if response.status_code != 200: return f"Error: {response.status_code} - {response.content}" # Extract...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565246", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Get stacktrace when context.Context is canceled by http.TimeoutHandler For debugging purposes, how can I get more information on exactly where my http.TimeoutHandler wrapped handler canceled an active http.Request::Context()? Ideally, a stacktrace should be logged. Background: The server is set up like this: mu...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565247", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: UserDefaults using @State Bool Variable not saving State I have a Button which switches State of a Color (Bool Type), foreground color and Borderframe color goes from blue to green. It works great. But now I want to save the State when I leave the "View" or when I close the app. But I think it is not that easy with ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565249", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Control IO using PLC program Is it possible to disable IO devices on Twincat 2 using the PLC program? EtherCAT connects all IO devices. I am trying to disable an IO device using a digital input to avoid Hardware Configuration faults when the IO device is disconnected from the EtherCAT. A: With the hot-connect featu...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565252", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: NextJS + Typescript + ReactQuery Persistor I'm trying to use reactquery's persister with nextjs, but when I start the page it throws an error: " ReferenceError: window is not defined " queryClient.ts: import { QueryClient } from "react-query"; import { createWebStoragePersistor } from "react-query/createWebStoragePe...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565253", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Combine two events on different element? I have a textArea where you type a message, and to submit it you have to press a button. The whole submitting process will be in JS/jQuery. For now the submission will be triggered only by the onclick event of the submit button. $(".btn-success").click(function () { /...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565254", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Parser returns either 'None' or '[]' Here's the code: import requests from bs4 import BeautifulSoup as b URL = 'https://ege.sdamgia.ru/' r = requests.get(URL) soup = b(r.text, 'html.parser') topics = soup.find_all(class_="Link-U Link_wrap-U Link_pseudo-U Link_pseudoBlack-U") print(topics) Please help guys I want my...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565256", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: Go server images directory structure for uploads and download I am new to Go and try to build my local server first. In gopath-src directory I have my Server folder I upload data to local database and save uploaded images in their own folder "test". I use Gin framework and created the route to download images from t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565259", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: C# MVC System.Web.Mvc.HttpHandlerUtil+ServerExecuteHttpHandlerAsyncWrapper error I'm new to C#. And I encountered such an error that I couldn't solve. I have a class called Colons. And I do all my work in this class. I send this class to the View side. However, when I define the View as a model and return it with fo...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565261", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: javax.net.ssl.SSLHandshakeException: PKIX path building failed for Jenkins Plugin I have installed Jenkins on Mac machine and trying to download plugin but getting error related to certificates: Caused: javax.net.ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderE...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565263", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Android : Execute PHP file without opening web browser I'm trying to run a php file that is on a server, but I don't want my mobile browser to open to display it.. The first step is achieved through the code (c++): _di_JIntent MyPhp; MyPhp = TJIntent::JavaClass->init(TJIntent::JavaClass->ACTION_VIEW, TJnet_...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565270", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: subime text3 setup for c++ 14 not showing output terminal is showing some lines which I'm unable to understand.How to see the output in required place I just want to see the output
{ "language": "en", "url": "https://stackoverflow.com/questions/75565271", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Would redraw() not cause CSS reapply? Because this problem, I don't want to use the mechanism of Eclipse CSS pseudo. I want to use CSS Class to achieve dynamic effect indirectly . Here is the test code : Shell shell = new Shell() ; shell.setSize( 200, 100 ) ; shell.setLayout( new FillLayout() ) ; Composite composi...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565276", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Jekyll server does not start locally I am creating a GitHub Pages Jekyll website. When I start the Jekyll server locally to edit the theme, I get an error when compiling this SCSS file: --- --- // start content $green: #08a057 !default; $blue: #3d61fd !default; @import 'bootstrap/bootstrap'; @import url('ht...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565277", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: confidence intervals (bootstrap in r) I have a vector of 19 values. I want to calculate confidence intervals for each value using the bootstrap method. I use the following code: library(boot) alpha <- 0.9 B <- 1000 p_hat<-s$a #vector with 19 values intervals <- matrix(0, ncol = 2, nrow = length(p_hat)) my_funct...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565279", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Revit 2022 : How to position a familyinstance (translation and rotation) from the information contained in Transform? I have a Transform element to define the positioning of a Familyinstance, how do I position it correctly? I managed to create it at its position but I couldn't make the rotations. Transform PositionA...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565284", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: How to preventing Overwriting of Redis GameStatus during User Modification and Broadcasting using Pub/Sub in NodeJS Game Server I am trying to create a game server using NodeJS and Redis. I am using one GameStatus in Redis to perform broadcasting to the corresponding clients using Pub/Sub. The problem is that I cann...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565288", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to Create Different Directories with the Same Domain Hi Basically I have to make that multiple domains have to point to the same machine pero in different directories how can I do that? i.e. www.sito1.com must point to /root/pippobaudo instead www.sito2.com must point to /root/site2 which way can i do it? Obviou...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565291", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Custom destruction and deallocation of new'd object Given a pointer obtained from a new expression, is it legal C++ to replace the corresponding delete expression with an explicit call to the destructor (or std::destroy_at) followed by a call to operator delete? In my project I use a custom form of RTTI. For types w...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565294", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: how to add noindex in metadata on nextjs 13? How to add noindex in metadata on nextjs 13? Tried to add to "noindex: true" with no success here: export const metadata = { title: "Website title", description: "My description", }; A: export const metadata = { robots: { index: false, follow: true, ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565300", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: blocked by CORS policy: Response to preflight request doesn't pass access control check... only happens when validation fails I'm kind of new to Laravel, and I'm making a simple API based project, now I have most of my code up and running, but I'm facing an issue with server side validation. every time the server si...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565303", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: leaks in fork() in C I am currently experiencing an issue with the use of fork() in C programming. After creating a child process using fork(), I have observed that the child process is showing four leaks despite not having allocated any memory. I have checked for leaks using the "leaks" command in a separate termin...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565305", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: QuestaSim colored comand line promt I am using QuestaSim in command line i.e. vsim -c For better visualilzation purposes, I'd like to color the QuestaSim> promt, because right now it is black. How can i do this? In linux i color my terminal by modifiying the $PS1 variable, but i cannot do the same in QuestaSim. I'd ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565307", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Docker failed building Rust Image on Apple M1 I'm trying to build a docker image on a MacBookPro M1, but it fails everytime. The image is based on the official Rust image and the goal is to build it, so I can run it on my server, which is an Ubuntu. The Dockerfile: FROM rust:1.59 as builder WORKDIR /usr/src/auth-ser...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565311", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: I need combobox style with rounded borders I want to ask how to make rounded corners for wpf combobox and how to set custom background for the items and how to change the drop down icon shap something like photo I tried to put border but it doesn't work correctly
{ "language": "en", "url": "https://stackoverflow.com/questions/75565315", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: spacy Arabic word2vector i try to arabic vector with spacy, so i try code from this github https://github.com/bakrianoo/aravec/blob/master/aravec-with-spacy.ipynb when i use this code !python -m spacy init-model ar spacy.aravec.model --vectors-loc ./spacyModel/aravec.txt.gz it apear this error Error: No such comma...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565318", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Determination of the time difference I have an APi in which there is JSON from which I receive date: String, I convert it to Date type but I need to somehow define the time difference in the extension should compare this date with the current one and calculate the number of hours/days between these dates. When there...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565322", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Get the html of the tag including itself I am trying to read each child node of a div. Let's say I have the following HTML code: <p>First element.</p> <p>Second element.</p> <p>Third element.</p> <table> <tr> <td>Fourth element</td> <td>Still the fourth element</td> </tr> </table> <p>Fifth el...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565323", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: ios UIDocumentPickerViewController is not remembering last folder I have a pretty simple swift code to open Files app and let the user browse to any folder and pick a file. func goToFilesApp() { var documentPicker: UIDocumentPickerViewController if #available(iOS 14, *) { let types: [UTType] = [...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565329", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to get an object item by key without a foreach in PHP I'm struggling with something that looks quite straightforward. I have an object with several items in it and I'm not able to get one single item without a foreach. Here's the object where I'm talking about: object(Cake\ORM\ResultSet) id:0 { 'items' => [ (int...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565330", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Flutter web video animation when scrolling I'm working on a Flutter project and I would like to create video background with N videos that play in sequence when the user scrolls. Here's what I'm trying to achieve: When users scrolls down, the video plays. And when he doesn't scroll, the video stops. When the 1st vid...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565331", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How can stream from php media source link on videojs or JWPlayer or Plyr Player? I am new to html player and I have no idea how I can play media from php/api link source media. I am using JWPlayer. Example Media Link : https://doamin.xyz/xxx/api.php?c=xxxxxxxxxx this link play perfectly with VLC and EXO Player. any ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565334", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: I have two lists in one big list, how do I take out the individually lists and have them on separate lines I have an external text file (read_task_doc) that saves the user name and user tasks when reading from the file using this code: user_task = [] for i in read_task_doc: task_list = i.strip() task_list = ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565337", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: How to copy a list data into the TextField with Single-line How I can copy a list value below into TextField with Single-line? A20230101001 A20230101002 A20230101003 A20230101004 The issue is when I copy this list into TextField then it just only the value A20230101001 displayed Thanks, A: How I can copy a list v...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565338", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: question regarding node modules in project question regarding node modules in project. I have created one project in that I installed npm but I got error in index.js file in node modules. I want to run server but I got onReady hook not supported.
{ "language": "en", "url": "https://stackoverflow.com/questions/75565340", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: =IF(D18="not available", "Website not available", HYPERLINK([@[Website ]])) - here I am not getting the string "Website not available" when IF is True In Excel one of the column (D) contains some links but doesn't act hyperlink so I inserted new column (E) beside and used function Hyperlink. It worked but there are ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565345", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: atomicAdd() showing error: no instance of overloaded function "atomicAdd" mathes the argument list So, I have to profile this matrix-vector multiplication using shared memory with CUDA, however, I am having problems to execute the code on Visual Studio 2022, I am getting the error "no instance of overloaded function...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565347", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: SvelteKit doesn't seem to understand "import type" I have this error when trying to use import type in Svelte. Everything is up to date, I tried to restart the svelte language server, IDE. Do I need to adjust svelte.config.js? I had the same problem with the new function from svelte called snapshot. What am I missin...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565350", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: is there any IAM solution which don't use per user pricing schema? i made a research on IAM tools and its seems that most of them are using per-active user fees for their pricing schema, and I found it so costly for large amount of user numbers is there any product tool that uses a different pricing schema? i search...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565351", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "2" }
Q: How do I get the weather icon from the google weather service using BeautifulSoup? I'm trying to create a weatherapp to learn about PySimpleGUI, where I'm scraping data of google weather service (the one that appears when you google "Weather [insert location]" using BeautifulSoup. I've been able to get the location,...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565352", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Rectangle and ellipse are not displayed in cmd.exe? I'm new to programming, and learning C, but I don't understand why it doesn't work. Here is my code: #include <stdio.h> #include <stdlib.h> #define _WIN32_WINNT 0x0A00 #include <windows.h> int main() { HWND hwnd = GetConsoleWindow(); HDC dc = GetDC(hwnd...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565353", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: Reversing a CSS animation from current postion to a new one after leaving hover I want to have a sidebar that changes color when hovering over it by changing the background position of the gradient but I also want to reverse the animation after the mouse leaves hover. But the problem with my current code is that whe...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565356", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: OverwriteModelError: Cannot overwrite `Admins` model once compiled Below is my Admin models: const mongoose = require("mongoose"); const Schema = mongoose.Schema; const AdminsSchema = new Schema( { email: { type: String, required: true, unique: true }, password: { type: String, required: true, selec...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565361", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: why the styling is not working after replace html by js? Here is my code and current result. The items that expected to be inside the table went outside. my html code <table class="items-container"> <tr> <th>Item description</th> <th>Price(HK$)</th> ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565366", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Android Studio switching position of TextView and Plain Text input I'm working on an Android application, and admittedly I'm a bit of a newbie. I'm working on a very simple input of some information, and found something very odd. Whenever I run the application in a virtual device, Android Studio flips the position o...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565367", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Unable to deploy multiple webjobs using different yml file for each webjob I have to deploy 3 window services as web jobs in a single azure app service using Git hub actions ci/cd pipelines. For each web job deployment, I am using different yml files like webjob1.yml,webjob2.yml and webjob3.yml respectively. Also, a...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565368", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Tabulator - Download file keeping the original Javascript structure I am using Tabulator for the development of an interactive web page and I am facing some issues with the File download. Basically, I would like to do the download of the table in Javascript format. It means that I am loading a Javascript table into ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565370", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Flutter localizations: Null check operator used on a null value I don't know why the Flutter localizations code not working with null safety. When I check with values, I always get the null check operator used on the null value. getTranslated causing the error. getTranslated This method can't return any values. Stri...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565376", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Why would this generic with a mapped type accept null? This code example will explain it better than words : class Foo<T extends {[K in keyof T]: any}> { foo!: T; } declare const group: Foo<{foo: string}>; // OK declare const group2: Foo<null>; // OK type obj = {[K in keyof null]: any} // ^? {} class...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565379", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to understand "A class with only a single instance is typically just represented as a normal object in JavaScript/TypeScript." Source: Why No Static Classes?. I understand what other sentences mean. But this sentence, A class with only a single instance is typically just represented as a normal object in JavaScr...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565380", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: ValueError: list.remove(x): x not in list (in python, also receiving bug in code which doesnt show any error) im making a game in which the user forms compounds with specific compositions the user can buy elements and sell the compounds for more money, thus more elements and rarer compounds but when i form water (hy...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565381", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: UFW Disabled or Enabled logs Hi everyone I want to logs all ufw events I mean that not only firewall rules changed or added rules but also firewall's enabled and disabled rules. I added these two line into /etc/rsyslog.conf :msg, contains, "[UFW ENABLED]" -/var/log/ufw.log :msg, contains, "[UFW DISABLED]" -/var/log...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565382", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: UFuncTypeError: ufunc 'add' did not contain a loop with signature matching types (dtype(' None (error) I am trying to create a box plot for the revs per mile for the Audi, Hyundai, Suzuki and Toyota car manufacturers however, I am picking up the below error which I have not encountered before: "UFuncTypeError: ufunc...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565383", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Why can't I allocate memory to more than 3 elements in C Stack? Dynamic memory allocation not working like I want it to, any ideas why ? I tried to allocate memory to Stack (stucture member). But no matter what length I tried to provide, it only pushes value upto 3 elements, I can't get it. Is the problem with Push(...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565384", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Passing method as parameter in Kotlin function issue Which is cost effective process to pass method in kotlin function or call it using object? Need help regarding cost issues.
{ "language": "en", "url": "https://stackoverflow.com/questions/75565385", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: MUI Select: how to force word wrap? So I know that by passing whiteSpace: 'normal' to a MenuItem, it'll allow that MenuItem to wrap words, like so: <MenuItem sx={{ whiteSpace: 'normal' }}> A very long text goes here </MenuItem> So now the MenuItems themselves are multiline: But how do I make the line in the va...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565387", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Strange ios error showing UIDocumentPickerViewController (or some popups) I have an iOS app using SwiftUI to develop its views. With some native popups (as the one of SKStoreReviewController.requestReview(in: windowScene) and the Files App Browser I'm getting a strange error. I open the rate popup this way: if let w...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565392", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Shopify Dawn Theme - Pop Up Text when Mouse Hovering I am creating my website and using the Dawn theme, from Shopify. I want to create this effect where I have these numbered circles with a small text and when I mouse hover the circles a more descriptive text shows up next to it. Check the screenshot below. I found ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565395", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Delete/Remove/Ignore/Omit empty XML tags in Spring Boot Web-Services response In simple words: Sometimes my client code creates empty objects while mapping Entities to JAXB. (Why? Because it's safer, and i don't want to catch NPEs later) public Person toPerson(PersonEntity person) { Person person = new Person(...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565396", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Moving a Player I am writing a Sokoban Game and I have trouble moving the Player. I am able to move the Player one spot but then he is stuck but I also can draw a new Player on every other direction but not move Before I pressed any buttons Before After I pressed all 4 directions. After My Code for pressing a key is...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565398", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Jupyter notebook cell output displayed off screen When a cell is edited and then executed (by ctrl + enter) the screen is scrolled automatically in such a way that the executed cell is at the bottom of the screen. If the output is long enough (let's say it's a plot), then it's only partially visible and to make it v...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565402", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: A* pathfinding algorithm implementation on 2d array am trying to implement A* algorithm on a random 2D array.The output should be the 2D array with the path between the start and end point, but it only returns one or tow steps and stops(the path should be -1 until the end point). this is my code: public class Matrix...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565403", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Ubuntu 22.04 automatically logout and restart problem Iam working ubuntu 22.04 version labtop suddenly automatically logout and restart problem how to fix a problem solved
{ "language": "en", "url": "https://stackoverflow.com/questions/75565407", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to login and signup for 3 users /uid separately in the firebase realtime database? By using spinner to choose the usertype in register page My login java public class Login extends AppCompatActivity { DatabaseReference databaseReference = FirebaseDatabase.getInstance().getReferenceFromUrl("https://science-ea...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565410", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to delete a row from a WordPress custom database? I have a custom database and a code that displays the table data and I want a button on the right side of the table that will delete a row that it's attached to from the table. <?php //get_header(); global $wpdb; $table_name = $wpdb->prefix . "hubaya_wallet_us...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565411", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Meaning of iPadOS Widget Targets (Canvas, Device)? I‘m trying to get the iOS and iPadOS widget sizes (small, medium and large) depending on the current UIScreen.main.bounds.size by using switch statements. Everything works like expected, but I don’t quite get which widget size is correct when running iPadOS. The fol...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565412", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Best way for text matching I am looking for a solution for text matching. I'm looking for a way to recognize the sense of a text consisting of a few words and match it with texts that have the same sense. The texts consist mostly of one to a few words. For example: My input List with the following expressions: heave...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565414", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: Google login does not work on Android after publication in Google Play (Flutter ) I really need help because I'm completely out of ideas. Task: I was given a Flutter app that has already been published for several years and was asked to fix the Google login (Firebase) on Android because it stopped working suddenly f...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565415", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Filter list of dataframe according to the mean of one column in R I am trying to filter a list of dataframes depending on the mean value of one of their columns. If taking the following example: # creating df1 df1 <- as_tibble(mtcars) # creating df2 df2 <- as_tibble(iris) # creating list of df (df_list) df_list <-...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565418", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "4" }
Q: Gaining access to my Microsoft account. Account doesn't exist try again My email was placed into a reserved domain, reason is I had an alias that I made primary and I closed my account. Any ideas on how to recover my account?
{ "language": "en", "url": "https://stackoverflow.com/questions/75565422", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: words selection "highlight" the searched desired word. What i'm trying to achieve: clicking on the next or previous button i want to select only the underlined single word and navigate in sequence back and forth on the words founded. So, how can i do, having five words founded,to select only the third word after th...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565425", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Classify people by name in YOLO person detection I am trying to find some guidance on this topic. I am using YOLO to detect people in videos which works perfect. But I am thinking on the next step of assigning a name/ID to the people detected. I can't find anything similar on the internet, so I might be looking in t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565432", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: How to get multiple images files data for update it in php How to get multiple images files data for update it in php I tried array form by explode function but not get it. Please, anyone suggest anything ?
{ "language": "en", "url": "https://stackoverflow.com/questions/75565433", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: problem on placing the correct annotation I used scatter to plot two points (p1(0.2,0.5), p2(0.3,0.8)) on a figure on a GUI (tinker), then tried to add the text for each point. However, the text was located on the figure based on the ratio of figure (for example, 'p1' located at 20% width and 50% height of the figur...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565434", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Astro.js implementing auth through jwt and store I have a spring boot backend which can send jwt token on login. I need to implement these features in my Astro frontend: * *Redirect to /login if no token is found in local storage *On login retirieve the token from server response and store it in localStorage *if...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565435", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to securely store decryptable passwords in a database? For a personal project, I want to create a secure password exchange system. My idea is to create a local client, a small program that runs on Mac, Linux, or Windows. With this client, I can add a password, encrypt it with a colleague's key, and store it in a...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565436", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: is nodejs createSign also working on deno? Is all node builtin modules working in deno? Is createSign which is a node method inside crypto working? If not is there a way to do the same functionality as createSign with the current crypto standard library of deno? Thanks A: Is all node builtin modules working in den...
{ "language": "en", "url": "https://stackoverflow.com/questions/75565438", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }