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 …
1
vote
6answers
180 views
Structured programming and Python generators?
Note: This question mutated a bit as people answered and forced me to "raise the stakes", as my trivial examples had trivial simplifications; rather than continue to mutate it here …
1
vote
0answers
18 views
JSF action, value and bindig catalog generator
Hi to all!
I'm am looking for a simple tool that generates a catalog of all used action methods, values and bindigs. I'm working on a big JSF/RichFaces project and I lost the over …
1
vote
2answers
52 views
Is there a Ruby on Rails site thumbnail generator available?
I'm hoping to avoid building this if it already exists. Does anyone know of a plugin for Ruby on Rails that will generate a screenshot of a web site? Thanks in advance to anyone …
0
votes
1answer
18 views
Eclipse setting for generating getters and setters insertion point last member
It really annoys me already now... I can not find the setting to have by default insertion point at last member.
Why? Generating getters and setters would then be:
ALT+SHIFT+S -> …
0
votes
1answer
51 views
SQL to LINQ generator
Hi; I am new to LINQ and just wanna know; is there any application in which I type standard SQL and it gives me its representing statement in linq?
2
votes
3answers
122 views
How can I traverse a file system with a generator?
I'm trying to create a utility class for traversing all the files in a directory, including those within subdirectories and sub-subdirectories. I tried to use a generator because g …
0
votes
3answers
48 views
Restricting an entire symfony admin generator page according to credentials
I have a website with a large number of admin generators to take care of an assortment of tables. Within the realm of authenticated users, I want to be able to deny access, not jus …
1
vote
2answers
107 views
SQL query generator for Perl with stored procedures support
Current code base I'm working on is full of ad-hoc conditional string concatenations producing less than clear SQL queries. I want to make them maintainable, but since using DBIx:: …
1
vote
1answer
23 views
Tools to document SSIS workflows
I'm looking for a good tool to document SSIS workflows. Best would be if its not only text based documentation, some visual overview of what happens in the SSIS package would be ni …
1
vote
3answers
64 views
Nesting generator expressions in the argument list for a python function call
I like to use the following idiom for combining lists together, sometimes:
>>> list(itertools.chain(*[[(e, n) for e in l] for n, l in (('a', [1,2]),('b',[3,4]))]))
[(1, ' …
1
vote
2answers
137 views
Generators in C++ — invalid use of nonstatic data member
I sort of understand this, at least the function of generators (I've used them in Python). I understand how the switch statement and its content is formed. However, I get these err …
1
vote
2answers
101 views
Automatic PHP Documentation Generator
I am looking at any document generator for PHP that can actually read the source code and generate the documentation - instead of writing comments according to what the generator n …
2
votes
3answers
168 views
Python Reverse Generator
Hi,
I'm looking for a way to reverse a generator object. I know how to reverse sequences:
foo = imap(seq.__getitem__, xrange(len(seq)-1, -1, -1))
But is something similar possi …
1
vote
4answers
140 views
python html generator
I am looking for an easily implemented html generator for python. I found this one
http://www.decalage.info/python/html
but there is no way to add css elements (id, class) for …
