14,148 questions
0
votes
0
answers
30
views
How to Resolve Special Character Encoding Problems in R When Using Remote Desktop?
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 ...
1
vote
1
answer
45
views
Close Powershell Without Closing Exe
I'm on Windows 11. I need to run a program with Powershell. This program has its own UI. I want to be able to close the Powershell window without the program closing. But no matter what I do, as soon ...
0
votes
4
answers
77
views
Preserving tab Characters on input with Console.Readline
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 ...
0
votes
0
answers
26
views
Disable logs and warnings when launching VSCode from console
I am using Visual Studio Code (VS Code) on Windows, and when I run it from the command line Code.exe, many unnecessary messages and warnings appear in the console. For example:
PS C:\> Code.exe
[...
-2
votes
0
answers
34
views
Why can't I clear the console? [duplicate]
I've tried every way to clear the console in Python, but nothing seems to work.
I've tried:
os.system('cls')
os.system('clear')
os.system('cls' if os.name == 'nt' else 'clear')
subprocess.run('cls' if ...
0
votes
1
answer
57
views
Java:Is there a way to print in the same line that you press enter to do an input?
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 ...
0
votes
0
answers
42
views
ActiveITzone Active eCommerce CMS disables the browser console
I have installed and activated the ActiveITzone Active eCommerce CMS found here: https://codecanyon.net/item/active-ecommerce-cms/23471405?s_rank=26
Go to there website and try "Browse frontend&...
0
votes
0
answers
44
views
Output of two PowerShell 5.1 cmdlets gets corrupt (messed up) [duplicate]
(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 ...
0
votes
0
answers
34
views
How to check if class exists after page load?
I want to target sdf-carousel-item that has an ID of "first" and only when class of "active" is present. However this is a carousel - so when the first slide is showing, the class ...
0
votes
1
answer
15
views
Output-console window does not seem to work in intellij on my mac
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 ...
0
votes
2
answers
93
views
Struggling to use for loop to repeat a function 5 times
I am currently building a program that allows the user to play rock-paper-scissors against the computer through the console log. The goal is for the game to terminate after five rounds.
I was able to ...
1
vote
0
answers
20
views
.Net Console Application - Is it possible to set the Taskbar Icon or Overlay?
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 ...
1
vote
0
answers
78
views
Progress bars in c# console application overlapping
I'm trying to create a progress indicator in my C# console application that updates on the same line, but there is a bug that I haven't been able fix. When the view reaches the bottom and starts to ...
0
votes
0
answers
15
views
Disable console.log and all other console entries via Webpack?
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 ...
0
votes
1
answer
92
views
Where does Up Arrow work in Java Console?
I’m working on a program that uses java.io.Console.readLine to get input from the user, and to my surprise I noticed that on my Mac, it works to press Up Arrow to recall the previous command (like in ...