Search Results

12
votes

How do you feel about code folding?

9 out of 10 times, code folding means that you have failed to use the SoC principle for what its worth. I more …
3
votes

Why all the Active Record hate?

I love the way SubSonic does the one column only thing. Either DataBaseTable.GetList(DataBaseTable.Columns.ColumnYouWant) , or: Query q = Da …
1
vote

Is ReSharper worth the adjustment, is there a good tutorial for 4?

When you have written the first Repository class in your system just to your liking, and you smash down Ctrl+Shift+R, and choose extract interface, you understand why ReSharper is the good stuff. …
3
votes

Who in the software world do you admire the most?

<3 Jeff <3 I really admire the fact that a person can be both a very competent software developer, and still write interesting posts about the subject without drowning it in jargon. …
0
votes

What are the most common things you should be able to do in a programming language?

I'd say that it is evaluating an expression. Without expressions, no program flow. Without program flow, no logic. …
1
vote

Who writes the documentation?

User documentation is written by the usability testers. Sysadmin documentation is written together by the developers and sysadmins. Development docs? O_o …
3
votes

One large monitor or dual-monitor setup?

I really prefer dual monitors. I find it to be more productive, since you can have code on one monitor, and all the other stuff on the other. Say you're debugging some software. Wou …
3
votes

When do you decide to walk?

Some questions to ask yourself: Where will I grow the most as a software developer? Is there a risk in taking the new job that I cannot take? Is the new employer …
0
votes

What are you currently using for data access?

I usually create a DataTier with LiNQ. It consist of repositories that implement composite interfaces, so I have total flexibility on how to use them. IPersonRepository : IR …
0
votes

What are some viable alternatives to BizTalk Server?

I have no direct experience with JitterBit, but I have heard very good things from coworkers. …
26
votes

Reasons not to build your own bug tracking system

I would want to turn the question around. WHY on earth would you want to build your own? If you need some extra fields, go with an existing package that can be modified. Special report? …