All Questions
20,603,737
questions
0
votes
0answers
2 views
Active Storage to S3 | React: CORS issue
First time posting in Stack Overflow. I am currently in a coding bootcamp and still a bit beginner. I am making a FullStack Application with Ruby on Rails and React. After deploying my code to Netlify ...
0
votes
0answers
2 views
Response.Redirect() problems
Throughout my program, I always used Response.Redirect() method. I always assumed that whenever this method is called, the current page is terminated and the redirected page is initiated. But then, i ...
0
votes
0answers
2 views
button makes one row active others inactive
This status(active 1 /inactive 0) button makes any individual record active/inactive.
I need to change it so that when clicked it makes the that record active and all others inactive by changing ...
0
votes
0answers
3 views
Including spaces in Scanner in java
I am writing a simple code that takes number,name,surname from the user with scanner.
But when user enters name with spaces in it(two or more names) the code thinks string after the first space is ...
-1
votes
0answers
9 views
Why does'nt .lower() work in the following code?
print("Welcome to the rollercoaster!")
height=int(input("What is your height in cm?: "))
bill = 0
if height>120:
print("You can ride the rollercoaster")
age =int(...
0
votes
0answers
6 views
JS environment setup
If I code in React, I install React project, write npm start and It works. I write the code, press ctrl+s and I can see the result in my browser. I want to do this same without React or other library ...
0
votes
0answers
5 views
How do i solve this issue? Uncaught TypeError: Cannot read property 'textContent' of undefined at HTMLButtonElement.botonContinuar.onclick
botonContinuar.onclick = function(){
let formulario2 = document.querySelector("#formulario-2");
let formaDePago = formulario2.TypeOfPaymentyOption.value;
valid = true;...
0
votes
0answers
4 views
Reloading recyclerView with previous data between activities
I created an app that has a Leaderboard it in.
The Leaderboard consists of 3 categories: Top rank, Most sharing, Most info.
In each category (tab), there is a recyclerView that loaded 25 results each ...
0
votes
0answers
4 views
Service manager architecture in node
I want to clear my perception about design patterns in node i was going through a project of my friend in MERN stack and found for backend he used service manager class for every process in the ...
0
votes
0answers
5 views
GitHub Checkout Action: Check out commit pushed by previous job
The first job in my GitHub workflow commits and pushes some code. The second job should checkout the latest code including the commit made by the first job. However, if I use the Checkout Action ...
0
votes
0answers
6 views
Google apps script, onChange, can't pass a trigger object to a variable
I'm trying to work out a script that will hide rows from an onChange() trigger. When a cell becomes "0", I want the row to hide. I'm new and just learning, but what I've written is below. I ...
0
votes
0answers
6 views
Using PowerShell, how do I call CURL.exe using CMD.exe AND display results in WinForm
I am building a dashboard (WinForm) for internal usage, written in PS, and have a section where users can query sites using various methods/tools for inspection.
All the other methods/tools (IWR, ...
0
votes
0answers
8 views
Image overflows the container
I have a situation like the one below. I'd like to have a container into which I'll be putting an image (it could be horizontal or vertical, or square). I want it to stay within the main-container, ...
0
votes
0answers
5 views
Interactive Visualization on Kaggle Notebooks Using Matplotlib
I know plotly should work, but can we do it only with matplotlib? The following code snippet is what I can do, it works well until I clicked "RUN". And then in the viewer, users are not ...
0
votes
0answers
8 views
How to interpolate a dataframe according another dataframe
I have two data-frames that have the same cadence but the staring time is different. I would like to interpolate the second dataframe is such a way that the measurements occur at the same time as the ...