0
votes
2answers
65 views
Stop Eclipse from mangling my comments
Is there a way to stop eclipse from mangling the comments in my source files?
My main issue is stopping it from word wrapping them. I've managed to configure eclipse to not word wrap any code but it …
0
votes
2answers
82 views
How make a better markdown for developer blog
I'm rebuilding my blog at http://www.elmalabarista.com/blog/. I have use in my previous version markdown and now I remember why I have almost zero code samples. Doing code samples in markdown is very …
0
votes
2answers
44 views
Should 2 executables compiled from the same source at different times have the same MD5SUM?
Should 2 executables compiled from the same source at different times have the same MD5SUM?
I have been evaluating Automated Code Formatting using Artistic Style.
One test I did was:
Do a Clean …
0
votes
3answers
56 views
An autoformat tool to automatically insert braces around single-line clauses?
So assuming that in our work environment we've decided that the One True Faith forbids this:
if (something)
doSomething();
And instead we want:
if (something) {
doSomething();
}
Is …
0
votes
3answers
149 views
Code Formatter: cleaning up horribly formatted jsp code
So I am working on a jsp/servlet that came to me and I'm looking at the jsp file and it is just a jungle of jstl tags, java code and html thrown together. At first it looked like someone ran the …
3
votes
4answers
266 views
code formatter for grails and Groovy?
I'm currently using a basic text editor to write my grails code. Does anyone know of a program that will automatically format code with indentation similar to indent does for C? I'd rather use a …
