12
votes
13answers
364 views
Why is “explicitness” considered a Good Thing?
I often hear people praise languages, frameworks, constructs, etc. for being "explicit". I'm trying to understand this logic. The purpose of a language, framework, etc. is to hide complexity. If it …
9
votes
3answers
105 views
Practical consequences of formal grammar power?
Every undergraduate Intro to Compilers course reviews the commonly-implemented subsets of context-free grammars: LL(k), SLR(k), LALR(k), LR(k). We are also taught that for any given k, each of those …
6
votes
4answers
185 views
Who invented the throw/try/catch[/finally] kind of error handling?
My questions are more of historical nature than practical:
Who invented it?
Which language used it first (and to what extent)?
What was the original idea, the underlying concept (which actual …
1
vote
1answer
20 views
Basic options with an Authorisation system?
Simple situation. An existing project will need authentication and authorization and I need to design it. First of all, I choose to divide the whole thing into two modules, one for authentication and …
4
votes
10answers
269 views
Why does ReSharper want to use ‘var’ for everything?
I've just started using ReSharper with Visual Studio (after the many recommendations on SO). To try it out I opened up a recent ASP.NET MVC project. One of the first and most frequent things I've …
4
votes
11answers
162 views
Is there an algorithm which prints out a shuffled list without actually modifing the list?
After reading this question I started to wonder: is it possible to have a shuffling algorithm which does not modify or copy the original list?
To make it clear:
Imagine you are given a list of …
2
votes
1answer
54 views
datatype programming
I know of "imperative" and "functional" programming but there was little I could find on "datatype" programming. Is there such a thing and how is it related to the other paradigms?
-1
votes
4answers
217 views
Recursive Sets vs Recursive Functions
What s the difference between a recursive set and recursive function?
6
votes
1answer
124 views
Developing my own RDBMS
I've always been fascinated by how these huge RDBMS servers can work for months, shuffling data all around without losing it, perform all kinds of queries and generally being very complex beasts.
I …
3
votes
8answers
276 views
From a coder’s perspective, what kind of project should I choose python over php for where both could do the job?
I've never used python before. I've used php for about 5 years now. I plan to learn python, but I'm not sure what for yet. If I can think of a project that might be better to do in python, I'll use …
122
votes
53answers
7k 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.
What do you think …
1
vote
7answers
114 views
How can I learn about compiler theory - online/free resources
I'm interested in learning - at depth - about compiler theory...
parsing
EBNF
LALR?
Are all terms I'm familiar with but don't really understand how to actually implement/use..
I'm looking for …
1
vote
4answers
122 views
What is the reason for not allowing in C++ a default value for a variable to be a non-static method or member of a class ?
I wanted to know why the default value for a variable for a method of a class, cannot be a non-static method or member of the same class.
Is there a reason for that ? Could not the compiler provide …
9
votes
4answers
158 views
Exactly what is the difference between a “closure” and a “block”?
I've found that lots of people use the words closure and block interchangeably. Most of these people can't explain what they're talking about.
Some Java programmers (even ones from really expensive …
1
vote
2answers
33 views
Not-mathematical description of NL-complexity
NL-Complexity appears to be related to NP-complexity, and i would like a non-mathematic explanation (being that i only have a passing familiarity with the level of mathematics used in that article). …
