active questions tagged console - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T07:59:21Zhttp://stackoverflow.com/feeds/tag/consolehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1941553/how-can-one-have-a-dedicated-console-window-per-appdomain-in-a-console-net-appli1How can one have a dedicated console window per AppDomain in a console .NET application?mark2009-12-21T17:44:39Z2009-12-21T18:11:03Z
<p>Dear ladies and sirs.</p>
<p>My console .NET application has several app domains. My wish is simple - console window per app domain.</p>
<p><strong>Motivation:</strong></p>
<p>The application is actually an MbUnit test assembly and the various app domains are the server hosts all packed in one process, though in different app domains to decrease execution time. Each server outputs to console, so when the console is shared with MbUnit test assembly one gets a salad. I wish to grant dedicated console window for each server app domain.</p>
<p>We use log4net for logging, so we can log to files and view files later, but at this stage it is much more convenient to log to console.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/341467/how-do-i-handle-endprocess-events-in-a-vista-console-app0How do I handle EndProcess events in a Vista Console app?mculley2008-12-04T17:37:29Z2009-12-21T18:00:02Z
<p>I have a console application. In XP, I can use SetConsoleCtrlHandler() to register a callback that receives CTRL_LOGOFF_EVENT, CTRL_C_EVENT and a few others. It works great. When the callback is called I can cleanup before I return from the call. Problem is, SetConsoleCtrlHanlder() is not supported in Vista. Now what?</p>
http://stackoverflow.com/questions/1535105/code-blocks-8-02-console-program-not-outputting-cout-statements-with-sdl0code blocks 8.02 console program not outputting cout statements with SDLTheFuzz2009-10-08T01:17:18Z2009-12-21T08:00:03Z
<p>im currently using the SDL-devel-1.2.13-mingw32 library in code blocks 8.02. with the mingw 5.1.6 installed separately on C:\ this program compiles and runs with no errors but i can't see the last system("pause"); on the screen. When i press any key, it of course skips over the system("pause"); then code blocks tells me that it successful ran. It also doesn'w show the cout << " SDL \n"; WTF?</p>
<pre><code>#include <iostream>
#include <SDL.h>
using namespace std;
int main(int argc, char *argv[])
{
cout << " SDL \n";
cout << endl;
if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) == -1) {
cerr << "Failed to initialize SDL: " << SDL_GetError() << endl;
exit(1);
}
atexit(SDL_Quit);
system("pause");`
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1937163/drawing-in-a-win32-console-on-c2Drawing in a Win32 Console on C++ ? LolJohny2009-12-20T21:41:18Z2009-12-20T22:11:19Z
<p><strong>What is the best way to draw things in the Console Window on the Win 32 platform using C++?</strong></p>
<p><em>I know that you can draw simple art using symbols but is there a way of doing something more complex like circles or even bitmaps?</em></p>
http://stackoverflow.com/questions/1925414/catching-stack-trace-in-free-pascal0Catching stack-trace in Free PascalKornel Kisielewicz2009-12-17T23:51:53Z2009-12-20T08:19:42Z
<p>I have a console application written in Free Pascal, that like most larger applications sometimes crashes. As this application is live, I usually ask people to write me down the stack-trace on crash -- I distribute it with both debug and lineinfo. However, the application uses FPC video.pas output, and sometimes the text output stacktrace is not visible. </p>
<p>Is there a way to intercept the text that is written on unhandled exceptions WITH the stack trace, so I can write it to file? I can't just pipe standard error to a file, because FPC video somehow doesn't work with that, and also I'd like people just running the executable not a batch or shell file.</p>
<p>As an example, I'd like to catch this to a file or other output source:</p>
<pre><code>ERangeError : Range check error∙
$0048C0EA TCELLS__GETCELL, line 104 of dfmap.pas
$004AD133 TDOOMGENERATOR__GENERATECITYDUNGEON, line 397 of dfdungen.pas
$004AF87D TDOOMGENERATOR__GENERATE, line 760 of dfdungen.pas
$0041293B TDOOM__RUN, line 354 of doombase.pas
$00401CD6 main, line 51 of doomrl.pas
</code></pre>
<p>Any possibility to do that cleanly?</p>
http://stackoverflow.com/questions/1932721/undefined-local-variable-or-method-within-for-userclass0undefined local variable or method 'within' for User:classsoenke2009-12-19T11:53:31Z2009-12-19T21:09:06Z
<p>Hi there!</p>
<p>I am working with a book to teach myself Ruby-on-Rails. Ruby version is 1.2.3 and rubygems V 1.3.5.</p>
<p>I start the console by ruby script/console and enter:</p>
<pre><code>user = User.new(:screen_name => "example",
?> :email => "exampleATexample.com",
?> :password => "example")
</code></pre>
<p>but instead of adding the data to the DB, I get the following:</p>
<pre><code>NameError: undefined local variable or method 'within' for User:Class from D:/ruby/lib/gems/1.8/gems/activerecord-1.15.3/lib/active_record/base.rb:1235:in 'method_missing' from ./script/../config/../config/../app/modules/user.rb:13
</code></pre>
<p>I don't really understand what's going on. Any kind of help is much appreciated, thank you!</p>
http://stackoverflow.com/questions/1929415/where-do-you-put-input-file-in-eclipsejava-in-order-to-read-it-from-console-com1Where do you put input file in eclipse(java) in order to read it from console command?Todd2009-12-18T16:47:30Z2009-12-18T17:17:22Z
<p>Hi,</p>
<p>I am writing a java program in eclipse(galileo version). The program reads simple user data from input file specified at console command and process it.</p>
<p>But I am not sure where I should place this input file inside eclipse workspace, so that when I run program in eclipse and type in input file name, it can be found and program can process it.</p>
<p>and is there way to set file path so that I can just place input file anywhere and specified the file path at runtime?</p>
<p>thanks!</p>
http://stackoverflow.com/questions/1919360/c-console-case-statment-help0C# Console case statment helpTony2009-12-17T03:57:43Z2009-12-18T06:10:56Z
<pre><code>using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace LittleQuizworld_3
{
class Program
{
public string QuestionText; //Actual question text.
public string[] Choices; //Array of answer from which user can choose.
public int Answer; //Index of correct answer with Choices.
static void Main(string[] args)
{
int correct = 0;
int iChoice =0;
Console.WriteLine("Hello Welcome to Litte Quiz World, We hope you will have fun here");
Console.WriteLine("Please press enter to continues :) ");
Console.ReadLine();
while (iChoice != 4)
{
Console.WriteLine("Please select the following");
Console.WriteLine("1.Play Game");
Console.WriteLine("2.Future game");
Console.WriteLine("3.Credits");
Console.WriteLine("4.Exit");
Console.ReadLine();
iChoice = Convert.ToInt32(Console.ReadLine());
using (StreamReader sr = new StreamReader("./quiz.txt"))
{
switch (iChoice)
{
case 1:
while (!sr.EndOfStream)
{
Console.Clear();
for (int i = 0; i < 5; i++)
{
String line = sr.ReadLine();
if (i > 0)
{
if (line.Substring(0, 1) == "#") correct = i;
Console.WriteLine("{0}: {1}", i, line);
}
else
{
Console.WriteLine(line);
}
}
for (;;){
{
Console.Write("Select Answer: ");
ConsoleKeyInfo cki = Console.ReadKey();
if (cki.KeyChar.ToString() == correct.ToString())
{
Console.WriteLine(" - Correct!");
Console.WriteLine("Press any key for next question...");
Console.ReadKey();
}
else
{
Console.WriteLine(" - Try again!");
Console.Clear();
}
case 2:
if (iChoice == 2)
{
Console.WriteLine("Future game of Little Quiz World");
Console.WriteLine("Little Quiz Would will continues working on the patch for this game");
Console.WriteLine("Also the new game which is planned will be call BattleShip World beta testing will be very soon ");
Console.WriteLine("Please stick close to us ");
Console.ReadLine();
}
break;
case 3:
if (iChoice == 3)
{
Console.WriteLine("Credit");
Console.WriteLine("We hope you enjoy the game and please feel free to give us feeback at email : tonycheung2006@hotmail.co.uk");
Console.ReadLine();
}
break;
}
}
}
}
}
}
}
}
</code></pre>
<p>}
I create a little quiz game and a little menu system but my case statment not seem to work , can anyone give me a hand here?</p>
http://stackoverflow.com/questions/1926021/write-to-console-and-visual-studios-output1Write to console and visual studios output?acidzombie242009-12-18T03:02:20Z2009-12-18T03:37:32Z
<p>In Winform Apps Console.WriteLine() writes to the IDE output tab. In a console app it writes to the console and not to the IDE output tab. For debugging reasons i find it easier if i can have i have a copy of the Console output (ATM i only use stdout) in my IDE. Is there an option to have Console.WriteLine() appear in both?</p>
<p>I use visual studios 2008 & 2010</p>
http://stackoverflow.com/questions/1925169/c-game-loop-help0C# Game loop helpTony2009-12-17T22:56:11Z2009-12-18T01:08:03Z
<pre><code> Thanks alot for the help
</code></pre>
http://stackoverflow.com/questions/1923539/show-activerecord-objects-like-table-in-script-console2Show ActiveRecord objects like table in ./script/consoleVlad2009-12-17T18:03:12Z2009-12-17T18:09:40Z
<p>How to display ActiveRecords like</p>
<pre><code> >> Role.all
+----+-----------+-------------------------+-------------------------+
| id | name | created_at | updated_at |
+----+-----------+-------------------------+-------------------------+
| 1 | Admin | 2009-11-16 21:22:59 UTC | 2009-11-16 21:22:59 UTC |
| 2 | Moderator | 2009-11-16 21:23:06 UTC | 2009-11-16 21:23:06 UTC |
| 3 | Author | 2009-11-16 21:23:16 UTC | 2009-11-16 21:23:16 UTC |
+----+-----------+-------------------------+-------------------------+
3 rows in set
</code></pre>
<p>?</p>
<p>I saw it in railscasts.com/episodes/189-embedded-association and
<a href="http://asciicasts.com/episodes/189-embedded-association" rel="nofollow">http://asciicasts.com/episodes/189-embedded-association</a></p>
http://stackoverflow.com/questions/1918297/nullpointerexception-in-consoles-readline0NullPointerException in Console's readLine()dmindreader2009-12-16T22:34:47Z2009-12-16T22:44:36Z
<p>This:</p>
<pre><code>Console c = System.console();
String readline;
String u = c.readLine("%s", "args");
</code></pre>
<p>Throws a <code>NullPointerException.</code> Yet the signature of the method is:</p>
<pre><code> public String readLine(String fmt, Object... args)
</code></pre>
<p>Why's this exception being thrown?</p>
http://stackoverflow.com/questions/440269/whats-a-good-alternative-windows-console12What's a good alternative Windows console?Ethan2009-01-13T18:53:51Z2009-12-16T22:35:46Z
<p>UPDATE (solution)</p>
<p>Months later someone turned me on to an awesome solution to this. If you install <a href="http://code.google.com/p/msysgit/" rel="nofollow">Git for Windows</a>, it comes with this console app called Git Bash that does <strong>exactly</strong> what I descibed. I gather that it is derived from <a href="http://www.mingw.org/" rel="nofollow">MinGW</a>. It's easy and convenient and gives you all the Unix bash command line conveniences. Tab-completion works the way it does in bash (completes up to the point of ambiguity and doesn't try to guess beyond that forcing you to backspace out of an incorrect completion) and you can <code>control-R</code> to search command history, and history is preserved across restarts.</p>
<p><hr></p>
<p>Can someone recommend a Windows XP program that provides a command line environment? I am an avid Cygwin user, but it doesn't solve my current problem. The problem with Cygwin that's tripping me up is that paths within the Cygwin environment are different from those under Windows, so some things I need to do are failing. My current project requires the Windows environment, not an alternate universe.</p>
<p>I've also considered PowerShell and Windows Services for Unix. I might try them later but for this project, I don't have time to learn a whole programming language that is PowerShell, and I suspect that WSU will have the same path problem as Cywin.</p>
<p>What I'm really looking for to solve my current problem is an app that gives me a Windows console but with some basic amenities added such as...</p>
<ul>
<li>Tab-completion.</li>
<li>Being able to cut and paste text appearing in the window.</li>
<li>Search command history.</li>
<li>Being able to make the window wider than 80 chars.</li>
</ul>
http://stackoverflow.com/questions/1910592/process-waitforexit-on-console-vs-windows-forms1Process.WaitForExit() on Console vs Windows FormsGavin2009-12-15T21:38:26Z2009-12-16T21:11:31Z
<p>I have a console app and a win forms app that both need to call out to a remote server for some data, they make a call to the command line part of Putty, plink.exe, to run a remote command over SSH.</p>
<p>I created a tiny class library for both to share, running the following:</p>
<pre><code>public static string RunCommand(string command, string arguments) {
ProcessStartInfo startInfo = new ProcessStartInfo {
FileName = command,
Arguments = arguments,
UseShellExecute = false,
CreateNoWindow = true,
RedirectStandardOutput = true
};
string output = null;
using (Process p = new Process()) {
p.StartInfo = processStartInfo;
p.Start();
output = p.StandardOutput.ReadToEnd();
p.WaitForExit();
}
return output;
}
</code></pre>
<p>Under the console application everything works fine, under the win forms it doesn't error, it seems that WaitForExit() just doesn't wait. I get an empty string for output. I've confirmed from the remote server the user logged in, so it seems the command has run.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/837454/c-making-the-second-and-third-openfiledialog-appear-above-the-console0C# Making the second and third OpenFileDialog appear above the console?James Reever2009-05-07T22:46:31Z2009-12-16T19:51:57Z
<p>I'm writing a console program that can accept 1 to 3 files.
I'm using OpenFileDialog three times to accept the files, but the second time and third the file dialog is behind the console window, making it hard to notice. Any way to get it to appear above?</p>
<p>An image of the problem:
<a href="http://img205.imageshack.us/img205/5312/problemr.png" rel="nofollow">http://img205.imageshack.us/img205/5312/problemr.png</a></p>
<p>The relevant code is:</p>
<pre><code>static bool loadFile(ref List<string> ls)
{
OpenFileDialog f = new OpenFileDialog();
if (f.ShowDialog() == DialogResult.OK)
{
Console.WriteLine("Loaded file {0}", f.FileName);
ls.Add(f.FileName);
return true;
}
else
{
return false;
}
}
[STAThread]
static void Main(string[] args)
{
//sanity check
if (args.Length > 3)
{
Console.WriteLine("Sorry, this program currently supports a maximum of three different reports to analyze at a time.");
return;
}
else if (args.Length == 0)
{
List<string> fL = new List<string>();
for (int k = 0; k < 3; k++)
{
if (!loadFile(ref fL)) break;
}
if (fL.Count == 0)
{
InfoDisplay.HelpMessage();
return;
}
else
{
args = fL.ToArray();
}
}
//main program
</code></pre>
http://stackoverflow.com/questions/1911154/what-does-disabled-echoing-means1What does "disabled echoing" means?dmindreader2009-12-15T23:16:24Z2009-12-15T23:18:05Z
<blockquote>
<p>The <code>readPassword()</code> method of the
<code>Console</code> class has echoing disabled.</p>
</blockquote>
<p>What's echo?</p>
http://stackoverflow.com/questions/1908512/c-hold-the-console-window-open0C++ - Hold the console window open?Alex2009-12-15T16:10:49Z2009-12-15T18:00:17Z
<p>Hi, my question is super simple, but I'm transitioning from c# to c++, and I was wondering what command holds the console window open in C++?</p>
<p>I know in C#, the most basic way is:</p>
<pre><code>Console.ReadLine();
</code></pre>
<p>Or if you want to let the user press any key, its:</p>
<pre><code>Console.ReadKey(true);
</code></pre>
<p>How do you do this in c++? The only reason I ask this simple of a question here, is that I haven't been able to find a good and clear answer out there on the internet.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1866865/how-can-i-show-perl-console-output-in-a-gui5How can I show Perl console output in a GUI?Jazz2009-12-08T13:07:22Z2009-12-14T20:15:57Z
<p>I have several simple Perl programs writing to the standard output, but this has some problems :</p>
<ul>
<li>some of my users are scared by a console</li>
<li>my users works on Windows, so my program output is displayed on a <code>cmd</code> console, so I cannot control the way it is displayed (colors and terminal size), and worse, the console is not resizeable (at least in width)</li>
</ul>
<p>To solve these problems, I would like to be able to display the output in a simple GUI interface as an option. The GUI should be responsive until the program finishes (it should be possible to scroll or resize the window while it's running).</p>
<p>What the simple toolkit and widget I can use to do this? (I develop on Windows with ActivePerl).</p>
http://stackoverflow.com/questions/1902672/c-multiple-consoles-at-once0[C#] Multiple Consoles at Once bobber2052009-12-14T18:37:20Z2009-12-14T18:44:36Z
<p>Is there an easy way to do this?</p>
<p>I am testing my networking application using just the console for now. What would be nice is to have multiple consoles from one project and one press of the "Debug Now" menu item.</p>
<p>I could, like I have in the past, use multiple projects but that's seems unwieldy. Ideally I could launch multiple console instances (running from the same thread is fine) and have them not cover the other consoles when they do launch. Launching side by side would be awesome!</p>
<p>How practical is what I'm asking? Is it possible?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1897593/smtp-mail-client-settings-in-app-config-file-c0SMTP Mail client settings in app.config file C#Caveatrob2009-12-13T20:14:33Z2009-12-14T00:20:55Z
<p>I've put mail settings in app.config and can successfully pull them into a mailSettingsSectionGroup object. However, I'm not sure how to send a message using these settings.</p>
<p>This is what I have so far:</p>
<pre><code>System.Configuration.Configuration config =
ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
MailSettingsSectionGroup mailSettings =
config.GetSectionGroup("system.net/mailSettings") as
System.Net.Configuration.MailSettingsSectionGroup;
</code></pre>
<p>What do I need to do next to use the mailSettings object?</p>
http://stackoverflow.com/questions/1885776/python-2-6-reading-data-from-a-windows-console-application-os-system3Python 2.6: reading data from a Windows Console application. (os.system?)Jeremy2009-12-11T04:24:56Z2009-12-11T04:57:40Z
<p>I have a Windows console application that returns some text. I want to read that text in a Python script. I have tried reading it by using os.system, but it is not working properly. </p>
<pre><code>import os
foo = os.system('test.exe')
</code></pre>
<p>Assuming that test.exe returns "bar", I want the variable foo to be set to "bar". But what happens is, it prints "bar" on the console and the variable foo is set to 0. </p>
<p>What do I need to do to get the behavior I want?</p>
http://stackoverflow.com/questions/1883321/java-system-out-println-and-system-err-println-out-of-order1Java: System.out.println and System.err.println out of orderRosarch2009-12-10T19:20:58Z2009-12-10T19:23:11Z
<p>My <code>System.out.println()</code> and <code>System.err.println()</code> calls aren't being printed to the console in the order I make them.</p>
<pre><code>public static void main(String[] args) {
for (int i = 0; i < 5; i++) {
System.out.println("out");
System.err.println("err");
}
}
</code></pre>
<p>This produces:</p>
<pre><code>out
out
out
out
out
err
err
err
err
err
</code></pre>
<p>Instead of alternating <code>out</code> and <code>err</code>. Why is this?</p>
http://stackoverflow.com/questions/766890/ruby-on-rails-on-windows-xp-ctrlc-in-console-not-stopping-mongrel4Ruby on Rails on Windows XP CTRL+C in console not stopping mongrel Jayrox2009-04-20T04:30:25Z2009-12-10T06:52:38Z
<p>I am currently in the process of learning Ruby on Rails. I have been following the <a href="http://buildingwebapps.com/course" rel="nofollow">Learning Rails</a> podcast and screencasts. </p>
<p>I've run into a problem, well more of an annoyance. Every time the screencast has me kill the mongrel server I am forced to close the console window because CTRL+C isnt killing it as it should. I then have to open a new console window, navigate to my rails app and issue a 'ruby script/server' command to restart it.</p>
<p>What I am looking for is possibly a reason for this, a way to fix it or other suggestions to make this process faster and/or less annoying. Or even possibly a batch file or shortcut to open a cmd window right to where I need it?</p>
http://stackoverflow.com/questions/1875936/java-easier-pretty-printing3Java: Easier pretty printing?Rosarch2009-12-09T18:41:47Z2009-12-09T22:13:09Z
<p>At the end of my computations, I print results:</p>
<pre><code>System.out.println("\nTree\t\tOdds of being by the sought author");
for (ParseTree pt : testTrees) {
conditionalProbs = reg.classify(pt.features());
System.out.printf("%s\t\t%f", pt.toString(), conditionalProbs[1]);
System.out.println();
}
</code></pre>
<p>This produces, for instance:</p>
<pre><code>Tree Odds of being by the sought author
K and Burstner 0.000000
how is babby formed answer 0.005170
Mary is in heat 0.999988
Prelim 1.000000
</code></pre>
<p>Just putting two <code>\t</code> in there is sort of clumsy - the columns don't really line up. I'd rather have an output like this:</p>
<pre><code>Tree Odds of being by the sought author
K and Burstner 0.000000
how is babby formed answer 0.005170
Mary is in heat 0.999988
Prelim 1.000000
</code></pre>
<p>(note: I'm having trouble making the SO text editor line up those columns perfectly, but hopefully you get the idea.)</p>
<p>Is there an easy way to do this, or must I write a method to try to figure it out based on the length of the string in the "Tree" column?</p>
http://stackoverflow.com/questions/1232017/block-selection-in-xterm1Block selection in xtermSorin Mocanu2009-08-05T09:03:57Z2009-12-09T08:10:50Z
<p>Is it possible to have a block (as in "rectangular") selection in xterm?</p>
<p>If yes, is it assigned by default to a key/mouse binding or does it have to be assigned separately?</p>
<p>Thanks :)
Sorin</p>
http://stackoverflow.com/questions/1850192/correct-way-to-write-console-applications-on-gnu-linux-with-c1Correct way to write console applications on GNU/Linux with C++tr9sh2009-12-04T22:54:11Z2009-12-09T07:27:47Z
<p>I really like the console and got recently hooked on programming console applications using nCurses mainly in conjunction with the C programming language. </p>
<p>Unfortunately i think the ncurses API is totally borked and very hard to use, and the C++ bindings are undocumented.</p>
<p>So my question is, what is <em>THE</em> API to use for C++ console applications?</p>
http://stackoverflow.com/questions/1863989/strange-console-movebufferarea-ioexception0Strange Console MoveBufferArea IOExceptionm0sa2009-12-08T01:23:46Z2009-12-08T04:02:31Z
<p>Hi,
I was building a "reverse console" (so that the written lines would append themselves on the top instead of the bottom) as I stumbled upon a very strange behavior of the Console.MoveBufferArea method:</p>
<pre><code> static void Main()
{
for (var _linesWritten = 0; _linesWritten < 1000; _linesWritten++)
{
var _height = Math.Min(Console.BufferHeight-1, _linesWritten);
Console.MoveBufferArea(0, 0, Console.BufferWidth, _height, 0, 1);
Console.SetCursorPosition(0, 0);
Console.WriteLine("Line {0} aaaaaaaaaa", _linesWritten);
Console.ResetColor();
}
}
</code></pre>
<p>When i call it a fixed number of times it throws an System.IO.IOException saying: "Not enough storage is available to process this command". I figured out that it depends on the amount of the buffer area being moved around. The number of lines written before the exception is thrown changes as I change the Console.BufferWidth property.</p>
<p><a href="http://img710.imageshack.us/i/wtfconsole.png/" rel="nofollow" title="Screenshot">Screenshot</a></p>
<p>I am running Windows 7 x64 @ Corei7, 6gb DDR3, so storage shuldn't be the problem....
Does anybody have a clue what could be wrong?</p>
http://stackoverflow.com/questions/1851665/running-jquery-call-in-firebug-console0Running jQuery call in Firebug ConsoleGregH2009-12-05T09:14:09Z2009-12-05T11:42:32Z
<p>Sorry, new to Firebug. I really find being able to run javascript in the Firebug console window helpful. However, I don't seem to be able to run jQuery calls in the console. For example, in my executing javascript in my page, I may make the call to get a value:</p>
<pre><code> jQuery('#an_element_value').text()
</code></pre>
<p>However, I cannot execute this in the console. In order to retrieve this value from the page in the console I have to execute:</p>
<pre><code> document.getElementById('an_element_value').innerHTML
</code></pre>
<p>Is there a way to execute jQuery calls and reference page elements through jQuery in the Firebug console?</p>
http://stackoverflow.com/questions/1786333/read-a-buffer-of-unknown-size-console-input0Read a buffer of unknown size (Console input)Sanarothe2009-11-23T21:57:41Z2009-12-05T07:45:22Z
<p>Hi. I'm a little behind in my X86 Asm class, and the book is making me want to shoot myself in the face. The examples in the book are insufficient and, honestly, very frustrating because of their massive dependencies upon the author's link library, which I hate. I wanted to learn ASM, not how to call his freaking library, which calls more of his library.</p>
<p>Anyway, I'm stuck on a lab that requires console input and output. So far, I've got this for my input:</p>
<pre><code> input PROC
INVOKE ReadConsole, inputHandle, ADDR buffer, Buf - 2, ADDR bytesRead, 0
mov eax,OFFSET buffer
Ret
input EndP
</code></pre>
<p>I need to use the input and output procedures multiple times, so I'm trying to make it abstract. I'm just not sure how to use the data that is set to eax here. My initial idea was to take that string array and manually crawl through it by adding 8 to the offset for each possible digit (Input is integer, and there's a little bit of processing) but this doesn't work out because I don't know how big the input actually is.
So, how would you swap the string array into an integer that could be used?</p>
<p>Full code: (Haven't done the integer logic or the instruction string output because I'm stuck here.)</p>
<pre><code>include c:/irvine/irvine32.inc
.data
inputHandle HANDLE ?
outputHandle HANDLE ?
buffer BYTE BufSize DUP(?),0,0
bytesRead DWORD ?
str1 BYTE "Enter an integer:",0Dh, 0Ah
str2 BYTE "Enter another integer:",0Dh, 0Ah
str3 BYTE "The higher of the two integers is: "
int1 WORD ?
int2 WORD ?
int3 WORD ?
Buf = 80
.code
main PROC
call handle
push str1
call output
call input
push str2
call output
call input
push str3
call output
call input
main EndP
larger PROC
Ret
larger EndP
output PROC
INVOKE WriteConsole
Ret
output EndP
handle PROC USES eax
INVOKE GetStdHandle, STD_INPUT_HANDLE
mov inputHandle,eax
INVOKE GetStdHandle, STD_INPUT_HANDLE
mov outputHandle,eax
Ret
handle EndP
input PROC
INVOKE ReadConsole, inputHandle, ADDR buffer, Buf - 2, ADDR bytesRead, 0
mov eax,OFFSET buffer
Ret
input EndP
END main
</code></pre>
http://stackoverflow.com/questions/1847177/print-function-calls-with-a-variable-delay-python1Print function calls with a variable delay / Pythoncmdev2009-12-04T14:11:58Z2009-12-05T02:39:30Z
<p>The question is, how can I configure the Python debugger to show me in the console what functions are being called?</p>
<p>In order not to see everything flash by, a delay between the function calls would be needed.</p>