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: …
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 = …
10
votes
3answers
82 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 …
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.
8
votes
17answers
1k views
Clearest way to comma-delimit a list (Java)?
Using a comma is just to make it specific - it could be any delimiter, so using List's default toString() doesn't help. (The question could be rephrased as: "best way to implement List's toString?")
…
7
votes
6answers
2k views
Javascript Beautifier
I am looking for a code beautifier that supports javascript and works on both windows and linux and can be used in batch scripts. Any recommendations?
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 …
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:
{
…
4
votes
4answers
550 views
Algorithm for neatly indenting SQL statements (Python implementation would be nice)
I'd like to reformat some SQL statements that are a single string with newlines in to something that's much easier to read.
I don't personally know of a good coding style for indenting SQL - how …
4
votes
3answers
1k views
Java console pretty printing: returning to the start of a line
Hello
In Java, how can I return to the start of a line and overwrite what has already been output on the console?
System.out.print(mystuff+'\r');
does not appear to work.
thanks in advance
4
votes
6answers
809 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
2answers
56 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
143 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 …
3
votes
1answer
142 views
A beautifier for lisp?
Are there any beautifiers for (e)lisp? Online preferred
3
votes
2answers
694 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[] …
