Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

126
votes
3answers
2k views

What do single quotes do in C++ when used on multiple characters?

I'm curious about this code: cout << 'test'; // Note the single quotes. gives me an output of 1952805748. My question: Is the output an address in memory or something?
76
votes
6answers
91k views

Simplest way to print an array in Java

What's the simplest way of printing an array of primitives or of objects in Java? Here are some example inputs and outputs: int[] intArray = new int[] {1, 2, 3, 4, 5}; //output: [1, 2, 3, 4, 5] ...
47
votes
10answers
13k views

How can I make the Python logging output to be colored?

Some time ago I saw a Mono application with colored output, probably because of it's log system, because all the messages were standardized. Now, Python has the logging module, and it let you specify ...
32
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 ...
29
votes
16answers
3k views

Should I use printf in my C++ code?

So I generally use cout and cerr to write text to the console. However sometimes I find it easier to use the good old printf statement. I use it when I need to format the output. So one example of ...
23
votes
7answers
27k views

Android ACTION_IMAGE_CAPTURE Intent

We are trying to use the native camera app to let the user take a new picture. It works just fine if we leave out the EXTRA_OUTPUT extra and returns the small Bitmap image. However, if we ...
22
votes
9answers
45k views

SQL Server: Is it possible to insert into two tables at the same time?

My database contains three tables called Object_Table, Data_Table and Link_Table. The link table just contains two columns, the identity of an object record and an identity of a data record. I want ...
20
votes
1answer
441 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 ...
18
votes
1answer
232 views

IOS - External (hdmi) output fills only half the screen except when coding view manually

So, as the title says, I have an hdmi out on the iPad and an observer registered for screen connections, upon connection the user chooses the res and a view is outputted. However, if I load a view ...
16
votes
4answers
1k views

Get Displayed Text from TextBlock

I have a simple TextBlock defined like this <StackPanel> <Border Width="106" Height="25" Margin="6" BorderBrush="Black" ...
16
votes
5answers
6k views

How to keep a Python script output window open?

I have just started with Python. When I execute a python script file on Windows, the output window appears but instantaneously goes away. I need it to stay there so I can analyze my output. How can I ...
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
5answers
17k views

How to redirect the output of a PowerShell to a file during its execution

I have a Powershell script for which I would like to redirect the output to a file. The problem is that I cannot change the way this script is called. So I cannot do: .\MyScript.ps1 > output.txt ...
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 ...
12
votes
4answers
10k views

How to color System.out.println output?

