0
votes
2answers
44 views
Objective C concept explanation
I have the following code:
- (void)setItem:(Todo *)newItem {
item = newItem; }
Why is it that I can't do
- (void)setItem:(Todo *)newItem {
self.item = newItem; } ?
I have item declared in …
8
votes
9answers
303 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 …
2
votes
5answers
89 views
beginning web programming
I've been programming in the classic way: read input, process data, print output, for 4+ decades. Web programming is not quite like that...
I've done some HTML and created some pages. But where do I …
1
vote
1answer
170 views
Core animation code structure/conventions
In learning Core Animation, I learned very quickly that if you don't do it right, you get really weird undefined behavior. To that end, I have a few questions that will help me conceptually understand …
1
vote
5answers
196 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 …
2
votes
7answers
2k views
What is mutex and semaphore in Java ? What is the main difference ?
What is mutex and semaphore in Java ? What is the main difference ?
3
votes
6answers
113 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? …
1
vote
2answers
60 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 …
9
votes
4answers
1k views
How Does Differential Execution Work?
I've seen a few mentions of this on SO, but staring at Wikipedia and at an MFC dynamic dialog demo did nothing to enlighten me. Can someone please explain this? Learning a fundamentally different …
2
votes
4answers
161 views
Database Programming Concepts
So I've read a couple books on SQL and I've used SQL and created databases, but really nothing advanced, a couple tables, a couple joins, that sort of thing.
So now I am working on a project that is …
1
vote
1answer
35 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.
2
votes
3answers
239 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
6answers
153 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
43 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 …
1
vote
4answers
113 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 …
