40
votes
26answers
2k views
Why does it seem that most programmers tend to write all their code at the lowest possible level of abstraction?
In my thirty years of programming experience, it seems to me that the vast majority of the source code that I have read, and the vast majority of the programmers that I have encountered, tend to write …
10
votes
4answers
189 views
In VIM, is it possible to use the selected text in the substitute clause without retyping it?
Let's say I have a word selected in visual mode. I would like to perform a substitution on that word and all other instances of that word in a file by using s//. Is there a way to use the …
5
votes
2answers
363 views
In VIM, how do I apply a macro to a set of lines?
I have a file with a bunch of lines. I have recorded a macro that performs an operation on a single line. I want to repeat that macro on all of the remaining lines in the file. Is there a quick way …
4
votes
7answers
199 views
How should methods updating database tables be unit tested?
I have an application that is database intensive. Most of the applications methods are updating data in a database. Some calls are wrappers to stored procedures while others perform database updates …
3
votes
3answers
66 views
How to save a program’s progress, and resume later?
You may know a lot of programs, e.g some password cracking programs, we can stop them while they're running, and when we run the program again (with or without entering a same input), they will be …
