7
votes
8answers
247 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 equivela …
0
votes
7answers
45 views
Where I can find good Spring project example with Hibernate?
I need to make project with Spring + Hibernate, where I could find good example project how basic things are done?
7
votes
10answers
265 views
Impressing Ruby example
Hi,
in some days I am giving a talk about a Rails project at university and I want to introduce the audience to Ruby.
I want to show them one or two really nice code examples to …
1
vote
2answers
126 views
Python: next() function
I'm learning Python from a book, and I came across this example:
M = [[1,2,3],
[4,5,6],
[7,8,9]]
G = (sum(row) for row in M) # create a generator of row sums
next(G) # …
1
vote
3answers
62 views
PHP5 OOP Tutorial or examples
Hello,
I am currently trying to get my head around OOP in PHP, I understand the basic concepts etc.
Up to this I have been working for tutorials and books.
What I am looking for i …
1
vote
4answers
67 views
Filtering odd numbers
M = [[1,2,3],
[4,5,6],
[7,8,9]]
col2 = [row[1] + 1 for row in M if row[1] % 2 == 0]
print (col2)
Output: [3, 9]
I'm expecting it to filter out the odd numbers, but it …
4
votes
3answers
145 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 …
1
vote
4answers
106 views
Good problem domain for introduction to OO project?
I'm working with someone who's looking to get back into programming after several years of IT support work. They know all the iterative programming basics and have used them frequ …
0
votes
3answers
140 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
1answer
55 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 …
0
votes
4answers
35 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 …
1
vote
2answers
208 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
2answers
24 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 …
0
votes
3answers
75 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
140 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:
…
