0
votes
1answer
17 views
Authlogic with sinatra?
I couldn't find resources on how to use authlogic with sinatra. Or at least no documentation about a canonical way to do authentication with authlogic ...
Anyone has pointers to some tutorials, …
3
votes
19answers
304 views
Example of code generator you made from scratch?
What are some examples of code generators you have used? I think it's a cool idea, but I have trouble thinking of things they can do besides make a class based on an object's attributes/database …
0
votes
8answers
147 views
While loop example
x = y // 2 # For some y > 1
while x > 1:
if y % x == 0: # Remainder
print(y, 'has factor', x)
break # Skip else
x -= 1
else: # Normal exit
print(y, 'is prime')
This …
4
votes
3answers
86 views
python optparse, how to include additional info in usage output?
Using python's optparse module I would like to add extra example lines below the regular usage output. My current help_print() output looks like this:
usage: check_dell.py [options]
options:
-h, …
0
votes
2answers
24 views
Odd behavior of parser when trying sample grammar
I'm trying to get the feel for antlr3, and i pasted the Expression evaluator into an ANTLRWorks window (latest version) and compiled it. It compiled successfully and started, but two problems:
…
8
votes
9answers
318 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 …
7
votes
10answers
301 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 demonstrate how …
1
vote
7answers
94 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?
1
vote
2answers
137 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) # Run the iteration …
0
votes
3answers
316 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 to find out the MAC …
0
votes
2answers
60 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 respective middleware.
…
1
vote
4answers
136 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 frequently, but their …
1
vote
4answers
76 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 does the opposite.
4
votes
3answers
200 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 possible).
The before …
1
vote
3answers
104 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 is some good …
