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

I'm trying to get a hardware id with a .net console app (target framewotk is net8.0-windows10.0.17763.0). The code is rather trivial, just var token = Windows.System.Profile.HardwareIdentification....
Volker's user avatar
  • 1,849
0 votes
0 answers
18 views

I am having issues with fetch() statements in my service worker in a progressive web app installed on my Android phone (with Chrome). Ordinarily this would be easy to debug by sending messages to ...
Colin R. Turner's user avatar
0 votes
1 answer
94 views

I am programming a console based speed reader. I have an automatic mode, where the console prints all the words — one at a time — and shows each word for a period of time set by the user. While ...
Rudolf Snail's user avatar
-3 votes
1 answer
130 views

I want to loop and ask user if he wants to continue. If no answer for a while, loop anyway. while (true) { Console.WriteLine("\nDo you want to continue? (Type 'no' or 'exit' to break, or wait ...
Doof Warrior's user avatar
3 votes
2 answers
195 views

I have a script which I have created couple of months ago with an older version of Intellij + Python plugin. I had to migrate to new windows and also new IntelliJ Currently I am using : IntelliJ IDEA ...
fascynacja's user avatar
  • 3,186
0 votes
1 answer
112 views

I am trying in my linux (Xubuntu) console to make the git commit message in my chain of commands a variable so I can more easily execute my chain of commands. Instead of this where I habe to edit ...
Julian's user avatar
  • 108
3 votes
1 answer
183 views

I've written this small program in C, which intends to read stdin line-by-line and finally echo each line back to stdout. It is designed to stop reading input when either EOF is detected or a blank ...
user avatar
1 vote
1 answer
95 views

I'm trying to run my Tomcat application, but I don't see the 'Server' tab in IntelliJ IDEA. In normal run mode, only "Tomcat Catalina Log" and "Tomcat Localhost Log" are visible, ...
Kostya_Demens's user avatar
1 vote
1 answer
108 views

i'm trying to program a simple shell in C as a windows console program. I don't want the user to allow entering a command string which has more than 255 characters, therefore i'm using _getch() to ...
Sonny86's user avatar
  • 21
1 vote
1 answer
58 views

In writing a C# console app's log output, I am sometimes overwriting the previous line for aesthetic purposes. I'm currently doing this by using the command: Console.SetCursorPosition(0, Console....
Dion's user avatar
  • 31
1 vote
2 answers
97 views

I have a ps1 script which runs some set of apps. All are run with the commands like: $this.apps.Add($(Start-Process "$($global:openTrackDir)\opentrack.exe" ` -WorkingDirectory "$($...
rainbow's user avatar
  • 1,313
2 votes
1 answer
244 views

I'm running a simple C program in CLion on Windows: #include <stdio.h> int main() { char c; scanf("%c", &c); printf("%c", c); return 0; } When I input a ...
Ting Lei's user avatar
1 vote
1 answer
99 views

The console doesn't display the non-English text input into it correctly, when it's later outputting them. However the text displays correctly when the user inputs them. Some of the non-English ...
Rudolf Snail's user avatar
0 votes
0 answers
73 views

I need help on how to solve a problem encoding special characters in R. I am working on a data warehouse project stored in slq server. The data is in French and when I do my calculations, I encounter ...
Diakaria KORERA's user avatar
0 votes
4 answers
91 views

I encoutnert a strange issue wie the methode Console.Readline() when i paste one of these Lines into the vs studio editor it translates the spaces in between the entrys with \t Tab Characters what is ...
FlorianD's user avatar
  • 113
0 votes
1 answer
69 views

In Java I want to print after press enter to do an input but in the same line, e.g: 'Username: // User input // Other print'. Doesn't matter if I need to print in the loop or in the find method, if ...
Bujakiewicz Franco's user avatar
0 votes
0 answers
69 views

(TL;DR: I placed my questions below, at the bottom of my text) A. I list optical drives this way: PS C:\> Get-CimInstance Win32_LogicalDisk -Filter 'DriveType = 5' DeviceID DriveType ProviderName ...
saulius2's user avatar
  • 271
0 votes
1 answer
66 views

First I have only really been using intellij a few weeks mostly on my desktop mac. I have intellij on two macs. On the desktop the sample program hello world prints “Hello World” in the output ...
Bill Sundstrom's user avatar
1 vote
0 answers
29 views

We have a number of automations at work built as console applications. For some reason it only recently came up that our admins would appreciate it if the status of a given automation was visible from ...
user29965157's user avatar
0 votes
0 answers
39 views

Is it possible to prevent console.log and the like from being used at runtime by patching them using Webpack? I know this could be done at runtime, and some obfuscators also seem to manage to do it ...
Slbox's user avatar
  • 13.4k
0 votes
0 answers
80 views

I am attaching client script to Nestuite iframe suitelet to hide div element. Here's the strange part: 1.If I inspect the element in the browser's developer tools and then execute document....
Maira S's user avatar
  • 121
0 votes
1 answer
90 views

How can I configure Turbo Console Log to automatically wrap logged messages with JSON.stringify(), such as to achieve the following output format? Default Output (Example): console.log("messages:&...
Imad's user avatar
  • 20
-2 votes
1 answer
93 views

I've been trying to run a batch file (run.bat for a minecraft server) via Java console. while i did manage to figure out a way to run the batch script on java, it seems that i cannot send commands ...
DNL PLAYZ's user avatar
0 votes
0 answers
28 views

I am using Visual Studio Community 2022. My program compiles and runs just fine except that stdout seems to not be directed to the console. What would be the best way to change that? Keep in mind that ...
Manatee Pink's user avatar
3 votes
2 answers
240 views

I’ve developed a console game using C, and one of the main features is that it runs in the ConHost console because it gives me much more control over the console's appearance (fonts, colors, window ...
BlackRyu's user avatar

1
2 3 4 5
283