Tagged Questions

0
votes
3answers
116 views

Code Review: Is this the most efficient/elegant way to recursively walk a tree

This is more of a general question so the answer does not have to be in C#. I have a general code structure below that I use to recursively walk a tree structure. In this particula …
2
votes
2answers
86 views

Where did string escape codes (\n, \t…) originate?

Purely wondering... since they're still around and in use in C# today... Where did the pattern of using string escape codes come from? What language did it first appear in? What l …
0
votes
1answer
45 views

Enforcing browsing through a proxy - trhough a servlet, java script or custom application

Hello, We have a proxy server that implements a set of functions. I would like to be able to enforce browsing through this proxy without setting the proxy settings in the browser. …
4
votes
6answers
97 views

Enums in the DB or NO Enums in the DB…

For me, the classic wisdom is to store enum values (OrderStatus, UserTypes, etc) as Lookup tables in your db. This lets me enforce data integrity in the database, preventing false …
2
votes
4answers
113 views

How to make sure person can handle new project?

You are hiring. Some person passed interview and answered most of your questions. But imagine your project is a complicated one. Is there a way to make sure person will handle it? …
2
votes
3answers
163 views

General programming - Decimal numbers, floats

I'm probably completely wrong, and I don't really know anything about it, but I have a question about decimal number data types in programming languages. I understand that floats a …
2
votes
3answers
149 views

using the git repository [closed]

i'm sort of a newbie in application programming... I recently heard of this git repository which gives me quite a significant control for my app which i would like to include... b …
19
votes
11answers
540 views

Why are there so many sites dedicated to programming and yet there are relatively few that actually describe the systems that they’re trying to produce?

There's a lot of sites out there that teach people how to build better software--but why is it that there are very few sites that actually give detailed descriptions of the domains …
0
votes
5answers
112 views

Open Source Service risky?

Is it risky to have dependency on a open source service? Unlike a open source dll or componenent the service obviously needs to be constantly running, therefore is it a business r …
10
votes
4answers
428 views

Where are the “Coding War Games” tasks from Peopleware?

In Peopleware, DeMarco and Lister write about the "Coding War Games", which was a project they ran between 1984 and 1986 (possibly longer) to help assess individual and workplace …
10
votes
22answers
571 views

If you are working in a non-English speaking country do you write your development documentation in your mother tongue?

I know that the "native" language of programming is English, but I was wondering on how many programmers dare to write the development comments/documentation in a language other th …
8
votes
14answers
469 views

Should unit test classes be kept under version control with the rest of the code?

If I create a test suite for a development project, should those classes be kept under version control with the rest of the project code?