1
vote
3answers
80 views
How to turn off the Eclipse code formatter for certain sections of Java code?
I've got some Java code with SQL statements written as Java strings (please no OR/M flamewars, the embedded SQL is what it is - not my decision).
I've broken the SQL statements semantically into …
0
votes
1answer
104 views
Pretty Print for (Informix-)4gl code
Hi,
i'm searching for a pretty print program (script, code, whatever) for Informix-4GL sources.
Do you know any ? Than you, Peter.
0
votes
3answers
39 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 MB. When I try to …
6
votes
3answers
182 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 =
Node
(Node …
3
votes
2answers
53 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 do is make it …
1
vote
1answer
115 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_US.UTF-8'
…
4
votes
6answers
808 views
Nice bit of code to format an xml string
hi
Anyone got a ready made function that will take an XML string and return a correctly indented string?
eg
…
3
votes
3answers
141 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 string Name; // method …
5
votes
9answers
3k views
How to pretty-print JSON script?
Is there a (*nix) command-line script to format JSON in human-readable form?
Basically, I want it to transform the following:
{ foo: "lorem", bar: "ipsum" }
... into something like this:
{
…
0
votes
0answers
84 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 {
Writer out = new …
3
votes
1answer
142 views
A beautifier for lisp?
Are there any beautifiers for (e)lisp? Online preferred
1
vote
2answers
139 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 this would make my …
2
votes
6answers
516 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 objects and makes …
1
vote
3answers
129 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 only way to do …
2
votes
4answers
2k views
Pretty printing XML with javascript
I have a string that represents a non indented XML that I would like to pretty-print. For example:
<root><node/></root>
should become:
<root>
<node/>
</root>
…
