1
vote
7answers
61 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
8answers
271 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 …
7
votes
10answers
288 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
3answers
73 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
2answers
128 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
4answers
70 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 …
1
vote
4answers
113 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
183 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 …
2
votes
1answer
66 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 …
4
votes
3answers
158 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
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 …
0
votes
1answer
39 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
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 …
1
vote
2answers
250 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
130 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 …
