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
6
votes
1 answer

writing data to console at the same time printinf information in java

I want to know how to control the console print format. My problem is that I have 2 threads, one of them constantly prints information to the console, and the other constantly asks the user to write information, but while writing if the other thread…
6
votes
1 answer

Uncaught TypeError: Cannot read property 'mouseIsDown' of undefined

I am getting an error in console when I try to reload the chart on click of a button. Cant figure out why. Uncaught TypeError: Cannot read property 'mouseIsDown' of undefined I have created a jsfiddle for the same. The first click will draw the…
Fakhruddin Ujjainwala
  • 2,493
  • 17
  • 26
6
votes
1 answer

ConEmu - Open Explorer with current directory

I use PowerShell with ConEmu. Is it possible to open the Windows Explorer from ConEmu with its current directory?
Dirk
  • 1,134
  • 2
  • 12
  • 21
6
votes
1 answer

How to set console font to Raster Font, programmatically?

How do I make sure that the command prompt's current font is the default Raster Font, at runtime? I'm using C++ with WinApi. For now I've used GetConsoleFontEx(); and SetConsoleFontEx();, but I haven't been able to find the right value for the…
user4780006
  • 107
  • 1
  • 4
6
votes
2 answers

JavaFX: Redirect console output to TextArea that is created in SceneBuilder

EDIT 4 I've created a simple example that should give you an idea about what's happening right now. What's happening right now is that whenever I click the button to print "HELLO WORLD" to the TextArea, the program will hang and use 100% of the CPU.…
Wake Cabbage
  • 100
  • 1
  • 1
  • 9
6
votes
2 answers

Silent WeasyPrint script run

WeasyPrint doesn't support some of the CSS3 features (yet, I hope), and running a Python script throws a long list of ignored entries (eg. box shadows, gradients), then a job summary. Is it possible to run WeasyPrint in silent mode, without any…
Chris
  • 63
  • 1
  • 6
6
votes
1 answer

Yii2 log console command output

I was wondering how can I save the output of an Yii2 console command to a file? Or how can I log the output so I can read it later, if the command runs as a cronjob for example? Thanks. SOLUTION As pointed out by Beowulfenator, I used Yii's Logger…
tehmaestro
  • 1,010
  • 2
  • 11
  • 21
6
votes
1 answer

In laravel 5, how to access to Command class methods from outside classes?

I'm developing a Illuminate\Console\Command. To be run via cli using php artisan. This Command class is using other classes. I appreciate the Command->info(), Command->error(), methods... How can I use them in dependencies? Until now I'm passing to…
koalaok
  • 5,075
  • 11
  • 47
  • 91
6
votes
1 answer

No Prompt in Firefox Browser Console?

I'm using Firefox for Ubuntu, version 39.0. I'm trying to debug an add-on and would like to run some JavaScript under chrome privileges. According to this page I should be able to do this in the Browser Console. If I click on Tools -> Web Developer…
sammy34
  • 5,312
  • 5
  • 29
  • 42
6
votes
2 answers

Output the console text of a Jenkins job that my Job is running

I tried looking here and here and here. I am using the dsl flow. And I would like to be able to see the console log printed out of the job i'm building within the job I'm running. I tried looking around for examples and I couldn't seem to find what…
BarretV
  • 1,197
  • 7
  • 17
6
votes
3 answers

Resize Event for Console

So I thought the window resize event would come through winproc, I might be mistaken, looking to get notified for a Console resize event. I want to maximize the console buffer on resize, and once it's finished essentially shrink it back down to the…
David Torrey
  • 1,335
  • 3
  • 20
  • 43
6
votes
2 answers

Find and manipulate a React.js component from the JavaScript console

When I work with JS I tend to whip out a console for the browser and manipulate values on the fly. I have a page where I use React to render some components and I had the idea that it would be great to be able to manipulate it's state from the…
vinczemarton
  • 7,756
  • 6
  • 54
  • 86
6
votes
1 answer

Tor console output issue: running tor --hash-password gives no result

I'm following the blog post here. I'm using a Windows machine, so I can't follow the exact steps. This is what I've done: Installed the Tor Browser for Windows Installed pytorctl pip install git+https://github.com/aaronsw/pytorctl Installed…
JPN
  • 632
  • 12
  • 24
6
votes
1 answer

What are these SDActivityAdvertiser processes in my Mac OSX system log

I checked my console app and found many of these entries in my log: 17:20:24.680 : SDActivityAdvertiser::continuity:didFailToStartAdvertisingOfType:withError: Activity (Der Vorgang konnte nicht abgeschlossen werden.…
anthnyprschka
  • 301
  • 3
  • 14
6
votes
1 answer

Node templating engine for colored output to console

How to render colored text to the console produced by a templating engine which supports looping and variable substitution. I've done some tests with swig, but it simply escapes the \u001b[32m stuff. Is there something in between sprintf and a real…
Laoujin
  • 9,962
  • 7
  • 42
  • 69