6
votes
3answers
171 views
Pretty print a tree
Let's say I have a binary tree data structure defined as follows
type 'a tree =
| Node of 'a tree * 'a * 'a tree
| Nil
I have an instance of a tree as follows:
let x =
…
0
votes
3answers
22 views
Hibernate: OutOfMemoryError persisting Blob when printing log message
I have a Hibernate Entity:
@Entity
class Foo {
//...
@Lob
public byte[] getBytes() { return bytes; }
//....
}
My VM is configured with a maximum heap size of 512 …
3
votes
2answers
38 views
Ruby Configure IRB to Pretty_Inspect by Default
Hi Guys,
I'm fairly new to ruby, and am configuring IRB. I like pretty print (require 'pp'), but it seems a hassle to always type pp for it to pretty print it. What I'd like to …
3
votes
3answers
123 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 …
1
vote
1answer
112 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
1answer
137 views
A beautifier for lisp?
Are there any beautifiers for (e)lisp? Online preferred
1
vote
2answers
131 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 …
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 …
2
votes
6answers
481 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 …
0
votes
0answers
80 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 {
…
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 …
3
votes
2answers
626 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 …
0
votes
1answer
124 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
126 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 …
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.
