Code Beautification means proper formatting and rendering of codes to ensure readability. Beautification includes proper indentation for expressing code scopes, using different colors for different types of tokens (e.g. a special appearance for the reserved keywords of a language). Most of the IDEs ...
0
votes
4answers
205 views
String splitting/tokenizing in java without compiling a regex?
Is there a short hand in the standard Java API that allows me to grab a token from a string 1^2^3^4 in 1 line? I want say the 3rd element "3" to be extracted. I do not want anything which compiles a ...
0
votes
2answers
34 views
How to create a list of actions which corresponds to commands in Java
I want to control my server by typing commands in the console, but since it is not modular to write something like
switch(command)
{
case 'command1':
command1();
break;
/* And so on */
}
...
2
votes
1answer
65 views
Can Uncrustify be prevented from modifying certain sections of code?
Uncrustify is great, and does an excellent job of tidying code.
However, I have some C code within a file that I don't want Uncrustify to change. Is there any way I can prevent Uncrustify from ...
1
vote
1answer
76 views
What's the most elegant way to create this series of numbers?
I have N items in a collection and I am assigning values starting from 1, going down to 0 in the "center" of the list, and then going back up to 1 linearly.
So if you have 5 items:
0 1 2 3 4
...
1
vote
0answers
83 views
Variable naming conventions verifier for C/C++ [duplicate]
Possible Duplicate:
A free tool to check C/C++ source code against a set of coding standards?
Currently for my project, I'm using AStyle for indentation, and other issues,
But I'm looking ...
2
votes
3answers
158 views
C/C++ Code formatting tool as a subversion post-checkin hook
I work in a team of 5-6 software developers.All of us are developing on Linux (Mostly Ubuntu).We are using different IDE/editors for writing code (emacs,KDevelop,vim etc).I would like to enforce a ...
3
votes
2answers
107 views
Why are code blocks hierarchical? Extra points: Beautiful way to write my code block
Let's say I want to use 2 classes which implement the IDispose pattern. One of the classes uses the other for instantiation but is not needed afterwards. When stacking "using" keywords this will ...
0
votes
1answer
197 views
PHP automated coding standards fixer for non-hanging braces? [duplicate]
Possible Duplicate:
Are there any free cmd-line scripts which can re-format PHP source-code?
I've been evaluating several coding standards fixers to run on our code. This is to perform some ...
0
votes
1answer
496 views
Code formatter / beautifier for bash (in command line)?
Looking for a command line code formatter that can be used for bash code. It must be configurable and preferably usable from command line.
I have a big project in bash, which I need to use Q in mind ...
0
votes
3answers
92 views
How to change the way eclipse formats my code to a more cleaner format.(Beautify or clean up my code :java)
My eclipse is formatting code like shown below and causing my code to be long having more lines of code eventhough it is not.
// Inserting Person record
if (personDTO.getInsertPerson() != null
...
0
votes
4answers
162 views
Conditional Streamwrite in C#
Say I have a list of member, each of which is a custom object:
public class pail
{
public string milk;
public string water;
public string butter;
public string beer;
}
public class ...
0
votes
3answers
98 views
Java integer maths to loop from 0-4 continuously
Is there a nicer way to do the count I'm doing below?
I'm sure this must be possible with modulus or something. I'm looking for someway to manipulate i instead of using the extra variable x. (to ...
9
votes
1answer
286 views
Will excessive commenting of code slow execution? [duplicate]
Possible Duplicate:
Do comments slow down an interpreted language?
Will there be noticeable performance degradation in the execution of a large .py file if more than 75% of the lines of ...
0
votes
2answers
101 views
Code Beautification: Concatenating Multiple Vars and Strings in Ruby
self.homePostalAddress = self.mozillaHomeStreet + "$" + self.mozillaHomeLocalityName + "$" + self.mozillaHomePostalCode + "$$" + self.mozillaHomeCountryName
I have this line of code and I'd like to ...
0
votes
1answer
55 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 ...
3
votes
1answer
3k views
Windows batch command to ignore case sensitivity in variables
I have a set of variables I allow some people I work with to edit. These are True (T) and False (F) values, but I have some people that insist on putting t and f instead of the upper case values ...
3
votes
0answers
71 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
2answers
1k 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
332 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 ...
0
votes
3answers
680 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 ...
2
votes
3answers
52 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?
0
votes
1answer
68 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 ...
5
votes
3answers
2k 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 ...
1
vote
7answers
254 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 ...
2
votes
3answers
1k 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 ...
0
votes
1answer
2k 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 ...
4
votes
3answers
538 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 ...
2
votes
1answer
799 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>, ...
0
votes
1answer
483 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
583 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 ...
9
votes
3answers
701 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 ...
2
votes
3answers
218 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 ...
0
votes
1answer
88 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.
2
votes
1answer
357 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 ...
5
votes
4answers
2k 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 ...
7
votes
1answer
5k 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 ...
0
votes
2answers
210 views
Controlling code beautifing in emacs
How can I get Emacs to put padding spaces around opening brackets and operators on indentation ()?
2
votes
1answer
356 views
Sort 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
183 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>
...
9
votes
4answers
3k 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;
...
8
votes
1answer
210 views
Writing 'CONTAINS' query using LINQ
Given the output of query:
var queryResult = from o in objects
where ...
select new
{
FileName = o.File,
...
42
votes
8answers
29k 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, ' +
...
0
votes
3answers
131 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 ...
1
vote
3answers
189 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
2
votes
5answers
790 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
9
votes
4answers
2k 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 ...
125
votes
5answers
65k views
Best C++ Code Formatter/Beautifier [closed]
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, ...



