vote up 4 vote down star
1

I came across this question on joining a list of strings. Many of the answers struck a nerve with me. A fair number of the posters didn't seem to know about StringUtils.join. I consider myself lucky to have happened across StringUtils.join on a google search.

StringUtils.join concatenates a List or collection of Strings using a delimiter, almost exactly the way join works in python. No more ugly for loops, join makes code easier to write and easier to read. It makes java a better language.

Being truly passionate about the virtues of StringUtils, I set out to gain enough reputation points to upvote the "correct" StringUtils answer.

Here is your chance, what little known programming wisdom/tricks are you extremely passionate about? What lengths have you gone to promote them?

flag
3  
@ethan--This ought to be Community Wiki – Michael Haren May 4 at 20:44
1  
@Michael ... I think that kind of defeats his stated purpose. Besides, now that the rep cap is in place I don't really see the point of cajoling every one who posts something other than a "real" question into marking it Wiki, after all, it's not like they, or anybody else, is going to gain any reputation. – Aaron Maenpaa May 4 at 20:55
2  
The stated purpose seems to be collecting a list of tricks. Questions like this, with no "right" answer, are typically tagged "Community Wiki" so they don't become reputation farms. More in the FAQ, though it's admittedly not as conclusive as I'd like: stackoverflow.com/questions/128434/… – Michael Haren May 4 at 21:01
How does it defeat his stated purpose? And if nobody cares about rep, as you suggest, he could just as well make it CW. – Neil Butterworth May 4 at 21:01
make it CW if you want, doesn't matter to me as people see it, post interesting answers and we all learn something. – e5 May 4 at 21:03
show 2 more comments

closed as not a real question by Mehrdad Afshari, Michael Haren, SilentGhost, Tim Jarvis, McWafflestix May 5 at 6:58

8 Answers

vote up 3 vote down check

JavaScript's Array.slice()

Can be used to make a copy/clone of an array (not a reference to the original)

var foo = ['one','two','three','four'];
var bar = foo.slice();
//bar is now a copy of foo
link|flag
vote up 4 vote down

That's more a failure of Java documentation and verboseness than a little known programming wisdom/trick.

A string joining function is practically the most efficient way to concatenate strings and is an often used tool in any language.

link|flag
The problem stems down to the fact that people are not aware of the utility class, since the correct design is to not put too much stuff in String. It's a well known problem. – Uri May 4 at 20:48
interestingly its in an apache utility class, not java. – e5 May 4 at 21:51
vote up 4 vote down

I have to say that I would not call familiarity with a specific method in an obscure part (to many developers) of an API to be "programming wisdom".

The problem of coping with with large APIs has been widely researched, at least in academia. It's been demonstrated that there is often a disconnect between the terms in which a developer thinks about a functionality he wants and the ways in which it is captured in signature and online. This is why many google searches fail. There are also strategies and tools to alleviate that.

The problem here stems down to the fact that people are not aware of the utility class, since the correct design is to not put too much stuff in String. It's a well known problem.

I think that there are many valuable wisdom nuggests around about techniques. For example, performance of dealing with strings in Java. I think books like Effective Java do a good job of collecting some of these gems.

link|flag
1  
It isn't even an obscure part of the API; it's a third-party library. – Adam Jaskiewicz May 4 at 20:59
You're right. I did my research on the usability of the Java core and Apache commons libraries, so I tend to blend the two. – Uri May 4 at 21:01
vote up 2 vote down

I 'd have to say Smart Pointers. But I don't think that they count as a "trick". It's just something I heavily use and don't generally see around me.

link|flag
vote up 1 vote down

Some general 'wisdom', that I find also applies to programming:

  • The current step is the most important: If I find the current step ugly, then something must be wrong; either with the project, the implementation, or how I handle it.
link|flag
vote up 2 vote down

To answer your last question one of the things that I am VERY passionate about is self documenting code. This helps is so many ways when someone writes programs. It makes it easier to:

  1. Understand the current code
  2. Modify the code (same creator)
  3. Modify the code (different person)

I cannot even begin to count the number of hours that I have wasted trying to figure out what someone's code was trying to accomplish because they used poor names for EVERYTHING.

I actually had to modify a piece of code one time that had several classes in it. Each class was a number like public class 1, public class 2, etc. It took me forever to figure out what was going on because I kept getting lost on what class was what.

If people would just start using self documenting code I believe that the industry could shave 20-30% (if not more) off of the time required to maintain source code.

link|flag
vote up 2 vote down

I think the best programmers wisdom I can think of is 'simple is better than complex'.

That's part of the Zen of Python, but I know I heard it before I ever heard of Python. It's a theme that runs through many classical texts on software engineering.

link|flag
vote up 2 vote down

I'm not sure if this is 'little known' but in c#...

Implementing BindingList(T) instead of List(T) when creating custom collections. Everything is there from List, and you can bind to any UI elements you like when the time comes (without implementing IBindingList yourself).

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.