2
votes
5answers
73 views
Should I put custom code inside Microsoft’s BCL/FCL namespaces?
A .NET programmer is allowed to wrap code inside namespaces and also to use a namespace already defined, even those defined by Microsoft in the Framework or Base Class Library. For example if I were …
4
votes
6answers
150 views
State of Ruby on Rails Community and Framework
As an exercise I have spent the past 2 months learning Ruby on Rails. In learning RoR I relied heavily upon Agile Development with Rails. This book was an invaluable resource. From a learning …
3
votes
5answers
175 views
Start a software house of my own… many doubts… [closed]
Hello,
I'm a young programmer, 29 and I'm quite talented. So far I've been working in many places and companies. Unfortunately it happens that I live in Italy. You may or may not know, but my country …
0
votes
2answers
42 views
To what extent can optimisation replace Macros, Stack allocation … ?
There is a lot of discussion about the lack of macros in some languages, and the inefficiencies that can arise. Perhaps the most common example is the guard before a log statement.
To what extent …
0
votes
2answers
120 views
Coding Standard [closed]
What do you gurus consider to be a very good coding standard in terms of PHP programming? Please advise!
0
votes
2answers
32 views
Where best to place alert/notifications on a website?
What do I mean by alert/notification?
Example is an instant-messaging application, on the event when a user/friend comes online, you receive an alert that they are online - this alert is what I'm …
1
vote
6answers
81 views
When does technical documentation violate the DRY principle?
We had a project where things got in a bit of a mess a while ago because of inexperienced developers.
The main issue was the fact that the programmers rushed directly into writing the code after …
3
votes
7answers
191 views
Casting ints to enums in C#
There is something that I cannot understand in C#. You can cast an out-of-range int into an enum and the compiler does not flinch. Imagine this enum:
enum Colour
{
Red = 1,
Green = 2,
…
1
vote
14answers
480 views
What is the fastest sorting algorithm in C++?
If I need to sort 150,000 entries what would be the fastest way for a beginner in C++ to sort that data? All I have learned so far is bubble sort and I know that isn't that efficient.
thanks
nmr
4
votes
2answers
172 views
In your opinion, why is the Go Programming Language useful? [closed]
Possible Duplicate:
What’s your take on the programming language Go?
I was looking at Google's Go Programming Language (Website) and thought, How would this be useful today, in a world …
1
vote
5answers
152 views
What standards do you use? [closed]
This question recently came up in work, posed by directors and filtered down the chain
"What standards do you use on a daily basis?"
(This was actually posed to all engineers not just software guys)
…
2
votes
5answers
61 views
How to create the first administrator user of an application?
Consider a simple web application that accepts user logins. Each user can have a profile (read-only, normal, administrator etc) and each profile dictates the user’s rights (he can only look at data, …
1
vote
4answers
115 views
What is your take on SPDY, Google’s experimental HTTP replacement?
Google is working on an experimental protocol called SPDY (pronounced "speedy") that supposedly makes the web twice as fast.
The problems with HTTP that SPDY tries to address are:
only a single …
1
vote
3answers
126 views
Pragmatic Programmer Techniques - who, what, where…
Few questions. But all very much related.
1) How many of the SO crowd are using 'pragmatic programmer' tools/methods/techniques including, but not limited to (some of the obvious):
a) Source code …
2
votes
3answers
66 views
Dependency Injection - is this how it’s meant to look?
Our project is using constructor-based Dependency Injection (we're using Unity as our container) and we have a number of constructors which have acquired a large number of parameters.
For example:
…