Question is simple: How can I color java output? For example in C and other languages I can use ansi-escape like \033[0m to do this. But in java it doesn't work. public static void main(String[] ...
11
votes
2answers
2k views

Is there a better way to switch between HTML and JSON output in Pyramid?

# /test{.format} no longer seems to work... config.add_route('test', '/test.{ext}', view='ms.views.test') views.py: from pyramid.response import Response from pyramid.renderers import render ...
11
votes
6answers
13k views

Where does System.Diagnostics.Debug.Write output appear?

the following C# program (built with csc hello.cs) prints just Hello via Console! on the console and Hello via OutputDebugString in the DebugView window. However, I cannot see either of the ...
11
votes
3answers
9k views

How can I redirect STDERR to STDOUT, but ignore the original STDOUT?

I have a program whose STDERR output I want to inspect and run grep on etc. So I could redirect it to STDOUT and use grep, but the problem is, I do not want the original STDOUT content. So, this one ...
11
votes
19answers
1k views

Do you generate nicely formatted HTML?

When using some server-side technology which is outputting HTML, do you try to format the output nicely? For example, adding line breaks and indentation? What are the pros and cons of either style?
11
votes
5answers
6k views

How can I capture the result of var_dump to a string?

I'd like to capture the output of var_dump to a string. The PHP docs say As with anything that outputs its result directly to the browser, the output-control functions can be used to capture the ...
10
votes
5answers
967 views

Getting different output with printf and cout - C++

I have a string I am trying to print. when I used cout, it outputs perfectly but using printf leaves it mangled. Here is the code: int main ( int argc, char *argv[] ) { // Check to make sure ...
10
votes
4answers
100 views

Output timing problem

the following code: String str1="asdfavaxzvzxvc"; String str2="werwerzsfaasdf"; Object c=str1; Object d=str2; System.out.println(c); long time1=System.currentTimeMillis(); for(int ...
10
votes
13answers
17k views

How can I calculate a time span in Java and format the output?

I want to take two times (in seconds since epoch) and show the difference between the two in formats like: 2 minutes 1 hour, 15 minutes 3 hours, 9 minutes 1 minute ago 1 hour, 2 minutes ago ...
9
votes
3answers
7k views

Output in a table format in Java's System.out

I'm getting results from a database and want to output the data as a table in Java's standard output I've tried using \t but the first column I want is very variable in length. Is there a way to ...
9
votes
7answers
5k views

Capture console output for debugging in VS?

Under VS's external tools settings there is a "Use Output Window" check box that captures the tools command line output and dumps it to a VS tab. The question is: can I get the same processing for my ...
8
votes
2answers
276 views

How to save all console output to file in R?

I want to redirect all console text to a file. Here is what I tried: > sink("test.log", type=c("output", "message")) > a <- "a" > a > How come I do not see this in log Error: ...
8
votes
3answers
157 views

Joining concurrent Python Output

I'm using something like this: find folder/ | xargs -n1 -P10 ./logger.py > collab Inside logger.py I am processing the files out outputting reformatted lines. So collab should look like ...
8
votes
5answers
367 views

How is *it++ valid for output iterators?

In example code, I often see code such as *it++ for output iterators. The expression *it++ makes a copy of it, increments it, and then returns the copy which is finally dereferenced. As I understand ...
8
votes
5answers
7k views

Redirect Console.Write… Methods to Visual Studio's Output Window While Debugging

From a Console Application project in Visual Studio, I want to redirect Console's output to the Output Window while debugging.
8
votes
4answers
2k views

C# Putting the required DLLs somewhere other than the root of the output

I am using EmguCV for a project and when our program runs it needs some dlls like "cxcore.dll" etc. (or it throws runtime exceptions). At the moment, I put the files in the root of the output folder ...
8
votes
7answers
2k views

How to make G++ preprocessor output a newline in a macro?

Is there a way in gcc/g++ 4.* to write a macro that expands into several lines? The following code: #define A X \ Y Expands into X Y I need a macro expanding into X Y
8
votes
2answers
3k views

Delphi 6 - read console app's output while running

How do I read a console apps output as it is running. I start the console application and would like to read the output as it is printed by the console app.
8
votes
8answers
7k views

Suppress output in Python calls to executables

I have a binary named A that generates output when called. If I call it from a Bash shell, most of the output is suppressed by A > /dev/null. All of the output is suppressed by A &> ...
8
votes
3answers
3k views

cout Formatting

I'm pretty sure this is a simple question in regards to formatting but here's what I want to accomplish: I want to output data onto the screen using cout. I want to output this in the form of a ...
7
votes
3answers
241 views

Library for visualizing object graphs in .NET

Does anyone know of, or can recommend, a library that can recursively visualize an arbitrary object graph in .NET? I need to be able to print out (to the console) a formatted representation of an ...
7
votes
5answers
5k views

Python - store output of subprocess() call in a string

Hey all, I'm trying to make a system call in Python and store the output to a string that I can manipulate in the Python program. #!/usr/bin/python import subprocess p2 = subprocess.Popen("ntpq ...
7
votes
3answers
2k views

Save output error messages to file in MATLAB

Is there a way to save MATLAB error messages to a file? This may be a simple issue, but Google couldn't give me an answer. I've compiled a GUI executable for use without a MATLAB license, and ...
7
votes
3answers
640 views

How to export the definition of an R object to plain text so that others can recreate it?

Let's say you have this data in R, and you want to post a question on stackoverflow. For others to best help you, it would be nice if they could have a copy of your object (dataframe, vector, etc) to ...
7
votes
10answers
846 views

When should I use out parameters?

I don't understand when an output parameter should be used, I personally wrap the result in a new type if I need to return more than one type, I find that a lot easier to work with than out. I have ...
7
votes
3answers
5k views

Print leading zeros with C++ output operator (printf equivalent)?

How can I format my output in C++? In other words, what is the C++ equivalent to the use of printf like this: printf("%05d", zipCode); I know I could just use printf in C++, but I would prefer the ...
7
votes
14answers
1k views

What Healthy Tricks Do You Use to Stimulate Your Brain and Increase Code Output? [closed]

There have been a few posts around the place as to what is the best music for coding, etc. While music can certainly make coding more enjoyable, I don't believe it actually makes me more productive ...
6
votes
3answers
156 views

What is the significance of a 0-length array in C?

#include <stdio.h> int main() { int a[0],b[4][0]; printf("%d %d ",sizeof(a),sizeof(b)); } //output 0 0 what is the significance of a[0] , why also 2d array of size 0 is allowed?
6
votes
5answers
394 views

cout - what it stands for? [closed]

Possible Duplicate: What does the “c” mean in cout, cin, cerr and clog? Can someone please explain to me what cout stands for?
6
votes
2answers
260 views

Understanding output in Clojure using swank/slime

When I run Clojure code from the Swank repl in emacs, the main thread will print out messages using printf to the repl. But if I run agents or explicitly create other threads which also print, ...
6
votes
2answers
2k views

Pipe subprocess standard output to a variable

I've searched around online, but can't find the answer to my question. What I want to do is run a command in pythong, using the subprocess module, and store the output in a variable. However, I do not ...
6
votes
2answers
235 views

R's behaviour using ifelse and eval in combination

disclaimer: this code is bad practice., and only works due to something bug-like. Never use it in a real situation. This question is about the interesting behaviour of R, nothing else than that. ...
6
votes
6answers
698 views

Is there a definitive anti-XSS library for PHP?

I already know how XSS works, but finding out all the many different ways to inject malicious input is not an option. I saw a couple libraries out there, but most of them are very incomplete, ...
6
votes
1answer
186 views

Question about var_dump output

When I var_dump an object, the output looks like this: object(XCTemplate)#2477 (4) { ["id"]=> string(1) "1" ["attributes"]=> array(0) { } ["db_table_name"]=> string(14) ...
6
votes
3answers
480 views

How to make a java program to print both out.println() and err.println() statements?

I have written the java code below, which executes another java program named "Newsworthy_RB". Newsworthy_RB.java contains both the System.out.printlln() and System.err.println() statements. I want ...
6
votes
3answers
272 views

Linux: can I read the output of another process without using any IPC (pipes, etc.)?

Is it possible in linux to somehow read the output (from stdout and stderr) of another process without it knowing about it? So lets say I have a process A running in the background and process B wants ...

1 2 3 4 5 27