Tagged Questions

a mechanism for interacting with a computer operating system or software by typing commands to perform specific tasks

learn more… | top users | synonyms

120
votes
7answers
79k views

How to print debug messages in the Google Chrome Javascript Console

Does anyone know how to print debug messages in the Google Chrome Javascript Console? Please note that the Javascript Console is not the same as the Javascript Debugger, they have different syntaxes ...
81
votes
16answers
29k views

Is there a better Windows “Terminal” application?

I loath working on the command line in Windows, primarily because the terminal application is wretched to use compared to terminal applications on linux and OS X. Major complaints No standard ...
80
votes
6answers
27k views

How do I call controller/view methods from the console in Rails?

When I load script/console, some times I want play with the output of a controller or a view helper method. Are there ways to: simulate a request? call methods from a controller instance on said ...
75
votes
10answers
37k views

Calling Bash Commands From Ruby

How do I call console/bash commands from inside of a Ruby Program? Also, how do I get output from these commands back into my program?
67
votes
16answers
28k views

What's a good alternative Windows console?

UPDATE (solution) Months later someone turned me on to an awesome solution to this. If you install Git for Windows, it comes with this console app called Git Bash that does exactly what I descibed. I ...
55
votes
9answers
28k views

What happened to console.log in IE8?

According to this post it was in the beta, but it's not in the release?
54
votes
8answers
48k views

How can I get the application's path in .NET in a console app?

I have a console app, and I would like to find the application's path. In winforms I can use Application.StartupPath to find the current path, but this doesn't seem to be available in a console app?
41
votes
5answers
13k views

Where is the console API for WebKit/Safari?

WebKit/Safari supports the console object, which is similar to what Firebug does. But what exactly is supported? There is a console documentation for Firebug, but where can I find the console ...
35
votes
8answers
12k views

How can I update the current line in a C# Windows Console App?

When building a Windows Console App in C#, is it possible to write to the console without having to extend a current line or go to a new line? For example, if I want to show a percentage representing ...
33
votes
2answers
9k views

JUnit test for System.out.println()

I need to write JUnit tests for an old application that's poorly designed and is writing a lot of error messages to standard output. When the getResponse(String request) method behaves correctly it ...
33
votes
4answers
69k views

How to run a .sh-script in an Unix console/Mac terminal?

I know it, forgets it and relearn it again. Time to write it down.
32
votes
6answers
10k views

Colorize logs in eclipse console

Is there a way to colorize parts of logs in the eclipse console. I know I could send to error and standard streams and color them differently but I'm more looking someting in the lines of ANSI escape ...
30
votes
3answers
6k views

Why doesn't System.out.println work? (in Android)

