Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
54 views

I'm building a custom CLI daemon in Go for Ubuntu. When I run the CLI locally (without SSH), everything works correctly — for example: admin@admin> whoami responds as expected. However, after ...
Aditya Paluskar's user avatar
0 votes
2 answers
69 views

I'm working on a very simple program that takes a user-specified number (can be an integer or a float of any length) and performs one specific multiplication operation on that number. The program then ...
jasper's user avatar
  • 1
0 votes
1 answer
88 views

I am doing a REST API in Java (although this question may apply to other languages) where I create several local files and directories, and they can be deleted based on input. I manage my files in a ...
coriuser's user avatar
2 votes
2 answers
68 views

I'm trying to make a script that will ask for 5 score input from the user. Each score corresponds to a specific dilution. The input are strings and only six "characters" are allowed to be ...
user30902982's user avatar
-1 votes
1 answer
86 views

I need to periodically record a value in the program using a dialog box. The program is written in Borland Delphi 7, Windows API. The recorded value is stored in RAM. I also have a Java program in ...
Alexandr X's user avatar
0 votes
0 answers
36 views

I have in Drupal 10 made a simple table that is being build with a PHP as part of a module. When I use a buildForm-function, I can not position the input fields. I want these to be as if they were ...
Serge tkint's user avatar
2 votes
1 answer
55 views

I am following a tutorial I found on youtube for a file integrity monitor. The code is messy but im trying to add my own twist and clean it up. I just added input validation and now the code won't run ...
Trystan Williams's user avatar
0 votes
0 answers
25 views

I have tables -> calender , bi_alloceffort_data & bi_alloceffort_data_main. I Have linked calendar date column to REVDATE column of bi_alloceffort_data & "PROJECTNO" of both the ...
recharge amount's user avatar
0 votes
0 answers
35 views

Windows Forms has a control NumericUpDown that allows the user to choose a number by clicking tiny up and down arrows, or entering a number via keys. Is there a way to add this functionality, but ...
Anna Vahtera's user avatar
2 votes
1 answer
92 views

class CustomUserViewSet(UserViewSet): serializer_class = UserSerializer pagination_class = PageNumberPagination permission_classes = [permissions.IsAuthenticated] def ...
st.splash's user avatar
0 votes
1 answer
58 views

When running my programs in VS Code terminal, the input and output are printed in the same terminal window. But I want the input and output to be clearly separated, like in online compilers. Eg: (...
Joy's user avatar
  • 103
0 votes
1 answer
247 views

In my multi-tenant SaaS application, I use AWS Cognito for authentication with a managed login page. Each tenant has a separate Cognito user pool. The authentication flow is as follows: The user ...
Jithu Jacob's user avatar
0 votes
0 answers
70 views

I am making a text-based game with frames, and my problem right now is that I have the code to check for keypresses key = getkey.getkey() But it seems like that command waits for you to press a key ...
itsThatCoderboy's user avatar
0 votes
1 answer
656 views

I am working with MudAutocomplete in Mudblazor(6.12.0).I want the autocomplete to hold the list of values as well as allow the user to enter the text manually which is not in the list .It works fine ...
Sapri s's user avatar
  • 69
1 vote
0 answers
136 views

I am trying to make a music player with Bevy and Rust. I want to use global input to check if the play/pause button has been pressed even when the window is not in focus. I've tried using a number of ...
Mr. Sja's user avatar
  • 23
0 votes
0 answers
128 views

I am having an issue of where I am obtaining an error to do with the input shapes for the CNN model. The code for the model text_input = Input(shape = (max_len,), name = 'text_input') numerical_input =...
leakie's user avatar
  • 1
1 vote
1 answer
115 views

I have an application where, on a specific event, I want to open a edit control at a specific position x,y with a specific size width,height. In the opened window, I want the user to enter a string ...
RocketSearcher's user avatar
-4 votes
1 answer
63 views

I created a list of Animals. Then I ask the user, What are you? When he answers, I can't get the program to recognize it in the list. class Animal: def make_sound(self): pass # This is an ...
Marney Schulz's user avatar
3 votes
3 answers
170 views

When validating user input to check if the user has inputted correct values (i.e. letters for the strings, numbers for the integer), the below code can only detect when the strings have been ...
Ren's user avatar
  • 53
0 votes
1 answer
82 views

I'm creating a shell program with C and am working on getting user input after displaying the current working directory. I'm using read() and write() as I will need to use signals within my shell ...
Gyro's user avatar
  • 39
-1 votes
1 answer
151 views

I am currently writing a basic program with multiple menus. I have a function called menu1(), which is called in main and handles the first set of menu options. My issue I am having is being able to ...
Jack Ross's user avatar
2 votes
1 answer
121 views

For some context, my game runs in the terminal and is like a command line type game. At the moment to process commands is does a strcmp() for every single command which isn't really pretty nor ...
some guy who likes C's user avatar
1 vote
1 answer
574 views

I was following this tutorial (https://developer.android.com/codelabs/large-screens/advanced-stylus-support#4) which uses pointerInteropFilter to handle the MotionEvents directly and detect ...
Calvin Godfrey's user avatar
0 votes
1 answer
255 views

I have been using Blazor and I encountered an issue could not find any solution. I have been trying to add text into input fields but it's not updating. @page "/" <PageTitle>Form</...
Gweam's user avatar
  • 21
0 votes
0 answers
61 views

I am able to give a prompt to the user using powershell script but the issue is that the user is able to ignore it. What I mean is the user is able to open other programs and file even when the prompt ...
user26675830's user avatar

1
2 3 4 5
113