3
votes
3answers
106 views
How do I print out a tree structure?
I'm trying to improve performance in our app. I've got performance information in the form of a tree of calls, with the following node class:
public class Node
{
public strin …
3
votes
1answer
136 views
A beautifier for lisp?
Are there any beautifiers for (e)lisp? Online preferred
1
vote
2answers
119 views
Pretty Print Excel Formulas?
Does anyone know of a (free) tool to pretty print Excel formulas? A Google search didn't turn anything up.
I've got a few worksheets of semi-complex formulas to slog through, so …
0
votes
0answers
66 views
encode xml while printing SOAPMessage
Hi,
I have written a function to pretty print a javax.xml.soap.SOAPMessage to a string:
public static String soapMessageToString (SOAPMessage msg) {
try {
…
2
votes
6answers
440 views
Is there a pretty print for PHP?
I'm fixing some PHP scripts and I'm missing ruby's pretty printer. i.e.
require 'pp'
arr = {:one => 1}
pp arr
will output {:one => 1}. This even works with fairly complex obj …
20
votes
34answers
2k views
Do you try to make your code look pretty?
I might be one anal programmer, but I like code that looks good from a distance. I just found myself lining up a CSS style so that instead of this:
#divPreview {
text-align: cent …
1
vote
0answers
96 views
How to format numbers according to locale in Haskell?
In Python I can use locale.format to pretty-print numbers according to locale setting:
>>> import locale
>>> locale.setlocale(locale.LC_ALL, "en_US.UTF-8")
'en_U …
3
votes
2answers
509 views
Pretty-printing output from javax.xml.transform.Transformer with only standard java api (Indentation and Doctype positioning)
Using the following simple code:
package test;
import java.io.*;
import javax.xml.transform.*;
import javax.xml.transform.stream.*;
public class TestOutputKeys {
public static …
15
votes
11answers
10k views
how to pretty print xml from Java
I have a Java String that contains XML, with no line feeds and indentations. I would like to turn in into a String with nicely formatted XML. How do I do this?
String unformattedX …
0
votes
1answer
120 views
How to format code in html / css / js/ php
I'm looking for a way to automatically format and color code I write in an HTML document. I know wikipedia does it, for example on the page: http://en.wikipedia.org/wiki/Nested_fun …
1
vote
3answers
117 views
Converting Source ASCII Files to JPEGs
I publish technical books, in print, PDF, and Kindle/MOBI, with EPUB on the way.
The Kindle does not support monospace fonts, which are kinda useful for source code listings. The …
0
votes
1answer
107 views
Changing the default indentation of etree.tostring in lxml
I have an XML document which I'm pretty-printing using lxml.etree.tostring
print etree.tostring(doc, pretty_print=True)
The default level of indentation is 2 spaces, and I'd lik …
2
votes
8answers
206 views
What are the best prettyprint options for C++?
Hi All,
My partner and I are working on a prettyprinter for C++. The tool parses C++ and prints the resulting AST, so we have quite a bit of flexibility. We've implemented a few …
9
votes
8answers
2k views
Is there a function in Python to print all the current properties and values of an object?
So what I'm looking for here is something like PHP's print_r function. This is so I can debug my scripts by seeing what's the state of the object in question.
0
votes
3answers
122 views
Putting each attribute on a new line during xml serialization
Lets say I have a DOM object (or a string containing xml). Is it in any way possible to serialize the xml in such a way that each attribute appears on a new line?
This is the out …
