Tagged Questions

2
votes
2answers
51 views

PHP SimpleXML new line

Hi, I have created a XML file using PHP's simple XML, saved the file. When opening the file in php using fopen and printing the contents. my XML looks like this: (see below) <?xml version="1.0" …
11
votes
3answers
119 views

How to handle widespread code format changes in a git repository

We have a project with around 500,000 lines of code, managed with git, much of it several years old. We're about to make a series of modifications to bring the older code into conformance with the …
1
vote
3answers
117 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 …
6
votes
3answers
196 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
63 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 …
0
votes
3answers
60 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 …
3
votes
3answers
155 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 …
1
vote
1answer
124 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' …
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: center; vertical-align: …
3
votes
1answer
144 views

A beautifier for lisp?

Are there any beautifiers for (e)lisp? Online preferred
1
vote
2answers
143 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
537 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 …
15
votes
11answers
11k 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 unformattedXml = …
0
votes
0answers
94 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
2answers
746 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 void main(String[] …

1 2 3 4 next
15 30 50 per page