7
votes
8answers
364 views
How to teach someone that less is more?
I work in a shop where the mentality/culture does not have any sense of the concept of "less being more" (i.e. the less code you have to maintain, the more flexible you can be, and …
1
vote
2answers
50 views
How to minimize the amount of place used by GPL copyright notice?
Gnu GPL page advocates a following header in each file of GPL project:
This file is part of Foobar.
Foobar is free software: you can redistribute it and/or modify
…
16
votes
9answers
566 views
Does functional programming mandate new naming conventions?
I recently started studying functional programming using Haskell and came upon this article on the official Haskell wiki: How to read Haskell.
The article claims that short variab …
3
votes
11answers
434 views
examples of useless/junk code and easy fixes
I recently came upon some code filed with the following
} catch (FooException e) {
//do something
} catch (BarException e) {
//do something
} catch (Exception e) {
throw e;
}
…
0
votes
1answer
78 views
What numbers can you pass as verbosity in running Python Unit Test Suites?
The Python unittest framework has a concept of verbosity that I can't seem to find defined anywhere. For instance, I'm running test cases like this (like in the documentation):
su …
3
votes
4answers
245 views
What is good practice for generating verbose output?
what is good practice for generating verbose output? currently, i have a function
bool verbose;
int setVerbose(bool v)
{
errormsg = "";
verbose = v;
if (verbose == v)
…
4
votes
8answers
441 views
Ruby-like Question: Make this function shorter (ActionScript 3)
I just wrote this incredibly verbose code to turn numbers like 2 into 02. Can you make this function shorter, please (maintaning the functionality)?
public static function format …
5
votes
8answers
281 views
I’m looking for a solution to the excessive verboseness of Java without using Groovy
I like how Groovy makes all of your instance variables and class variables public and writes getters and setters on your behalf. This saves a lot of unnecessary coding. On the othe …
1
vote
1answer
334 views
How to run an ASP.NET application with verbose debug messages of the ASP.NET runtime
How do I configure an ASP.NET application to write verbose log messages of what ASP.NET engine itself is doing. What I get with
<trace enabled="true"
pageOutput="false" …
1
vote
1answer
170 views
How verbose should names be for Model-View-ViewModel (MVVM) classes and instances?
In general, I prefer to be verbose with .NET class and instance names, but some times (to quote Mike Woodhouse):
Over-verbosity tends to conceal syntax, and syntax is important …
-2
votes
7answers
351 views
What is the most verbose code you have read/written?
I think the more verbose, the more beautiful code is. Code is meant to be read by computers and humans. Verbose, correct code therefore serves humans and computers best, and theref …
12
votes
5answers
461 views
How to determine what log level to use?
The log levels WARN, ERROR and FATAL are pretty clear. But when is something DEBUG, and when INFO?
I've seen some projects that are annoyingly verbose on the INFO level, but I've …
