Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
12answers
23k views

Online code beautifier and formatter

What are the best online code beautifier and formatter out there? I'm not asking for highlighters. Any language will do.
18
votes
8answers
11k views

Stand-alone Java code formatter/beautifier/pretty printer?

I'm interested in learning about the available choices of high-quality, stand-alone source code formatters for Java. The formatter must be stand-alone, that is, it must support a "batch" mode that is ...
16
votes
11answers
12k views

Php code formatter / beautifier and php beautification in general

Do you know any good tools for nicely formatting messy php code? Preferably a script for Aptana/Eclipse, but a standalone tool will do too.
4
votes
3answers
178 views

Is it acceptable having parameter in class constructor?

Guys for wc, a rubygem I'm writing and that is useful for counting word occurrences in a text, I choose to put 3 parameters in class constructor. The code is working, but I want to refactor it for ...
3
votes
2answers
100 views

vim conceal with more than one character

Actually I'd like to display -> with → (there is a space after the arrow) in haskell files. But I have the impression the conceal mechanism only work to replace -> by one character. An ...
3
votes
2answers
128 views

Tools to bracket conditional statement

Does anyone know of a tool which can beautify C++ code to add brackets to conditional statements? What I need to do is change: if ( myCondition ) setDateTime( date, time ); to if ( myCondition ...
3
votes
4answers
783 views

Tabs in .NET TabControl/TabPage are Ugly

I am creating tabs in C#'s TabControl, and while that is very easy to do, they are extremely ugly. I did some searching around the internet and found a company that sells graphical improvements to ...
3
votes
13answers
450 views

Are you compelled to eliminate syntactic cruft?

When you encounter working code that is unpleasing to the eye, how likely are you to refactor it? I know code aesthetics is mostly subjective, but I'm bothered a lot by "ugly" code and find it ...
2
votes
2answers
415 views

Online C++ Code Formatter/Beautifier

There is good local beautifier for c++, AStyle. I'm interested in online tools, because i'm using computers where i shouldn't use programs which aren't installed by administrator.
2
votes
3answers
76 views

php compiler to compare code?

We have a codebase of php scripts that we want to convert to a new coding convention. We are looking at automated beautifying to convert scripts to the new standard. We'd like to make double sure that ...
2
votes
3answers
331 views

One coding style policy, many beautification tools?

Are there any projects that help to show that two code beautification tools are configured to produce identical results? For example, suppose that a project has mandated a particular coding style. ...
1
vote
2answers
78 views

Add a newline after each closing html tag in web2py

Original I want to parse a string of html code and add newlines after closing tags + after the initial form tag. Here's the code so far. It's giving me an error in the "re.sub" line. I don't ...
1
vote
3answers
557 views

Are there any CoffeeScript beautifiers?

Are there any beautifiers/formatters for coffeescript? One solution I can think of compiling to javascript and then using the js2coffee tool to convert back to coffeescript. However, this method is an ...
1
vote
2answers
234 views

URL Beautification using .htaccess

in search of a more userfriendly URL, how do i achieve both of the following, elegantly using only .htaccess? /de/somepage going to /somepage?ln=de /zh-CN/somepage#7 going to /somepage?ln=zh-CN#7 ...
1
vote
0answers
137 views

Eclipse: Is there any way to have all local variables aligned in Eclipse?

Eclipse has a great feature to allow you to align all your 'fields in columns' meaning that it will turn: int myVar = 2334; int asdf = 34; String s = "hello"; into int myVar = 2334; int ...
1
vote
3answers
722 views

C Code formatting/beautification tool

When working on large code base with large team, its real challenge to maintain code quality and coding style. well, controlling code quality is a huge topic on its own. But control of code style ...
0
votes
1answer
159 views

How to rewrite 301 the old ugly urls to the new beautified working urls?

a little problem that's itchying me for the last months. First the good news: with the help of a massiv SO community I was able to rewrite my ugly urls into nice ones: e.g. website.com/page.ast?ln=nl ...
0
votes
2answers
165 views

Is placement and format of copyright statement relevant?

Every software I have seen, contain copyright statement at the beginning of a file and takes pretty much lines of comment. Therefore you have to scroll down to see the code, which is a bit annoying, ...
0
votes
1answer
97 views

Regex for beautify text

HI, I would like to create a function that beautify my text. For this I use a regex who remplace some characters, but it not run. Can you give me the regular expression for this : Replace the first ...
0
votes
2answers
117 views

Anyone knows a good beautifyer for VS2005 / ASP.NET markup?

I'm looking for one those to help me in my fight against Visual Studio's propension to bollock up markup code in ASP.NET pages (especially when coming back from design view.) I might be ...