Questions tagged [user-input]

User Input is data that the user inputs into the program. It generally takes the form of a String, but may also be an integer, floating-point number, etc.

5580 questions
1
vote
0 answers

Insert bytes[] in database (Hibernate, JPA, Spring) from input type=file

I've been fighting for days with this problem:insert file into database with Spring Boot, JPA Hibernate and Vue.js frontend. (Yes I know it's better to store the location to retrieve the file and not the file itself, but I have to store the file,…
chln
  • 97
  • 1
  • 2
  • 10
1
vote
1 answer

Set Three.js Background from user upload

I want a user to be able to upload an image from his own computer, which should be set as a background image for Three.js. This image should be a static background. Is it possible to save the image just in a variable? My current code:
1
vote
0 answers

Script for copying and pasting value only (GOOGLE SPREADSHEETS)

I have the following idea I can't implement: There is a row with given table plate numbers (column B) and there is a second row with names which are copies by "vlookup" formula from another spreadsheet and in case there are no numbers found, the…
1
vote
1 answer

Gnome shell extension parameters location

More of a user question, I wanted to know where are stored Gnome Shell Extension parameters, I mean user-specific parameters for each extensions ? To be more specific, here's an example: I installed Media Player Indicator on my former system and I…
BFlat
  • 174
  • 11
1
vote
1 answer

Android Studio - MPAndroidChart Add User Input to Line Graph

Hey guys it is my first time using MPandroidChart and I am currently experimenting with it to fully understand how to use it and its capabilities. Presently, I am trying to update my line graph using the data inputted by the user (through…
David
  • 153
  • 1
  • 14
1
vote
3 answers

Failed to find style 'textInputStyle' in current theme

I am very new to android develop & Android Studio. I was trying to create a simple app with a text input field so that that user can input text. (Again very new to this and just messing around with android development/studio). Anyway, when I've…
1
vote
0 answers

how to get keyboard input without python shell

the problem = I dont know how to get a program to detect a input from the keyboard without using IDLE A solution to my problem would look like; some code so that when a key is pressed it sets/makes a variable. (I am doing this on a raspberry pi) eg.…
Ryan.B
  • 13
  • 5
1
vote
1 answer

custom input field on product grid in admin magento 2

I am making custom module where am attaching to customers to products with the help of product grid See screenshot two tabs and in select product tab m selecting products Tab 2 while selecting products I want to add one custom input field on all…
User9009
  • 11
  • 2
1
vote
2 answers

How can I display user search results onto the same page inside a table?

I'm trying to get some user search result data to print into a table on the same page the search was made from. I've searched for solutions here, but all of the examples are using MySql. I'm currently just searching from a single .log file in the…
Roberto Blair
  • 71
  • 1
  • 7
1
vote
4 answers

Need help listing the frequency of characters based on user input

the current code I have lists the frequency of an array of letters and I was wondering if there was a way to incorporate numbers and all punctuation available to the user. (i.e. ASCII text) I appreciate any help! import java.util.Scanner; public…
Sebastian
  • 15
  • 1
  • 3
1
vote
1 answer

imitate user activity / prevent automatic afk detection

Is there a way to simulate user activity on desktop on Windows? This is the situation: A friend of mine works from his home. His company recently decided to provide their employees with a communication tool which they have to keep running in the…
hooch
  • 1,135
  • 1
  • 16
  • 31
1
vote
1 answer

Column names based on Shiny dateRangeInput values

Below, I have some basic code for a shiny app I'm creating. I want to take the user uploaded file, split the dataset into two sections - one based for the first inputted date range and one for the second. Then, compute sums for a different column…
Lost
  • 331
  • 1
  • 12
1
vote
0 answers

Gosublime doesn't accept standard input from console

I just downloaded lastest sublime yesterday, a new user to sublime. I am using gosublime:go to implement some basic command. Problem came out when I tried to run the following code: package main import ( "fmt" ) func main() { …
KKIRIRI
  • 11
  • 1
1
vote
1 answer

Multiple Inline Input Values, using Vue Render functions

I am creating a fill in the blank type game using vue. Where a based on a JSON file question the _ in the question are replaced with inputs. I am having trouble with using multiple input fields in my question. I initialize an empty array for user…
bilcker
  • 1,120
  • 1
  • 15
  • 43
1
vote
1 answer

bash doesn't execute commands after for loop

I wrote a small installation script for my utilities set: #!/bin/bash set=(move-volume move-db dmove-copy-id dmove-config dmove-nginx-proxy) for item in ${set[*]} do wget -q -nv https://raw.githubusercontent.com/pavelsr/dmove/master/$item -O…
Paul Serikov
  • 2,550
  • 2
  • 21
  • 36