0
votes
2answers
46 views
Nokogiri pretty printing
Sorry for this question, apparently all my googling and api searching skills must be failing me. I've written a web crawler in ruby and I'm using Nokogiri::HTML to parse the page. I need to print the …
2
votes
2answers
57 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
123 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
125 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
3answers
64 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 …
7
votes
3answers
204 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
66 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 …
3
votes
3answers
158 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 …
0
votes
0answers
95 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 …
1
vote
2answers
146 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 …
3
votes
1answer
147 views
A beautifier for lisp?
Are there any beautifiers for (e)lisp? Online preferred
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'
…
0
votes
1answer
135 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_function
I'm sure …
0
votes
3answers
153 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 output I want:
…
3
votes
2answers
764 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[] …
