The code-beautification tag has no wiki summary.
70
votes
7answers
25k views
Best C++ Code Formatter/Beautifier
There are lots of source code formatting tools out there. Which ones work best for C++?
I'm interested in command-line tools or other things that can be automatically run when checking code in/out, ...
17
votes
7answers
8k views
Ruby: Can I write multi-line string with no concatenation?
Is there a way to make this look a little better?
conn.exec 'select attr1, attr2, attr3, attr4, attr5, attr6, attr7 ' +
'from table1, table2, table3, etc, etc, etc, etc, etc, ' +
...
9
votes
3answers
370 views
Writing a code beautifier
I'd like to write a code beautifier and i thought of using Ruby to do it. Could someone show me a place to get started? I've seen a lot of code beautifiers online but I've never come across any ...
8
votes
1answer
146 views
Writing 'CONTAINS' query using LINQ
Given the output of query:
var queryResult = from o in objects
where ...
select new
{
FileName = o.File,
...
6
votes
4answers
928 views
Most idiomatic way to print a time difference in Java?
I'm familiar with printing time difference in milliseconds:
long time = System.currentTimeMillis();
//do something that takes some time...
long completedIn = System.currentTimeMillis() - time;
...
5
votes
4answers
842 views
Writing Beautiful Ruby: Checking for nil string before concatenating
Currently I have:
file.puts "cn: " + (var1.nil? ? "UNKNOWN" : var1)
Which works fine, but doesn't look good. What is a better way to write this in ruby so that I am checking for nil and not ...
4
votes
3answers
621 views
Ruby indented multiline strings
It's a best-practice question. There are obvious ways to do that, none of them just seem quite right.
Quite often I need to test that some multi-line string gets produced. This normally breaks ...
3
votes
2answers
376 views
PHP HTML Formatter Beautifier
I am looking for a software which can beautify both PHP and HTML code.
Dreamweaver seems to do a good job with html but not PHP
PHP designer does a good job with PHP but messes up HTML.
Any ...
3
votes
3answers
113 views
Java singleton with inheritance
I have a set of singleton classes and I want to avoid boilerplate code. Here is what I have now:
public class Mammal{
protected Mammal() {}
}
public class Cat extends Mammal{
static protected Cat ...
3
votes
1answer
2k views
Spring - adding BindingResult to newly created model attribute
My task is - to create a model attribute by given request parameters, to validate it (in same method) and to give it whole to the View.
I was given this example code:
@Controller
class ...
2
votes
3answers
37 views
How to do color coding source
How do they color code source code in an IDE. What is the basic indea behind it? What are they tokens they look for?
2
votes
1answer
259 views
Can I configure “Format Document” support for HTML5 tags in Visual Studio 2010?
I frequently use the Edit -> Advanced -> Format Document command (Ctrl-K, D) in VS2010 when editing HTML markup.
I'm working on a site that uses HTML5 structural elements (<nav>, ...
2
votes
1answer
267 views
Beautify HTML code using Ruby or Java?
I'm looking for pure Ruby (or Java) solutions for beautifying HTML code.
I'm currently using Hpricot to parse HTML, since Nokogiri and other HTML parsers require external C programs. I assume that I ...
2
votes
4answers
275 views
Ruby: String no longer mixes in Enumerable in 1.9
So how can I still be able to write beautiful code such as:
'im a string meing!'.pop
Note: str.chop isn't sufficient answer
1
vote
2answers
120 views
Is there a tool for auto formatting Python code?
Something similar to Visual Studio's formatting settings that allows spaces in empty method calls, spacing before and after the . member access operator, etc. For instance:
from:
...
1
vote
1answer
82 views
Eclipse CDT C/C++ coding style
I would like to force the following coding style option in Eclipse CDT.
in each if statement, even a single statement should be in a block of code.
for instance:
if (1 == 1) nop();
will become
if ...
1
vote
7answers
182 views
Help me simplify this code (Python)
I'm a beginner in Python, teaching myself off of Google Code University. I had this problem as an exercise, and was able to solve it using the solution shown below:
# F. front_back
# Consider ...
1
vote
3answers
91 views
making a small regular expression a bit more readable
I've got a working regular expression, but I'd like to make it a tad more readable, and I'm far from a regex guru, so I was humbly hoping for some tips.
This is designed to scrape the output of ...
1
vote
3answers
137 views
Writing better Ruby: How to cast a objects to false or true?
In ruby, what is the best/most-elegant way to return a value such as:
#method returns true or false if 'do i match' is present in string
def method(str)
str =~ /do i match/
end
0
votes
1answer
35 views
formatting functions parameter
Are you aware of any tool or program that is able to beautify the function input parameters making the variable left-aligned like the example below?
I am having a look at A-Style right now. Do you ...
0
votes
0answers
13 views
Is there a maximum indentation at once setting for Uncrustify?
I have a block of objective c code that looks like this
[paths enumerateObjectsUsingBlock:^(NSString * path, NSUInteger idx, BOOL * stop) {
BOOL isDir;
if ([fm fileExistsAtPath:path ...
0
votes
3answers
104 views
Code formatter/beautifier application
I found some very useful web services which make the messy code readable. Sharing some of them with you
JS beautifier
PHP formatter
I'd like my PHP and JS code to be formatted by Dreamweaver much ...
0
votes
1answer
39 views
jQuery equivalent of Ruby any?
So i'm looking for a concise way to determine if an array of objects returned from a selector have text.
My setup here is pretty basic, I've got a table and I'd like to determine if in a specified ...
0
votes
3answers
112 views
Ruby code beautification, split long instructions on multiple lines
How can we write the following statement to improve readability?
Promotion.joins(:category).where(["lft>=? and rgt<=?", c.lft, c.rgt]).joins(:shops).where(:promotions_per_shops => { :shop_id ...
0
votes
1answer
557 views
RapidXML reading from file - what is wrong here?
What's the difference between these two methods of reading an input file?
1) Using 'ifstream.get()'
and
2) Using a vector<char> with ifstreambuf_iterator<char> (less understood by ...
0
votes
1answer
237 views
What FONT Do You Use when Programming/Coding? [closed]
Allright, I have just about enough with the 1944-ish-pre-war-typemachine Courier New. Its rigid hammer-like serifs have certainly not been designed for pixel-grid tft monitors. Courier New was ...
0
votes
1answer
231 views
Syntaxhighlighter is not working
I am using the syntaxhighlighter, but it is not working. You can see the page : http://fast-code.sourceforge.net/templates1.htm. Any ideas?
EDIT : It is working okay now but But now a strange scroll ...
0
votes
1answer
60 views
Can I apply PL/SQL beautifer rules from command line?
Topic is self-explanatory.
My goal is to automate the process of code beautification, so a program like SQLPlus will compile code after it has been beautified.
0
votes
2answers
179 views
Controlling code beautifing in emacs
How can I get Emacs to put padding spaces around opening brackets and operators on indentation ()?
0
votes
1answer
173 views
Order source code alphabetically by function name
I use Geany as text editor (windows). It shows the functions list sorted alphabetically and I would like to have the actual functions in the source code sorted in that way.
Is there any program to ...
0
votes
1answer
148 views
So, I have this jquery bit that adds a row to a table the way I need it to, but it's UGLY
I have a table that looks like this:
<table name="exercises" id="workout-table">
<tr>
<th>Name</th>
<th>Reps/Intervals</th>
<th>Sets</th>
...
0
votes
3answers
125 views
What is the proper way to phrase this statement in Ruby?
I'm new at this, and I'm having trouble finding the proper way to phrase this in Ruby. And I don't know if the Ruby API in SketchUp is different. But, thats what I'm trying to use it for.
def ...