3
votes
5answers
110 views
What are the overall most valuable/profitable programming expertises?
Hi,
I would like to know if it's possible to point it out, and if so If anyone would know to summarize, considering things well beyond the basics and expectable of course, what wo …
1
vote
9answers
94 views
Pros and Cons explicitly setting enum field’s values
Is it preferable to explicitly set enum's fields instead of just defining their names?
E.g. any pros and cons for Enum1 vs Enum2?
Enum1:
enum SomeEnum
{
Something1 = 0,
So …
26
votes
14answers
888 views
Why is amount of bits always(?) a power of two?
We have 8-bit, 16-bit, 32-bit and 64-bit hardware architectures and operating systems. But not, say, 42-bit or 69-bit ones.
Why? Is it something fundamental that makes 2^n bits a …
11
votes
4answers
351 views
Why is (a | b ) equivalent to a - (a & b) + b?
I was looking for a way to do a BITOR() with an Oracle database and came across a suggestion to just use BITAND() instead, replacing BITOR(a,b) with a + b - BITAND(a,b).
I tested …
1
vote
2answers
65 views
What really is ‘good enough’ for a late project?
It seems like management always is saying how the project is late, then we have to figure out what is good enough to go live fast. The problem I find is that we tend to focus on th …
9
votes
2answers
116 views
Can liftM differ from liftA?
According to the Typeclassopedia (among other sources), Applicative logically belongs between Monad and Pointed (and thus Functor) in the type class hierarchy, so we would ideally …
8
votes
11answers
451 views
Optimization! - What is it? How is it done?
Its common to hear about "highly optimized code" or some developer needing to optimize theirs and whatnot. However, as a self-taught, new programmer I've never really understood wh …
0
votes
4answers
145 views
Asymptotic Notation - does n (log n) (log n) simplify?
If I have an algorithm that takes n log n steps (e.g. heapsort), where the steps take log n time (e.g. comparison/exchange of "big" integers in the range 0 to n-1), what is the asy …
116
votes
52answers
6k views
Storing Images in DB - Yea or Nay?
So I'm using an app that stores images heavily in the DB. What's your outlook on this? I'm more of a type to store the location in the filesystem, than store it directly in the DB. …
2
votes
3answers
133 views
What does “Stereotype” mean? [closed]
Possible Duplicate:
What’s the difference between a stereotype and a class inheritance in UML?
What does "Stereotype" mean? Is it a concept of OOP?
59
votes
28answers
3k views
are there any O(1/n) algorithms?
Or anything else which is less than O(1)?
7
votes
8answers
273 views
Bootstrapping a compiler: why?
I understand how a language can bootstrap itself, but I haven't been able to find much reference on why you should consider bootstrapping.
The intuitive answer is that the languag …
71
votes
23answers
7k views
Big-O for Eight Year Olds?
I'm asking more about what this means to my code. I understand the concepts mathematically, I just have a hard time wrapping my head around what they mean conceptually. For examp …
4
votes
4answers
104 views
Understanding word alignment
I understand what it means to access memory such that it is aligned but I don’t understand why this is necessary. For instance, why can I access a single byte from an address 0x…1 …
19
votes
36answers
2k views
Should we care if a prospective hire understand Big O notation?
A colleague of mine caused a long e-mail conversation by saying:
Of the probably 30+ people I’ve given a phone interview to, not a one (including people with Masters degrees in CS …
