3
votes
6answers
107 views
Using Polymorphic Code for Legitimate Purposes?
Hi,
I recently came across the term Polymorphic Code, and was wondering if anyone could suggest a legitimate (i.e. in legal and business appropriate software) reason to use it in a computer program? …
7
votes
8answers
277 views
Understanding Generators in Python?
Reading the Python cookbook at the minute and currently looking at generators. I'm finding it hard to get my head round.
As I come from a Java background, is there a Java equivelant? The book was …
150
votes
78answers
11k views
Best ways to teach a beginner to program?
Original Question
I am currently engaged in teaching my brother to program. He is a total beginner, but very smart. (And he actually wants to learn). I've noticed that some of our sessions have …
1
vote
2answers
49 views
Understanding GUIDS, updates, and patches with Windows-Installer
Hi, I'm learning about Windows-Installer and Wix, and have a number of questions related to how it works:
If a component GUID changes, but the same files are in the component, what happens on a …
1
vote
5answers
174 views
2d Map based tile game engine
Hello, I'm wondering if there is any map creator tool out there that can create terrains for 2d isometric games and export them as some form of xml or other open format document.
For eg. You would …
1
vote
3answers
203 views
CouchDB a real world example
Hello stackoverflow gurus,
Tonight in my daily tech googling I came across couchDB, after seeing tons of presentations about how it perform ten to hundred times better then any RDBM, how it would …
1
vote
1answer
32 views
How does the IIS 7 / ASP.Net pipeline work?
From an HTTP request all the way to my files (like .asmx)... what are modules, handlers, app pools... etc...
I don't want to ready a chapter about it. Just a summary paragraph.
1
vote
4answers
108 views
Concept Checking change in C++?
I'm porting over some code from one project to another within my company and I encountered a generic "sets_intersect" function that won't compile:
template<typename _InputIter1, typename …
1
vote
6answers
149 views
Old concepts with new names (namely REST and Cloud computing)
It seems that SaaS and Cloud computing are old concepts with new names, and I am curious if I am wrong.
For cloud computing you can look at: …
1
vote
2answers
42 views
ECommerce, products in category and category browsing
Hi Everyone,
I am building an EC website for a customer and the project manager came with some strange ideas and I am struggling to actually implement what he sold to the client.
Here comes my main …
21
votes
50answers
2k views
What was the most difficult concept you had to grasp throughout your entire software development career? [closed]
And how did you understand it at the end? What kind of efforts and skills helped you solve it at the end?
Edit: Adding a list of the skills proposed in answers ( with popularity > 3)
Understanding …
14
votes
8answers
1k views
C++0X Concepts are gone. Which other features should go too?
As you may have heard, the last meeting of the C++ standards committee voted to remove concepts from the next C++ standard. Of course, this will affect other features and would seem to throw the …
1
vote
2answers
174 views
How to require certain concepts in C++ code?
How do I require and check that an argument is a certain concept in C++?
For example, the random_shuffle function in the algorithm header requires that its arguments are RandomAccessIterators:
…
24
votes
10answers
1k views
What defines “pythonian” or “pythonic”?
I want to begin to learn Python, and I've seen that phrase come up here before, but I don't know exactly what it means. I've read some websites on Python scripting, but I don't recall ever seeing that …
7
votes
3answers
247 views
What’s the difference between C++0x concepts and The Boost Concept Check Library (BCCL)?
Concepts didn't make the C++0x standard, but Boost still provides The Boost Concept Check Library (BCCL). I guess that BCCL doesn't cover everything that was meant to into the C++0x standard. What is …
