Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
65 views

after running Flask I saw this output on the console. How do I disable it and what is it? I have no idea how it appeared and I use it. Thx for any ideas * Serving Flask app 'app' * Debug mode: on ...
user27287283's user avatar
-2 votes
1 answer
141 views

I have C# app1 that starts the C# console app2 and reads the console standard output values of it. Normally I am reading the outputs with code below (app1) public void read_values_from_app2 { ...
Mdarende's user avatar
  • 801
1 vote
0 answers
16 views

I have a question about the order of output from a Powershell script. The order changes if I run the code from a script compared to just running it line for line in the console. I'd like to ...
Matthew McDonald's user avatar
-2 votes
1 answer
311 views

How to create file tree from list of (str, int)? I already tried to find ways to solve this problem, but I managed to find code for working with files, not a list of strings. Example of input: [ ('...
wowlikon's user avatar
0 votes
1 answer
199 views

This is what i have put in "executr windows batch command" - "dotnet restore "C:\Users\nraut.SIPL.jenkins\workspace\WebNetAgentSln\WCFServiceGX.sln" dotnet build "C:\...
user avatar
1 vote
1 answer
418 views

I have a procedure to capture a hidden Command Prompt window and display the output in a TMemo. This is the same/similar code that is posted all over the internet and Stack Overflow: var Form1: ...
Some1Else's user avatar
  • 849
2 votes
0 answers
223 views

My Jenkins job has around 25000 lines of console output If I open the job and choose the option as 'Show in Plain Text', complete output is displayed within seconds. But, if I choose the option ...
John's user avatar
  • 58
1 vote
2 answers
4k views

I have the Blazor component library, I need to debug it. The library can be used in Blazor WASM and Blazor Server-Side Apps. For debug purposes I do some console output: Console.WriteLine("Hello!&...
Eugeniy  Maksimov's user avatar
0 votes
1 answer
66 views

I have unwanted outputs in the console from zarr.open() method. It does not have 'verbose-like' parameter. How can I get rid of those input console ? I'm currently trying to open .ims files (Imaris ...
Willy Lutz's user avatar
0 votes
0 answers
277 views

When accessing remote datasets with xarray.open_dataset, warnings or errors sometimes show up in my console. Capturing messages written to sys.stderr or sys.stdout is certainly possible (or one can ...
FlorianK's user avatar
1 vote
1 answer
188 views

Recently, I found out about the spvoice interface. Therefore, I wanted to make a small program that makes Powershell say something I type into it. So, I made this: $Voice = New-Object -ComObject Sapi....
PlatoHero's user avatar
1 vote
1 answer
787 views

I am attempting to redirect a process running a command prompt to output to a WPF textbox. I found some very helpful code in a previous question here that got me most of the way. The redirect works, ...
arrowSpace's user avatar
1 vote
0 answers
42 views

Alright, so I'm pulling my hair out over this one. I have a VBScript that calls other VBScripts, and I need it to output the errors to text files, since the scripts should be running non-interactively....
Benjamin Krausse DB's user avatar
1 vote
2 answers
2k views

I have this working on Visual Studio 2019 using code pages: #include <windows.h> #include <iostream> int main() { UINT oldcp = GetConsoleOutputCP(); SetConsoleOutputCP(932); ...
Topological Sort's user avatar
0 votes
2 answers
195 views

I need to make a block of text that looks like this: 1 1 4 1 2 3 1 3 2 1 4 1 I have currently got this code: for (int x = 1; x <= 4; x++) { for (int y = 4; y >= 1; y--) { System.out.println(&...
GuandaoPrime's user avatar
0 votes
1 answer
165 views

When I invoke powershell with the -c command line parameter and a write-output "foo bar" command, the words are printed on separate lines: PS> powershell -c 'write-output "foo bar&...
René Nyffenegger's user avatar
0 votes
2 answers
1k views

Is there any way I can mirror the console output to localhost in java and maybe even add some nice CSS to it. It would be cool if the console could also be reached by other devices in the same network....
CreativeDifference's user avatar
1 vote
0 answers
98 views

I have around 650 tests that runs in Jenkins everyday for regression. The tests are running fine but when the tests are done running Jenkins is taking too long(more than 2 hours for 50 tests) to print ...
Sammy's user avatar
  • 21
1 vote
0 answers
399 views

How to see to console output in live on jenkins with pytest? Important note: I need also to see the colors with AnsiColor and I see them with this command: pytest [path_to_test] --capture tee-sys But ...
Nick's user avatar
  • 45
-1 votes
1 answer
664 views

I'm writing a shell script, and I need to check for some dependencies being installed before executing anything. I found I can use which <package> to see if it is installed or not. The problem ...
Pablo Acereda's user avatar
1 vote
1 answer
282 views

I'm having this strange issue where my code does exactly what I want it to when I run it through my debugger, but it doesn't work when I run it normally. What's stranger is that I am not getting a ...
amy's user avatar
  • 51
-1 votes
2 answers
2k views

I have implemented my own Logging class for my applications I write in C++. I implemented the Logging class using this way (https://stackoverflow.com/a/54062826/12873837) of coloring the text. It does ...
Can's user avatar
  • 158
-1 votes
1 answer
2k views

the following scenario is given: Welcome screen appears. If user has read the welcome text he has 2 choices: a) pressing ENTER to continue an getting the next text b) pressing the E-Key in oder to ...
Dr.Sun's user avatar
  • 19
1 vote
0 answers
792 views

I'm trying to find specific errors from Jenkins console output and print them by echo statement. For example, I made a missing in my closing statement " } "As shown in my pipeline script, ...
james's user avatar
  • 19
0 votes
1 answer
239 views

I'm calling imagemagik's convert program from within ruby to convert image types. I'm redirecting both stdout and stderr to /dev/null but I'm still getting console text. It only occurs when converting ...
Nowhere Fast's user avatar
1 vote
1 answer
720 views

I want to be able to save GridSearchCV output to file while running. GridSearchCV(XGBClassifier(), tuned_parameters, cv=cv, n_jobs=-1, verbose=10) This is an example for an output: Fitting 1 ...
nogmos's user avatar
  • 909
0 votes
0 answers
66 views

if a method is called but the method calls System.out.print(); and prints on the console, is there any way to disable printing on console for that specific method calls and enable again
Akshar Patel's user avatar
0 votes
0 answers
197 views

I develop a small java app, I've exported as a .jar as java -jar my.jar I developed the app in eclipse and the Eclipse output console renders correctly using Windows PowerShell as well but if I use ...
James May's user avatar
-2 votes
1 answer
90 views

Screenshot of code and output Code num = int(input("Enter the number of rows:")) for i in range(0,num): for j in range(0,num-i-1): print(end="") for j in range(0,i+1): ...
md Tanvir's user avatar
0 votes
1 answer
361 views

I'm new to C++, so sorry if this is obvious. How can I get a character from a number? I have the following code: for (int i = 0; i < 500; i++) { cout << i; } It's supposed to get the ...
Spej's user avatar
  • 31
4 votes
1 answer
2k views

subprocess.run with stdout=DEVNULL and stderr=STDOUT does not suppress all output from the subinacl.exe utility. >>> # Do not suppress: OK >>> subprocess.run('subinacl.exe /service "...
R01k's user avatar
  • 795
0 votes
0 answers
137 views

I want the program to wipe out the previous console output. For example i have a data entry program that when the program repeats, the whole output that were inputted must be wiped away in the console ...
Static_void's user avatar
1 vote
0 answers
209 views

I'm writing a program (a C# winforms application) to print the console output of a process to a Textbox as follows. private void button21_Click(object sender, EventArgs e) { Process p = ...
Buddhika Bandara's user avatar
9 votes
2 answers
2k views

Using Python's print() (or to the best of my knowledge, any other console output generating) function in loop structures and running the code via reticulate in R, the output is only printed after the ...
fdetsch's user avatar
  • 5,328
1 vote
1 answer
1k views

I tried to redirect the entire console output of a specific part of my python code to a textfile following the advice of this post. According to that post, it should work with contextlib....
Andreas L.'s user avatar
  • 4,761
0 votes
3 answers
2k views

I'm trying to send the output of my program to a text file called results.txt . Here's my attempt public void writeFile(){ try{ PrintStream r = new PrintStream(new File("...
Sister Coder's user avatar
0 votes
2 answers
2k views

I am quite new to bash (barely any experience at all) and I need some help with a bash script. I am using docker-compose to create multiple containers - for this example let's say 2 containers. The ...
andrei1986's user avatar
1 vote
2 answers
127 views

I try to implement this : https://www.testautomationguru.com/jmeter-how-to-create-a-data-keyword-driven-framework-for-performance-testing/ I have a .csv file with the test case name in the first ...
Royce's user avatar
  • 1,605
2 votes
1 answer
670 views

I am using a loop to delete characters from a string using printf(\b) 1 by 1 and sleep 0.1 seconds in between. But when I run the code it happens simultaneously. I literally tried typing each printf ...
Mustafa Çığ Gökpınar's user avatar
-2 votes
1 answer
85 views

When running program I have no output to my console window, Tried selecting different console windows, closing and reopening the window, closing other open code package Codecademy; public class ...
Indexedx's user avatar
1 vote
2 answers
2k views

I am outputting a lot of information to the console that is gathered across multiple nested calls. I would like to be able to print the information on the screen in a readable manner but the I can't ...
jadeblack12's user avatar
2 votes
2 answers
455 views

I just upgraded PowerShell from v3.0 to v5.1 and noticed that Select-Object and Format-Table's console outputs behave very differently. If a property's value is too long, all later properties are ...
Reed Hanger's user avatar
0 votes
1 answer
1k views

I want to export all my VirtualBox VMs for backup purpose using an automated script. The following command should do the export in my PS script: cmd.exe -c "vboxmanage export Antergos -o D:\Temp\...
Lion's user avatar
  • 18.1k
0 votes
1 answer
799 views

My program is written in Python 2.7 and I want to do a dynamic update. The output is in table-view and has hundreds of characters. A really good answer I found here, however, more than 100 characters ...
Bar's user avatar
  • 41
8 votes
1 answer
2k views

I'm writing a GUI for a third-party console application and I want it to capture the output of a console window and add it to a text box in the GUI. Problem is, when I try to redirect the output ...
biixie's user avatar
  • 83
0 votes
1 answer
801 views

I have written some code primarily to be used with the console, but was asked to create a simple GUI for it for ease of use. In it, I am setting up the main frame with widgets, and using the widget ...
kalle's user avatar
  • 433
1 vote
0 answers
226 views

Today I have started using LogBack in combination with SLF4J for my project. I have been trying to redirect all console output (From my own project and others) to a custom appender. The final goal is ...
Jordie's user avatar
  • 133
1 vote
0 answers
4k views

I wrote a pipeline script and in console output i need createhosts log output also instead of showing build number. Script: pipeline { agent none stages { stage('create hosts') { ...
srinivas's user avatar
1 vote
0 answers
51 views

Code output should be: 515 30 However, when I add variables a, b, c my output is 51530. I've added a + b just to test it, and the output was 515. I just can't figure out how to return the c so that ...
Hannah's user avatar
  • 5
3 votes
3 answers
4k views

I'm running some queries, that print runtime stats from their execution. It's done through print('message') used within the sql script. I would want to see these messages while calling the ...
Slawomir Szor's user avatar