The beautification tag has no wiki summary.
2
votes
1answer
27 views
how do I get a nice Coding-Style and easy maintenance when using translation maps in an Java Enterprise App?
Imagine that you are editing a big back office Enterprise Java app, where other people might poke around years from now. That means you have to keep the code clean and easy to understand, performance ...
0
votes
1answer
39 views
How to send data by jquery ajax making beauty url
I have a REST service in the url: http://127.0.0.1:8080/project/api/route/{id}
I want to call the URL using JQuery AJAX, like:
function myFunc(id){
$.ajax({
type: "GET",
url: ...
3
votes
3answers
119 views
How to express a filter that relies on adjacent elements in a list, functionally
Several times I've wanted to traverse a list and pick out elements that have some property which also relies on, say, the next element in the list. For a simple example I have some code which counts ...
0
votes
2answers
165 views
Ruby MySQL formatter
I need to 'pretty print' a mysql query. The query is very long and complex and doing this in code is cumbersome. The language doesn't matter too much, but I am writing a web app so javascript ( to ...
1
vote
6answers
912 views
Beautify javascript code
I need a tool for beautifying JavaScript source code, something like astyle but with support for all the JavaScript syntax. Astyle doesn't handle anonymous functions-references too well and it messes ...
1
vote
1answer
670 views
ExtJs textarea with formatting
I'm trying to add formatted json string to my textarea field. But it doesn't work.
I'm formatting string using this approach: How can I beautify JSON programmatically?
and then just call
...
3
votes
2answers
640 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 ...
2
votes
2answers
338 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 ...
4
votes
3answers
2k 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 ...
5
votes
2answers
6k views
Online C++ Code Formatter/Beautifier [closed]
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.
0
votes
1answer
277 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 ...
2
votes
3answers
105 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 ...
1
vote
2answers
409 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 ...
3
votes
2answers
169 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 ...
4
votes
3answers
729 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 ...
0
votes
1answer
153 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 ...
37
votes
8answers
13k views
How can I beautify JSON programmatically?
Do you know of any "JSON Beautifier" for JavaScript?
From
{"name":"Steve","surname":"Jobs","company":"Apple"}
To
{
"name" : "Steve",
"surname" : "Jobs",
"company" : "Apple"
}
Example
...
3
votes
4answers
3k 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 ...
4
votes
1answer
347 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 ...
38
votes
9answers
24k 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 ...
4
votes
13answers
497 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 ...
84
votes
12answers
67k views
Online code beautifier and formatter [closed]
What are the best online code beautifier and formatter out there? I'm not asking for highlighters. Any language will do.
2
votes
3answers
356 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. ...
23
votes
15answers
22k 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.
0
votes
2answers
121 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 ...
2
votes
4answers
2k 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 ...

