console.log("double"); vs. console.log('single'); I see more and more JavaScript libraries out there using single quotes when …
javascript string conventionsPossible Duplicate: What do “branch”, “tag” and “trunk” really mean? What is a trunk, branch and tag in Subversion and …
svn branch tags conventions trunkIn Python, I've seen two variable values swapped using this syntax: left, right = right, left Is this considered the standard …
python syntax swap conventionsI'm facing a particular line that is 153 characters long. Now, I tend to break things after 120 characters (of course, this …
java coding-style conventions line-breaksI've got a large-ish class (40 or so methods) that is part of a package I will be submitting as course-work. …
java methods conventionsIs there some one-liner bridge method to dump a given Enumeration to java.util.List or java.util.Set? Something …
api collections conventions javaI read once that git commit messages should be in the imperative present tense, e.g. "Add tests for x". …
git git-commit conventions commit-messageWhat is the "one [...] obvious way" to add all items of an iterable to an existing set?
python set conventions iterableWhat is the convention for an infinite loop in Java? Should I write while(true) or for(;;)? I personally would …
java infinite-loop conventionsWhile coding python I'm using only 2 spaces to indent, sure PEP-8 really recommend to have 4 spaces, but historically for me …
python indentation conventions pep8