Questions tagged [console]

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

A terminal is an interactive text-mode or text-based user interface to a software application or operating system. It may be implemented as a character-mode application or embedded in a graphical user interface.

A terminal may be used as the main user interface or as a secondary interface for debugging and administrative tasks. The degree of interactivity varies widely between terminals.

A console is a particular type of terminal, usually a physical terminal or a terminal implemented directly by the kernel. The term "console" is often incorrectly used in place of "terminal".

14034 questions
5
votes
5 answers

Writing to the Eclipse console

My plugin has to write to the eclipse console - for testing purpose I simplified my code, so that I only have the following: public void start(BundleContext context) throws Exception { super.start(context); plugin = this; …
Kathi
5
votes
2 answers

NSCFData isResizable crash?

I am currently getting this crash log in the console: 2011-08-23 19:18:40.064 App[1697:707] -[__NSCFData _isResizable]: unrecognized selector sent to instance 0x11f1c0 2011-08-23 19:18:40.075 App[1697:707] *** Terminating app due to uncaught…
SimplyKiwi
  • 12,376
  • 22
  • 105
  • 191
5
votes
2 answers

Rails console and rake test:units

I was wondering whether I could run my tests under rails console rather than the command line. Actually the rationale for this is that rake test:units on the command line takes ages to load the rails environment. So I thought, why not start a…
Chris
  • 51
  • 2
5
votes
4 answers

console.log doesn't print the message to the firebug console?

I am facing this weird problem. The WebApp I'm debugging right now, is invoking the javascript console.log/console.log/error/debug/etc., the Firebug console however, doesn't print them at all. This application uses Dojo/Dijit toolkit. Not sure if…
Karthik
  • 1,006
  • 3
  • 10
  • 19
5
votes
2 answers

DevTools failed to load source map: Could not load content for GitHub. HTTP error: status code 404

I made an ecommerce webpage. The code seems fine; but when I deployed it in my localhost and in GitHub it shows this error: DevTools failed to load source map: Could not load content for…
Andrea Lopez Bravo
  • 155
  • 2
  • 2
  • 11
5
votes
1 answer

How to Get An IConfiguration For Dependency Injection In A Console App

I have some code from a Asp.Net Core 5 web app that I want to call from a console application. It's coming together but I have one issue that I have not yet found a solution to. Given the console main code: class Program { static void…
WillC
  • 1,761
  • 17
  • 37
5
votes
2 answers

why does a local PrintWriter interfere with another local PrintWriter?

In this program, the third string never gets printed. Why? (This Java program was run on Eclipse Indigo on Ubuntu 10.10.) import java.io.PrintWriter; public class Tester { static void nested() { PrintWriter object2 = new…
H2ONaCl
  • 10,644
  • 14
  • 70
  • 114
5
votes
2 answers

Specifying the font in an R console - multiplatform solutions?

This is fairly mundane as R questions go, but I would like to specify the font in my R console. It's easy enough to do in Windows - John Cook has an excellent little writeup on that. However, that is specific for the Windows R GUI. I'm not able to…
Iterator
  • 20,250
  • 12
  • 75
  • 111
5
votes
2 answers

Understanding querySelector & querySelectorAll's console output

Who/what decides how to write the contents of an object to the console? Sometimes you'll get a collapsable representation of the object literal while other times it simply prints the DOM structure. Given this HTML:
tksb
  • 420
  • 1
  • 4
  • 9
5
votes
3 answers

Is it possible to write console applications in scheme?

Does anyone know of any semi-portable way to write console applications (e.g. basic animation) in scheme? I heard of an ncurses wrapper but I couldn't find anything.
Lily Chung
  • 2,919
  • 1
  • 25
  • 42
5
votes
3 answers

Read input from console in OSX

I'm using scanf() to read user input on terminal in a console application. scanf waits until the user hits the return key to read. Is there a way to read the user input on each keystroke?
the Reverend
  • 12,305
  • 10
  • 66
  • 121
5
votes
6 answers

How to record keys pressed?

Essentially I want to record every key press (including keydown/keyup and mouse clicks) and when they occurred so that I can create a macro out of them. I found a ton of stuff about key presses and WinForms or WPF, but I don't really need a GUI, I…
mpen
  • 272,448
  • 266
  • 850
  • 1,236
5
votes
3 answers

ToastContentBuilder' does not contain a definition for 'Show'

I am newbie c# , my first try on Visual Studio Code is to show notification on windows 10 using ToastContentBuilder from Namespace Microsoft.Toolkit.Uwp.Notifications here is my code : using Microsoft.Toolkit.Uwp.Notifications; namespace cs { class…
5
votes
2 answers

Text/Cursor Positioning in Console

Any of you guys suggest how could i display the time just on top of the [x] Exit ? I'm currently using Console.Write() and ch.gotoxy() which sets my cursor into different places (btw, my cursor is 'Ö' beside 293)
Reinan Contawi
  • 225
  • 1
  • 6
  • 13
5
votes
0 answers

Specify one run/debug configuration for all scripts of a project in PyCharm

Is there a way to run all Python scripts within a project using one run/debug configuration in PyCharm? With this configuration, I would like to execute the Python script in the active window in the Python Console without having to select the whole…
Michael
  • 357
  • 1
  • 13
1 2 3
99
100