Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
10answers
1k 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 variable names such as x, ...
16
votes
6answers
1k views

How to determine what log level to use? [closed]

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 also seen code that ...
12
votes
11answers
801 views

Is it better coding practice to define variables outside a foreach even though more verbose?

In the following examples: the first seems more verbose but less wasteful of resources the second is less verbose but more wasteful of resources (redefines string each loop) Which is better coding ...
10
votes
1answer
179 views

Shorthand for referring to Perl/Moose package names?

In both Python and Java we have import to eliminate the repetition of fully-qualified package/module names throughout code. Is there any equivalent in Perl/Moose? I think it would really make Moose ...
9
votes
8answers
485 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 the faster you can ...
8
votes
6answers
503 views

Why does XML have such verbose closing tags?

Yes, this probably shouldn't bug me. But it does!! Why does XML have such verbose closing tags? Not only does it make documents uglier for humans, it needlessly introduces the risk of mismatched (or ...
8
votes
17answers
720 views

Why does language verbosity have a negative connotation?

I hear people comment on Java's verbosity (and other languages) as if it were a bad thing, why? To me it makes code easier to understand. Less typing seems like a really trivial argument.
4
votes
1answer
635 views

Thread exiting message in .Net MVC console

I get this message: the thread has exited with code 0 sometimes in the output window in debug mode when running a .net mvc c# application. The application still works after these messages, it does ...
4
votes
5answers
1k 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) return 0; ...
4
votes
12answers
907 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; } which is easily ...
4
votes
8answers
359 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 other hand, my boss ...
4
votes
8answers
792 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(n:int, ...
3
votes
4answers
70 views

Is there any varargs array construction method in Java?

There's the very useful Arrays.asList(): public static <T> List<T> asList(T... a) { return new ArrayList<T>(a); } But there's no Arrays.array(): public static <T> T[] ...
3
votes
3answers
211 views

Increase verbosity of Perl warnings

Is there anyway to increase the verbosity of warning in Perl ? I use this to generate warnings. #!/usr/bin/perl -w I am especially interested in the following which I hit occasionally. Is there ...
3
votes
5answers
469 views

Usage patterns for private, static, final, public, abstract keywords in java

I know what all of these do except for abstract. I'm currently in the process of teaching myself java with what I consider a middle-school-level education (my highschool was in a bad neighborhood so ...
3
votes
1answer
406 views

Mercurial: make `hg log` not show files?

I'm (ab)using Mercurial to manage thousands of files that change often, but I'd like to be able to view the log (hg log) without having my term filled with all of the filenames that changed on each ...
3
votes
1answer
174 views

Maven: How can I stop the deploy plugin from logging upload progress?

How can I make it so Maven doesn't spam upload progress in the Hudson console? Uploading: ...
3
votes
1answer
240 views

Python, unittest: Can one make the TestRunner completely quiet?

Is there a way to make unittest.TextTestRunner completely quiet, meaning that it never prints to output on its own? Even at verbosity=0 it prints results when done. The thing is that i want to ...
3
votes
5answers
195 views

Is there a way to reduce the verbosity of using String.Format(…, p1, p2, p3)?

I often use String.Format() because it makes the building of strings more readable and manageable. Is there anyway to reduce its syntactical verbosity, e.g. with an extension method, etc.? ...
3
votes
1answer
507 views

Verbosity in boost asio using ssl

Is there a way to make ssl handshake more visible to me using boost asio? I am getting an error: "asio.ssl error". I just want more verbosity, because this message means almost nothing to me. ...
3
votes
2answers
339 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 it under the terms ...
2
votes
1answer
41 views

bash: override echo to print a custom prefix in a script

I have some lengthy scripts calling each other and I want their output to be more descriptive. The idea is to customize the echo command for each script with something like below. My question is, how ...
2
votes
5answers
140 views

Simplify java if statement

Can I simplify this java if construct? It seems too verbose to me, I'd like to have it shorter. A is persistent Object, which will be null if it's context is accessed first time. Than A is ...
2
votes
1answer
114 views

How to increase verbosity in python unittest?

I have a test case class like this one: import unittest import sys class Test(unittest.TestCase): def test_a(self): pass def test_b(self): pass # etc if __name__ == ...
2
votes
1answer
528 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. The first place ...
1
vote
2answers
96 views

Verbosity level in simple Logger implemenation C++

Im currently implementing a simple Logger for a project due my studies in C++. I already got a Logger base class, as some different appenders and the next step is to implement verbosity levels. The ...
1
vote
2answers
95 views

How to make C# code using ADO.NET, IDbConnection and IDbCommand less verbose?

Is there anyway I can make this database code any shorter ? It works fine, but seems very verbose and repetitive. Wrapping some of it in a method would be better I suppose, but is there other ...
1
vote
1answer
76 views

Is this entity definition model too verbose?

I'm developing video game, and I'd like it to be highly modable. Currently, all my game logic is defined in Python, my engine logic in C++, and my data in XML. I'd like to explain to you how an entity ...
1
vote
1answer
28 views

Is there a way to get extra warnings (perl-like runtime,) for Objective-C?

I've been doing some programming in perl lately, and I found that it throws a really useful warning - "Use of uninitialized value" when you try to do a compare / print / regex etc with a value that ...
1
vote
1answer
64 views

Overriding inherited tasks in MSBuild

I have an inherited MSBuild script, which calls targets that I am not allowed to change. However, some of these targets call methods that are currently too verbose in the output window - for example, ...
1
vote
1answer
85 views

Is there a way to make RSPec's error messages be more insightful?

I am often at a loss when trying to debug, since RSpec only tells me that expected redirect to "/user_session/new", got no redirect expected success? to return true, got false. but since It doesnt ...
1
vote
1answer
57 views

javac flag to print only the error locations

Is it possible to make javac output only the error locations and the error messages, and hide the source code dump? Now I get: $ javac t.java t.java:1: <identifier> expected class { ^ ...
1
vote
1answer
46 views

Are Dynamic Exception Messages a Good Idea?

I'm designing an infrastructure for a project and I've been wondering if it'd be a good idea to format the exception's message with parameters, making it dynamic. This means, on the one hand, that ...
1
vote
1answer
407 views

Define a verbose name for an entire Django model

I want to create a model named Model. I'm pretty sure this isn't allowed, so I'm forced to use some other term for the model name. Let's say I call it Mdl. However from the user perspective, I want ...
1
vote
1answer
720 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): suite = ...
1
vote
1answer
861 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" ...
0
votes
1answer
31 views

Default configuration in python/django

I'm working on a reusable django app, which I want to make configurable by GLOBAL VARIABLES in settings.py. I want these to be optional so I've provided default values inside my app in a conf.py ...
0
votes
0answers
42 views

Verbose sqlite database

When I'm doing some inserts, deletes or updates in my sqlite database, using sqlite3 command in Linux I don't know after performing the command what happened, how many rows were deleted, updated, ...
0
votes
2answers
97 views

How to change verbosity of the MSBuild task?

I'd like to have a different verbosity for the msbuild project invoked from the commandline, and those invoked by the MSBuild task from within the project. For example: Inside my.proj: <Target ...
0
votes
0answers
91 views

Enable stack trace in Jetty logs

I'm running Artifactory, which is using Jetty a web server. Sometimes the server is throwing a http 500 error. However there's no accurate message with it. How do I tell Jetty to enable something ...
0
votes
2answers
127 views

Solution for Checkstyle verbosity?

In a code sample containing many getters and setters, the following CHECKSTYLE notations exist: /* CHECKSTYLE:OFF */ public void setDisplayName(final String displayName) { this.displayName = ...
0
votes
1answer
387 views

T-SQL: How can i use RAISERROR for Informational Output Without Causing Script To Error?

Okay so i've got a stored proc which does a bunch of things (not important). Now, the stored proc is quite verbose, it prints out a lot of things (progress, rowcounts, etc). As you all know, using ...
0
votes
1answer
56 views

Tips for writing the least verbose Visual C++ code you can in Visual Studio 2005?

While I realize that Visual C++ is a language lacking much of the syntactic-sugar that most of us new programmers are used to these days, VC++ 2005 must have some shortcuts that can decrease the ...
-4
votes
7answers
712 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 therefore is the most ...