I want to print something in console so I can debug it. But for some reason, nothing prints in my Android application. How do I debug then? public class HelloWebview extends Activity { WebView ...
29
votes
2answers
11k views

How do I trap ctrl-c in a C# console app

I would like to be able to trap ctrl-c in a C# console application so that I can carry out some cleanups before exiting. What is the best way of doing this?
26
votes
16answers
9k views

How to add a Timeout to Console.ReadLine()?

I have a console app in which I want to give the user x seconds to respond to the prompt. If no input is made after a certain period of time, program logic should continue. We assume a timeout means ...
24
votes
13answers
21k views

How to clear python interpreter console?

Like most Python developers, I typically keep a console window open with the Python interpreter running to test commands, dir() stuff, help() stuff, etc. Like any console, after a while the visible ...
23
votes
4answers
548 views

How can I redirect JNI console output to Eclipse Console view, when Eclipse plugin uses JNI?

I have an Eclipse plugin (A) which has a dependency on another plugin (B). Plugin B is simply a wrapper around a jar, which contains a native dll, and performs jni functionality. Given this setup, I ...
22
votes
7answers
9k views

How to get console window width in python

Is there a way in python to programmatically determine the width of the console? I mean the number of characters that fits in one line without wrapping, not the pixel width of the window. Edit ...
21
votes
5answers
7k views

Difference between console.log and sys.puts in node.js?

In node.js you can use console.log or sys.puts to print out to the screen. What is the preferred method and what is the difference between these?
21
votes
4answers
15k views

Redirect console output to textbox in separate program C#

I'm developing an Windows Forms application that requires me to call a separate program to perform a task. The program is a console application and I need to redirect standard output from the console ...
20
votes
1answer
449 views

Is it possible to intercept Console output?

I call a method, say, FizzBuzz(), over which I have no control. This method outputs a bunch of stuff to the Console using Console.WriteLine. Is it possible for me to intercept the output being ...
20
votes
7answers
23k views

How to keep the console window open in visual c++?

I'm starting out in visual c++ and I'd like to know how to keep the console window. For instance this would be a typical hello world application: int _tmain(int argc, _TCHAR* argv[]) { cout ...
20
votes
15answers
23k views

How to make Visual Studio Pause after executing a console app in debug mode?

I have a collection of boost unit tests I want to run as a console application. When I'm working on the project and I run the tests I would like to be able to debug the tests and I would like to have ...
19
votes
2answers
3k views

Show/Hide the console window of a C# console application

I googled around for information on how to hide one’s own console window. Amazingly, the only solutions I could find were hacky solutions that involved FindWindow() to find the console window by its ...
18
votes
2answers
603 views

fopen for everything - is this possible?

I used to programing windows, but I want to try my hand on making a cross-platform application. And I have some questions, if you don't mind: Question 1 Is there some way to open UNICODE\ASCII file ...
18
votes
5answers
12k views

Capture console exit C#

I have a console application that contains quite a lot of threads. There are threads that monitor certain conditions and terminate the program if they are true. This termination can happen at any ...
18
votes
18answers
15k views

Alternate fonts for console windows?

I like to find some new/interesting fixed width fonts for console. We all know Lucida/Courier, what else? Update So, the winner is Consolas (which indeed is built in in new Windows 7) Jeff had ...
18
votes
4answers
9k views

Interactive console using Pydev in Eclipse?

I'm debugging my Python code in Eclipse using the Pydev plugin. I'm able to open a Pydev console and it gives me two options: "Console for currently active editor" and "Python console". However none ...
18
votes
15answers
9k views

How can I start an interactive console for Perl?

How can I start an interactive console for Perl, similar to the irb command for Ruby or python for Python?
18
votes
7answers
4k views

C# Console?

Does anyone know if there is a c# Console app, similar to the Python or Ruby console? I know the whole "Compiled versus Interpreted" difference, but with C#'s reflection power I think it could be ...
17
votes
3answers
1k views

Is Chrome's JavaScript console lazy about evaluating arrays?

I'll start with the code: var s = ["hi"]; console.log(s); s[0] = "bye"; console.log(s); Simple, right? In response to this, Firebug says: ["hi"] ["bye"] Wonderful, but Chrome's JavaScript ...
17
votes
5answers
11k views

Capturing console output from a .NET application (C#)

How do I invoke a console application from my .NET application and capture all the output generated in the console? (Remember, I don't want to save the information first in a file and then relist as ...
16
votes
4answers
630 views

Why does my console application have command history?

I have written a console application, which is essentially a Console.ReadLine()-Loop. When the application is waiting for input, pressing the up arrow key iterates through all previous lines of input. ...
16
votes
4answers
981 views

Program both as Console and GUI

Is it possible to (and if so, how do I) make a single program work both as a console application and a GUI version using Delphi 2007? What I am after is that if the program is run with the ...
16
votes
8answers
8k views

C#: Printing all properties of an object

Is there a method built in to .NET that can write all the properties and such of an object to the console? Could make one using reflection of course, but I'm curious to if this already exists... ...
15
votes
6answers
18k views

Open a new tab in gnome-terminal using command line

gnome-terminal --tab at the terminal, I expect it to open a new tab in the same terminal window. But it opens a new window instead. I found out that its intention is to open a new tab in a new ...
15
votes
1answer
1k views

How do I detect whether sys.stdout is attached to terminal or not?

Is there a way to detect whether sys.stdout is attached to a console terminal or not? For example, I want to be able to detect if foo.py is run via: $ python foo.py # user types this on console OR ...
15
votes
8answers
3k views

Is there any Python-like interactive console for Java?

I spent a lot of time programming in Java recently, and one thing I miss from scripting languages was the ability to test them in a console. To quickly test a java program, I have to edit a file, ...
15
votes
9answers
11k views

UrlEncode through a console application?

normally I would just use: HttpContext.Current.Server.UrlEncode("url"); But since this is a console application, HttpContext.Current is always going to be null. Is there another method that does ...
14
votes
2answers
2k views

is node.js' console.log asynchronous?

Are console.log/debug/warn/error in node.js asynchrounous? I mean will javascript code execution halt till the stuff is printed on screen or will it print at a later stage? Also, I am interested in ...
14
votes
8answers
3k views

Text Progress Bar in the Console

Is there a good way to do the following? I wrote a simple console app to upload and download files from an FTP server using the ftplib. Each time some data chunks are downloaded, I want to update a ...
14
votes
15answers
20k views

How to stop C++ console application from exiting immediately?

Lately, I've been trying to learn C++ from this website. Unfortunately whenever I try to run one of the code samples, I see that program open for about a half second and then immediately close. Is ...
14
votes
6answers
5k views

Visual Studio Console App - Prevent window from closing

This is a probably an embarasing question as no doubt the answer is blindingly obvious. I've used Visual Studio for years, but this is the first time I've done any 'Console Application' development. ...
14
votes
7answers
6k views

Mirroring console output to a file

In a C# console application, is there a smart way to have console output mirrored to a text file? Currently I am just passing the same string to both Console.WriteLine and ...
13
votes
5answers
2k views

Rails 3 OSX - Speed up Console Loading Time

I am wondering if there is any relatively easy way to speed up my console load time, which is starting to approach 30 seconds. I have a lot of subclasses whose methods don't seem to be affected by ...
13
votes
8answers
913 views

What is the console.log used for in jQuery?

What is the use of console.log in jQuery? Can any one explain with example?
13
votes
4answers
336 views

Would dropping X altogether hurt?

I live in the linux terminal all the time under my slackware GNU/linux system (an EeePC). By default, GNU Emacs won't start if It can't find several Xorg libraries. Assuming I will never use X ...
13
votes
4answers
6k views

Having the output of a Console App in Visual Studio instead of the Console

When doing "Console" apps in Java with Eclipse, I see the output being put in a text box on the IDE itself, instead of having a Console popping up like in Visual Studio. This comes in handy, as even ...
13
votes
5answers
7k views

Correct way to implement C# console application?

What is the correct way to implement and architect a command line tool as a C# console application? Concerns to address include proper parsing of command line variables, and the proper way to output ...
13
votes
5answers
1k views

Why 3 threads for a basic single threaded c# console app?

I created a console app in c# with a single console.readline statement. Running this app within visual studio and stepping into the debugger shows 7 thread in the thread window (6 worker threads, one ...

1 2 3 4 5 45