0
votes
3answers
54 views
Where can I find examples of Quartz 2D drawing on the iPhone?
Hi,
I am going to develope the 2D game in Iphone using Quartz.
what is the main Difference between Quartz and QuartzCore?
I have searched a lot over the internet, but only able …
0
votes
0answers
29 views
Boost Serializing of Object containing Map (with object values) and Multimap (with std::string values): what is needed?
See below a main() and two very simple classes. Then per Boost serialization (and what is shown) my questions are:
1) Does class B need the normal overloaded stream insertion op …
3
votes
2answers
59 views
rich domain model example
Hi,
I'm looking for a simple example to illustrate the benefits of using a rich domain model. Ideally, I'd like a before and after code listing (which should be as short as possib …
0
votes
4answers
33 views
Any References to Example Projects
Currently I am a moderate (in terms of difficulty) when it comes to PHP. I would like to test my knowledge by developing certain utilities using PHP (and maybe SQL). But the proble …
0
votes
2answers
19 views
Apache: I want to enable SSI. Can anyone furnish an example config file?
Yes - Google abounds with information about configuring Apache to support SSI.
But unfortunately, I still cannot seem to get it right.
My questions:
Can anyone furnish me …
1
vote
2answers
97 views
JPA one-to-many relationship question (relations on one entity)
In this JPA example there is a code:
@OneToOne(cascade=CascadeType.ALL)
private Deity mother;
@OneToOne(cascade=CascadeType.ALL)
private Deity father;
@OneToMany(cascade=Cascade …
0
votes
1answer
21 views
Open source non-trivial SOA examples
Hello,
I've been looking for open source examples of SOA applications, but most of the times I find simple tutorial hello world style examples that introduce the tricks of the res …
0
votes
1answer
94 views
a simple/practical example of fuzzy c-means algorithm
i a writing my master thesis on the subject of dynamic keystroke authentication. to support ongoing research, i am writing code to test out different methods of feature extraction …
0
votes
3answers
72 views
Unexpected result in a simple example
def solve(numLegs, numHeads):
for numSpiders in range(0, numHeads + 1):
for numChicks in range(0, numHeads - numSpiders + 1):
numPigs = numHeads - num …
0
votes
5answers
138 views
Understanding an example
def solve(numLegs, numHeads):
for numChicks in range(0, numHeads + 1):
numPigs = numHeads - numChicks
totLegs = 4*numPigs + 2*numChicks
if totLegs == numLegs:
…
0
votes
2answers
56 views
Unexpected result on a simple example
# Barn yard example: counting heads and legs
def solve(numLegs, numHeads):
for numChicks in range(0, numHeads + 1):
numPigs = numHeads - numChicks
totLegs = 4*numPig …
1
vote
1answer
73 views
Guideline for code examples in job applications
Very often in job offers one is asked to provide some 'example code' together with the CV. I found it kind of difficult do decide which code is a good choice.
Of cause it has to b …
35
votes
12answers
2k views
Where can I find good examples of Rails applications?
I would like to get source for a small, well written rails app to modify and "play with" as I learn how to program. I have found hundreds of open-source apps, but I don't know whi …
0
votes
3answers
292 views
simple C++ hash_set example
I am new to C++ and STL. I am stuck with the following simple example of a hash set storing custom data structures:
#include <iostream>
#include <ext/hash_set>
using …
0
votes
1answer
49 views
Looking for a cocotron example
I have been having a lot of trouble getting cocotron to create a simple window app that can be compiled on the mac and will produce an that will run on the pc. Does anyone have a …
