text
string
meta
dict
Q: next js 13 Dynamic rendering instead of Static rendering when using headers in fetch? I'm debating with myself that either I didn't understand next 13 new concepts correctly, or it's really a bug ? I'm not sure, and appreciate someone that knows better to suggest what is going on. I have a simple page.tsx in my 'app...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572580", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Solve the system.nullreferenceexception problem in Visual Basic I made a program that displays on a web browser and it worked It was shown on Internet Explorer When I linked it to google chrome it was getting an error system. nullreferenceexception problem I expected it to be a minor problem, but it is not easy
{ "language": "en", "url": "https://stackoverflow.com/questions/75572581", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Segmentation fault in C++ while running a function I am trying to get an input in vector in double in a function, but its showing Segmentation fault. The Function vector<double> Layer::calcOutput(vector<double> inputs, int I, int O){ //Dynamic array for storing weighted inputs after computation vector<d...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572584", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-4" }
Q: Not able to create a GPU instance on GCP I am trying to create a GCP instance with an A100 40GB GPU to train a Transformer model, but I'm getting this error - Operation type [insert] failed with message "Quota 'NVIDIA_A100_GPUS' exceeded. Limit: 0.0 in region asia-southeast1." I have already increased the GPU quote...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572587", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: PHP cURL, how to GET XML Response Can someone help me with this function? $url = 'https://exampleurl.com?xy' function download_page($path){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$path); curl_setopt($ch, CURLOPT_FAILONERROR,1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1); curl_setopt($ch...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572588", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Got a error while running a python-telegram-bot This Code I wrote this after I run it; I got a problem. from telegram import Update from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes async def hello(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: await update.message.reply_t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572591", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to create correlation matrix for specific timeframes based on specific dates? I want to calculate the correlation between the log returns of the SP500 and different stocks based on specific time frames. To do this, I have two data frames. First DF1 : "Overview" contains the stock identification "RIC" and the sta...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572592", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Oracle-How to exclude several non-overlapping date period from a certain period? I have a sample data as below With RawTable as ( Select 'A' ColA,'AA' ColB, To_Date('2023-02-10','yyyy-mm-dd') START_DATE,To_Date('2023-02-23','yyyy-mm-dd') END_DATE, To_Date('2023-02-11','yyyy-mm-dd') Exclude_SDate,To_Date('2...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572594", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Material UI Button not displayed Follow is my content of index.js import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; const root = ReactDOM.createRoot(document.getElementById('root')); root.render( <React.StrictMode> <App /> </React.StrictMode> ); App.js1 import Bu...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572596", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Bug after php update I have a bug on my application after upgrading my php version. The 8.0 php version is ok but if I try to update on 8.1 or 8.2 my appication block with an error I don't understand. TinyButStrong Error in field [var.menu...]: parameter script with value '[val]' cannot be called because the current...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572598", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: ProviderNotFoundException in flutter app with Bloc I want to create an app containing a few screens where a user have a possibility to choose different options. On the last screen I have a checking if the object already exists in the database with bloc. However, I am constantly getting this error: screenshot of the ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572599", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: C++: How to create a dynamic array in which instances of a template class can be stored? #include <iostream> #include <string> template<class Function> class Class_Function { private: std::string name; Function&& func; public: Class_Function(std::string s, Function&& f) :name(s), func(f) {}; templat...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572603", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Loading data in a dataframe - pyspark I'm trying to load data into a dataframe from a partitionned structure. I have a specific period selected in my example and then loop to have my data range. But This is not very performant! start_date = inputdate end_date = inputend df_union = None for single_date in pd.date_...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572604", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Access on_connect extensions in GuardContext I plan to bind a server to multiple ports and want to implement a guard based on the connected port. On one of the ports the server is supposed to act like a proxy and the other one can be used for administration. I couldn't find a method in Actix Web, to add a guard base...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572606", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Getting this error System.ArgumentException: Host can't be null I'm trying to connect to Postgresql from my project, and I get this error over and over again. I tried all the Youtube solutions with no improvement.
{ "language": "en", "url": "https://stackoverflow.com/questions/75572607", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Can not find out what the problem with chalk is I have a really basic javascript in index.js file where I import chalk and try to console log text with green background: #!/usr/bin/env node import chalk from "chalk"; console.log(chalk.bgGreen('Well, HWLLO...')) I added "type": "module" string in my package.json. ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572611", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Adding VPNaaS to an OpenStack Zed setup First of all, sorry if I'm using the wrong category, group or whatever. This is my first every question here. I've setup Openstack with this documentation https://docs.openstack.org/install-guide/ followed by the installation of keystone, glance, nova, neutron, horizon from he...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572612", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: printf repeats an output inside an if statement This is part of a program I'm trying to do but the printf("Do you want to exit? [Y/N] "); repeats itself and I don't know why. This is the code #include <stdio.h> #include <stdlib.h> int main(void) { int repeat = 1; while(repeat == 1) { pr...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572613", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: assertion error if dataset is a file path, an output embeddings file path must be given Error: embeddings_mapping = embedding.create_word2vec_embedding_from_dataset(values) word_vectors = embeddings_mapping.wv word_vectors.save('vectors.kv') reloaded_word_vectors = KeyedVectors.load('vectors.kv')...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572614", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: I’m trying to make a build in unity but appears “Error to make a build in unity, WindowsPlayer.exe was not founded” what can i do? HELP ME PLEASE! I CANNOT DO A BUILD IN UNITY! THANK YOU IF YOU HELP ME. (APPEARS THERE’S NOT “WindowsPlayer.exe) I tried to try again, and nothing, i tried to create a new folder, and no...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572618", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: i want python script to copy the files form one folder to another folder based on created date and time? I want a Python script to copy the files from one folder to another folder based on the creation date and time. Suppose the creation date of the file is 22-2-2023 and the time is 6 am so my script copies the file...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572619", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to wait for website to load new components after clickin add 10 to website I have problem beacuse I want wait with my second function and louch it only after all components loads on website. In function val I'm clicking button to show more content and there I want to wait. const puppeteer = require('puppeteer');...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572620", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Appium Java code issue: io.appium.java_client.service.local.InvalidServerInstanceException I am trying to run a Java code to launch a AndroidDriver: AndroidDriver mDriver; DesiredCapabilities dc = new DesiredCapabilities(); dc.setCapability("deviceName", Constants.DEVICE_NAME); dc.setCapability("plat...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572621", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: What happens to a std:.reference_wrapper if the reference used to create it goes out of scope? What happens to a std::reference_wrapper if the reference used to create it goes out of scope? Can it still still provide access to the underlying object (which would still exist), or would it be dangling and attempts to u...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572622", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Meta API sponsor ads how to get who clicked on facebook sponsord ads ? Is ther any possible to track a spnsored ad on facebook by user Is ther any possible to track a spnsored ad on facebook by user
{ "language": "en", "url": "https://stackoverflow.com/questions/75572623", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: docker desktop ssh sftp container can not be created because docker: poorly formatted environment: variable 'usersftp:"ssh-rsa AAA I would like to use ssh passwordless to upload in golang a file. I used for this atmoz/sftp (https://hub.docker.com/r/atmoz/sftp) I used this command to create the ssh container docker r...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572624", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to tell git that I already changed the path of a submodule? I have a submodule at the following path: src/level_1/level_2/my_Submodule. In VS Code, I changed the path to: src/level_1/level_2/level_3/my_Submodule. In this case, git gives me an error that the "path to the my_Submodule is not found". How can I make...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572625", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Create control with collection property I try to develop a simple DataGridView control. But I have an issue. My column collection is not a part of the tree and the DataGridViewTextBlockColumn class "only" inherits from DependencyObject instead of FrameworkElement. So the binding doesn't work. What is the right way t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572628", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: In WordPress is there a way to create a Google Maps widget that allows you to select a location from a list or dropdown? I want to show a Google Maps widget that lets the user select which specific location to view, something like this: Is there a free plugin that allows you to do something like this?
{ "language": "en", "url": "https://stackoverflow.com/questions/75572629", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: MellowMax operator returning +INF MellowMax is a softmax operator that can be used instead of Max in the context of Deep Q Learning. Using Mellow Max has been shown to remove the need for a target network. Link to paper: https://arxiv.org/abs/1612.05628 To estimate a target Q Value, you perform mellow max on the Q V...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572632", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to filter a JSON object by a certain value? So I'm currently working on a map project using leaflet and javascript. My team and I have collected restaurant data and stored it in a table, which we then converted to a JSON file. The table contains 5 columns for Occasion, Restaurant name, coordinates, budget and ve...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572635", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Can't pass null for argument 'pathString' in child() on ID? Whenever i want to update my data it keep crashing. The error always on my id epecially when i declare the database.child(refering to id) ? i hope there is solution on my problem. This is my database This is my code UpdateShelterActivity Bundle bundle = get...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572637", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Can't run a Docker container GitHub Action locally using Act I want to create a GitHub Action that uses docker and want to run it locally using act. When I execute the act command, I get the following error: Error response from daemon: pull access denied for act-github-actions-dockeraction, repository does not exist...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572639", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Split long sentences of a text file around the middle on comma (multiple commas) I have a .srt file that I'd like to split to watch with mpv. It's a whole book turned into .srt for language learning, with an audiobook to go along. My problem is, it's in Japanese, which doesn't have space between words, so mpv doesn'...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572640", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Deleted username then restarted computer. But previously 5000% correct password now showing incorrect, cannot login Details of what I did: Entered "net user [username]/delete" for deleting username from Command Prompt, got response that command executed successfully. Restarted computer only because it was acting ver...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572641", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Is caching useless in Entity Framework Disconnected scenarios? My app uses Entity Framework, and am I trying to improve performance by caching database queries. This means that - other than the 1st result ever for each query - I will be using an EF disconnected entity. According to this MSDN article, one HAS to inqu...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572642", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: What's the recommended way to operate on C# arrays by multiple indexes? Let's say that I have two arrays: double[] array1 = new double [] {22.5, 15, 33.7, 42, 17, 7.5, 3.5, 1, 17.5, 7.7, 5} int[] idx = new int[] { 1, 4, 5, 8}; Now I need to generate new array that will have values from array1, but only this with i...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572643", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Visual Studio Code preview of the type definition (typescript) of a parameter on mouse hover doesn't work I am learning Nestjs and have created a new project (with TypeScript) and opened it with VSC. However, VSC does not show me any detailed information about the parameter of a type. I want to be able to see the st...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572645", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Saving feature in mind mapping tool I've been working with friends for some time on a mind map program. Generally, the whole program is already set up, but we still lack a module that will save the map project in jpg or in a format for reopening the edition, etc. Does anyone have any suggestions on how to go about i...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572648", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How can I nest Bootstrap grid properly without wrapping columns? I want to make a grid of 8 cols left and 4 columns right. In the 4 columns in the right, I wish to further split it up to 4 cols and 8 cols. It is important that the grid does not wrap. This is my html: <div class="container"> <div class="row"> ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572649", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Snipcart and NextJS: CORS policy: No 'Access-Control-Allow-Origin' header I trying out Snipcart with NextJS and in my checkout after paying I receive this error: Access to XMLHttpRequest at 'https://app.snipcart.com/api/cart/01033af3-37ae-4741-a217-8d8871fab876/pay' from origin 'https://www.myfrontend.co.uk' has be...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572650", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Send arguments to a sun page kirigami I have a cardgridview element and separate QML page I would like to send model.image to the other QML page when pageStack.layers.push(Qt.resolvedUrl("player.qml")); gets called I have tried looking for how to pass arguments to sun QML pages and global variables which either don'...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572651", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Uncaught TypeError: Cannot read properties of null (reading 'image') at Navbar (Navbar.jsx:25:1) at renderWithHooks NavBar.jsx file import React from 'react'; import { Link, useNavigate} from 'react-router-dom'; import { IoMdAdd, IoMdSearch } from 'react-icons/io'; const Navbar = ( {searchTerm, setSearchTerm, user}...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572652", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: how to customize kadence theme search result I need help regarding kadence theme search bar result. when I search for Zoho (only with this keyword) I get the link to the home page as shown in the pic and some description which I don't know where it came from. Does anybody know how to disable it or change the text?im...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572657", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Google workspace marketplace how to fill and give the testing account instruction to test the google review team for gmail add on I've created gmail addon and submitted to Google workspace marketplace sdk with completed of storelisting mandatory details of the addon product I've got rejection got from google workspa...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572661", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: How do a move a dynamically allocated element to another node in C? I'm creating a huffman tree in C. I store all the characters with their frequencies as a queue_elem element. I put all those elements in a priority queue then take the least frequent elements, allocate a new queue_elem element with its left and righ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572663", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Getting "No input provided" error while running a script file in github actions workflow I am running a script file in github actions workflow. I am getting the below error. No input provided! type (/home/runner/work/deploy_ecs_stack/deploy_ecs_stack/.github/deploy_ecs_stack.sh --help) to see usage help Error: Proc...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572665", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Unstage/revert single lines with Git GUI Is there a way to unstage/revert single lines of changes using Git GUI? How can I do that? I am a long time Atom user. Here I had the option to revert single lines or multiple selected lines of staged code as shown in the image: A: Do you mean something like this : Intelli...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572671", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Is there a difference in speed between reading and writing a file over the network with SMBv3? I am designing an application that will transfer files over the network to file servers and will fix errors in files that have arisen due to intermittent, short network issues. I expect some files to be largely transferred...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572673", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Bean serialization issue while running test case when hit the endpoint from the browser it is working fine but test case failing. please find the code below: Controller class: @RestController public class EmployeeController { @Autowired private EmployeeDTO employeeDTO; @GetMapping("/getEmployee") ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572676", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: How do I remove a filter from the text in CSS? I was trying to fix this, but I guess nothing worked. I tried to put the text in a div and then tried to remove the filter but it didn't work. Here is my HTML and CSS code: .welcome { background-image: url('code.jpg'); -webkit-filter: brightness(70%); filter: br...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572679", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Convert pinescript v2 to pinescript v5 I have a simple strategy based on Pinescript v2. I would like to convert it to pinescript v5. Here is the v2 code: //@version=2 strategy(title='Strategy 1', shorttitle='Strategy 1', overlay=true, pyramiding=0, initial_capital=10, currency=currency.USD) trade_size = input(1) tf ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572684", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to create a dataframe from a table in an image I'm trying to create a dataframe from the attached image but im stuck here and unable to create and the next set of questions are based on this to be created dataframe. Could anyone help please? I tried the below code. Using which I was able to create the columns w...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572685", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Standardising data for shrinkage with categorical variables I am analysing a data set race_dfin R to do with races and their times. Each row has a categorical variable race_df$raceID (so I will use a factor variable to simulate an indicator variable for each race) and has associated race_df$lap_time. I want to analy...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572692", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Cannot load/run Imagick on Raspberry OS (Debian 10) and PHP 8.2 Background Dear all, I've installed PHP 8.2 on me Raspbian OS (PHP 8.x required by some libraries). I need to install the PHP imagemagick extension to convert images (SVG to PNG). However, I can't get it running. Here is what i tried Firstly, I installe...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572695", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: How to load and inspect a gmsh mesh (*.msh file) I want to programmatically inspect *.msh files (get a number of nodes and elements, possibly also edges and faces). How can I do this with either gmsh or pygmsh module? All tutorials I have found so far focus mostly on mesh generation. I can not find any function t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572698", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Simulating values constrained by min and max in R Im planning my lifting goals for the next six weeks and I want to simulate different scenarios. I need to generate 100 scenarios for the next six weeks with one point per week per exercise. Each week the value must be greater than the previous week. This is what I ha...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572699", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: GitHub pages relative links not working as intended I'm working on this project, repo here. I'm trying to implement a random project button/link which is meant to redirect a viewer to a randomly selected page. I got that working (code in nav.js, links array in random-project-links-array.js) on localhost, but once I ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572701", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Laravel 10 - Breeze, React, Inertia - 419 error on initial install Really not sure what to do here, I have set up a fresh Laravel 10.0.3 application, installed Laravel Breeze and selected React and no to SSR. I have migrated my DB and setup my .env, basically if I use php artisan serve the Inertia response works and...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572702", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: im a python and pygame beginner and i dont know what i did wrong here import pygame running = True BLACK = (0, 0, 0) GRAY = (127, 127, 127) WHITE = (255, 255, 255) RED = (255, 0, 0) GREEN = (0, 255, 0) BLUE = (0, 0, 255) YELLOW = (255, 255, 0) CYAN = (0, 255, 255) MAGENTA = (255, 0, 255) background = GRAY pygame.in...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572705", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to authenticate to Github from Git Extensions with access token? I try to push branch with Git Extensions to GitHub, but when pushing the change it displays a Github pop-up window to login. When pushing repo changes from Git Extensions, it displays a Github pop-up window to login. I created access token as @invz...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572706", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Which configuration to choose for launch.json to run a program in visual studio Can't run a file in visual studio. It says launch:program doesn't exist. then I open launch.json but I dont know which configuration to choose. Please suggest how to proceed. Absolute beginner. I selected the windows C++ launch option ou...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572707", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-4" }
Q: Fast traversal voxel algorithm works incorrectly I have been trying for several days to implement the fast voxel traversal algorithm by J. Amanatides and A. Woo. But voxels are strangely rendered as if they are just planes. I first check if the ray intersects the entire voxel grid, and then the traversal function is...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572708", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Why the banner image not taking up the full width and height of the viewport(it's not visible even), it should be visible behind the Navbar too Please refer to the code below- DRIVE LINK - https://drive.google.com/file/d/1wv8Va0LIF2eg7fIOuAIp1DeY7cC-9Ne0/view?usp=share_link HTML- <section class="main"> <div c...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572710", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Does the HERE explore edition 4.13.3 Geolocation and Search work on your devices? When i make search requests with the SDK version 4.13.3 i get permanently "Operation cancelled" errors. With an older version the SDK works. Can somebody help? Can i downgrade somewhere? When i make search requests with the sdk version...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572711", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Hibernate unwanted delete after update in @ManyToMany relationship Here are my entities Master: @ManyToMany @JoinTable( name = "student_project", joinColumns = @JoinColumn(name = "student_id"), inverseJoinColumns = @JoinColumn(name = "project_id")) private Set<Project...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572714", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: how to pass data to slot in createApp method vue Link component in template like this <Link href="'+route('references',[process_instance_id])+'">Hello<Link> I want to call this component like below code import { router,Link } from '@inertiajs/vue3' createApp(Link,{href:route('references',[process_instance_id]),def...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572715", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Getting 1 week data from firestore database with flutter I want to pull last 1 week data from firestore database but the data is not coming, where, what did I do, even I don't know, can you help me? DateTime birHaftaOnce = DateTime.now().subtract(Duration(days: 7)); Timestamp birHaftaOnceTimestamp = Timestamp.fromD...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572716", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: How to manage Azure App roles from external application I am building an application which uses role based access and have created custom app roles in Azure App Registration and have also assigned some users with roles in Enterprise Application. My Question is, can we do the removal & assignment of these custom app ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572720", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Problem configuringthe installer of NetBeans IDE I keep getting this problem when I try to install NetBeans IDE. It stops at the 10% and doesnt show any other error messag. Please see the picture i provided. Did anyone had a this problem before and knows how to solve it ? I tried to install the IDE but a problem kee...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572726", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Scala 3. Recursive definition similar to Haskell recursive definition exploring article on Continuation Monad while learning Scala 3. I understood the whole article and basically rewrote code into Scala 3 - except this single tricky goto function: {-# LANGUAGE ScopedTypeVariables #-} import qualified Control.Monad....
{ "language": "en", "url": "https://stackoverflow.com/questions/75572727", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Understanding Parameter Numbers in an RNN I have written a very simple RNN and am trying to understand how it came up with the number of parameters. My understanding was that it concatenates the hidden vector (length 4 in this case) with the input vector (length 20 in this case) to give a combined input size of 24, ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572728", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Github action Artifact not uploaded WinUI3 app I am trying WinUI3 and Github action for the first time using this link : https://learn.microsoft.com/en-us/windows/apps/package-and-deploy/ci-for-winui3?pivots=winui3-packaged-csharp After successful workflowrun, its not uploading the Msix file: I am confused at the ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572730", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Professional menu with JavaScript and jQuery (The last part) In my previous questions and with the help of Michael M., I fixed all the shortcomings of my site's menu. But after transferring the menu to my site, I realized that my menu does not open any links and all menu and sub-menu options are only in display mode...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572732", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Unable to call Google API inside the Azure web service I am using Google API url inside my .net core application. It is working fine in my local system but when i published the same on Azure app service, it is not working.... I am getting below error ... One or more errors occurred. (Response status code does not in...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572733", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: RPATH in embedded binary: image not found while path is Okay Since DYLD_LIBRARY_PATH is ignored when SIP is active I am trying to use @rpath instead. I understood that one can add several @rpath and that the system will try all of them successively to find the library. I also understood that RPATHs propagate from lo...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572735", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: keycloak : Unrecognized field "access_token" I've a problem with the keycloak admin client. When I try to do : // Création d'un client Keycloak Keycloak keycloak = KeycloakBuilder.builder() .serverUrl(keycloakUrlAuth) .realm(keycloakRealm) .gran...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572737", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Cannot use background element in style tag in android I am trying to apply a custom style to a textview in android using styles. Unfortunately I am getting this exception at runtime: android.view.InflateException: Binary XML file line #59 in com.myapp.android:layout/fragment_draw: Binary XML file line #59 in com.mir...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572738", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Create Route from the textual step by step directions of google maps I need to draw a route from point A to point B on a map. But, I do not want the default route any map would generate when given the two points. Rather, I want to use specific step by step directions I already have in text format, to sketch the rout...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572739", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Guidance related to Facebook Protect to login to my account i deactivated my facebook account 8 months ago but now i can't login into it. it tried to change password but it gives errors and say incorrect password. enter image description here
{ "language": "en", "url": "https://stackoverflow.com/questions/75572740", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Import error while using Python on VS Code I need some help regarding an 'incompatible architecture' between 'x86_64' and 'arm64', because of which I can't run my Python code on the VS Code. I have attached the error message below. ImportError Traceback (most recent call last) ~/Librar...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572743", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to enable a tooltip on hover when the button is disabled? I am trying to make the tooltip visible only when I hover over a button when disabled. When the button is enabled, the tooltip should not be seen. I am making use of react and antd. This is the code I have written, import React from 'react'; import { Butt...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572744", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: FBX 6000 file format specification I found a FBX 6100 binary file in the Synty-Store War Pack, and neither Assimp (FBX-DOM unsupported, old format version, supported are only FBX 2011, FBX 2012 and FBX 2013) nor Blender (Version 6100 unsupported, must be 7100 or newer) were able to open it. How can I read them progr...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572745", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: I can't open the html file in codesandbox on ios When I click on the browser button, it writes to me could not connect to the serverscreenshot Only the javascript console is available to me
{ "language": "en", "url": "https://stackoverflow.com/questions/75572747", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Hoping for solutions. I can't still figure out how to meet the condition stated below Continuous and Sequential LED loop with pushbutton int led1 = 2; int led2 = 3; int led3 = 4; int led4 = 5; int switchPin = 6; bool isButtonPressed = false; void setup() { pinMode(led1, OUTPUT); pinMode(led2, OUTPUT); pinMod...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572749", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Is using wp_delete_post enough? I would like to know if just using wp_delete_post($post_id, true); is enough to delete everything in DB that is tied to the post, skipping the trash. According to the documentation it is, but there are several answers on the internet mentioning to use delete_post_meta also, like this:...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572750", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Fixing Python code which includes dictionaries Use a dictionary to count the frequency of numbers in the given “text” string. Only numbers should be counted. Do not count blank spaces, letters, or punctuation. Complete the function so that input like "1001000111101" will return a dictionary that holds the count of e...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572751", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Product Variation Showing very high default price WOOCOMMERCE Recently i changed my mind to add product variations on existing products, after doing that the default price is working anonymously, like i have 3 prices 400, 500, 600 but the default price is showing very very high like 50000 etc, please check the scree...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572757", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Rendered Css component which is kind of trapizod but failed to create the same as design this is image i want to create my code is: <div style={{ display: "inline-flex", justifyItems: "center", alignItems: "center", }} > <p style={{ left: "50px" }}>{renderFpbLogo()}</p> <p style={{ back...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572759", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Update observable collection in sub Class I have got main ViewModel which contains Collection of data. It updates from Store by event. I want to send this collection to another ViewModel, which will show this data in view. But i have no idea how to notify another View Model. Data aren't shown in view. I am sure that...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572762", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: My controller can’t read {id} with dd(function) in laravel livewire I am new in laravel livewire and i think my controller isn’t able to call (id) in my function but what drives me crazy is the last part function render() in the same controller works fine livewire controller: <?php namespace App\Http\Livewire\Admin...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572763", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Xamarin Forms Android slows down with increasing navigation depth In my Xamarin Forms app I have a ListView with 15000 items. I use a background task (Task.Factory.StartNew()) to calculate data for batches of 300 items and update a list item property used in a Binding, signaling the PropertyChanged event on the UI t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572764", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: k8s execute command from master node EKS v1.23 I would like to add Cluster level default constrains (scheduling profile): apiVersion: kubescheduler.config.k8s.io/v1beta3 kind: KubeSchedulerConfiguration profiles: - schedulerName: default-scheduler pluginConfig: - name: PodTopologySpread args: ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572765", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: What is the general express setup to respond to a post that has to wait for a query My react page is sending the post request. My database responds but it's too slow. The page gets undefined as a response. I'm not sure what I'm supposed to be doing in general. Await/ async doesn't appear to do anything. The docs ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572768", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Errors occur while compiling SFML-Imgui "undefined reference to" I'm trying to compile SFML-Imgui in the Code::Blocks application, but I get errors. I have all the necessary Imgui files in the project directory, but what else do I need to do to fix the error? ../main.cpp:13: undefined reference to `ImGui::SFML::Init...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572770", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to replicate sql query in spark dataframe How to count and count distinct two variables and create a new column in DataFrame? this is from a temp view, but i would like to create from dataframe directly My SQL query: query = """ SELECT NOW() AS TODAY, 'Main' AS SOURCE, 'People' AS TABLE_NAME, COUNT(variable...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572771", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Convert Str() in Int() in PyQT4 enter image description here enter image description here I cant seem to convert the inputted string data from the user to a integer. I built a GUI using PyQT4 to collect the number of items, price per items and the discount percentage from the user. The GUI works with the code I've w...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572772", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: How to get variable which function was called? I'm making a function library in C++, and I'm having a problem with get the variable which function was called. It's hard to explain, like imagine a vector, std::Vector<int> v, and when I want to push back a value I do this: v.push_back(1). So, I've defined my variable ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572774", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: Python automatization on Android I'm looking for a library to automate projects within android using python, because pyautogui doesn't work on Android, I needed something that clicked on the screen and dragged it, if you can point me to a library with these possibilities, I'd really appreciate it!
{ "language": "en", "url": "https://stackoverflow.com/questions/75572775", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: What file compression has a header/signature 78 56 34 I've got a compressed file. I don't know what compression software was used to create it. I want to decompress it, preferably on a Windows platform. The file extension is .CMP but that may just be a "cute" extension name and not really be indicative of what was u...
{ "language": "en", "url": "https://stackoverflow.com/questions/75572776", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }