0
votes
1answer
22 views
How can a console application (e.g. Java) recognize the source of the ‘standard input’ stream?
If I run 'python' on the linux command line, and I don't provide any command line arguments, the program displays a welcome message and waits for user input. I would assume that un …
0
votes
1answer
21 views
Firebug console and css errors
I am getting the following error in Firebug (console -> show css errors)
Expected ',' or '{' but found '0.2'.
This is on a page with jCarousel.
Is there a way to get more info …
0
votes
2answers
38 views
Visual Studio Console Debug Window
I'm curious if anyone has figured out how to create their own Debug Output window in Visual Studio. For applications without a real console window (e.g. web apps), writing Debug or …
2
votes
4answers
58 views
Can STDOUT and STDERR use different colors under XTerm / Konsole?
Is it even achievable?
We need STDERR (ie. other streams then STDOUT) to have different colo(u)r. For example red.
We use bash, terminal should be Konsole (XTerm, gnome terminal …
2
votes
1answer
45 views
How to avoid console window with .pyw file containing os.system call
If save my code files as .pyw, no console window appears--which is what I want--but if the code includes a call to os.system, I still get a pesky console window. I assume it's caus …
0
votes
4answers
95 views
console app c++
hello all,
i'm new to console apps and would appreciate some pointers...
i have created a new console app and (not finished but it should be working), i selected win32 console ap …
0
votes
5answers
69 views
How to loop a Console App
Hi all
i just need to be able to loop a console app. what i mean by that is:
program start:
display text
get input
do calculation
display result
display text
get input.
REPEAT P …
0
votes
2answers
32 views
Auto initialize rails console
I'm always making the same steps when I do:
script/console
do you know some file to edit or something similiar to avoid doing always the same, like for example loading some part …
1
vote
4answers
74 views
Reading and writing to console in Java
What is the most efficient class to use to read from and write to console in Java?
0
votes
1answer
22 views
saving console messages to file in iphone
hi,
Is there any way to save all the console messages to a file in iphone ?
Thanks
0
votes
1answer
37 views
More lines in command window
Is there a possibility to get "more" lines into the command window (Console)?
When I debug my programs I output quite a bunch of lines to the window and the beginning of the ouput …
0
votes
1answer
49 views
How to interpret some of the Error messages from Xcode console?
Hi
As my programs involves more and more code Im starting to get a bit frustrated with the error messages that are thrown in the console:
2009-11-14 14:31:57.513 FC[915:5b27] …
0
votes
4answers
46 views
How to start the java console when launching an application from Eclipse?
When I start a java application, the Java Console is started. But when I start a java application from Eclipse, the Java Console does not start on its own. How can I make it start …
1
vote
3answers
99 views
Java prints output twice in a very specific circumstance
System.out.print("My string: ");
My string: BUILD SUCCESSFUL (total time: 1 second)
System.out.print("My string ");
My string BUILD SUCCESSFUL (total time: 1 second)
System …
0
votes
2answers
55 views
Is there any “remote console” for twisted server?
I am developing a twisted server. I need to control the memory usage. It is not a good idea to modify code, insert some memory logging command and restart the server. I think it is …
