Tagged Questions

2
votes
2answers
98 views

how to centralize “loading” screen for GWT RPC?

How can I centralize management of a "loading" icon for GWT async RPC calls? I'm looking for a way to have every async call automatically kick off a timer. When the timer fires, …
6
votes
8answers
1k views

Generating unique codes in PHP/MySQL?

I'm working with a client that needs to generate millions of the alphanumeric codes used in magazine scratch-off cards, bottlecap prizes, and so on. They have to be short enough to …
6
votes
6answers
317 views

Have you used Quickcheck in a real project

Quickcheck and its variants (even there is one in java), seems to be interesting. However, apart from academic interest, is it really useful in a real application testing (Eg. a GU …
3
votes
4answers
441 views

Looking for visual CSS generator

Looking for some sort of tool that would allow me to layout my page visually using some sort of GUI, then generate the necessary CSS that would allow a web page to look like that. …
12
votes
6answers
396 views

Joining a set of ordered-integer yielding Python iterators.

Here is a seemingly simple problem: given a list of iterators that yield sequences of integers in ascending order, write a concise generator that yields only the integers that appe …
21
votes
5answers
2k views

Recommended Python RSS/Atom feed generator?

Can you recommend a feed generator library for Python? I could build the XML myself, but I'm looking for a recommended library that is built from the ground up around the RSS (or …
1
vote
4answers
172 views

Scope of Python Recursive Generators

Hey all, I was working on a recursive generator to create the fixed integer partitions of a number and I was confused by a scoping issue. The code is similar to this snippet. def …
4
votes
6answers
359 views

Adding elements to python generators

Is it possible to append elements to a python generator? I'm currently trying to get all images from a set of disorganized folders and write them to a new directory. To get the fi …
1
vote
7answers
224 views

How do I know if a generator is empty from the start?

Is there a simple way of testing if the generator has no items, like peek, hasNext, isEmpty, something along those lines?
9
votes
8answers
473 views

Data generators for SQL server?

I would like to receive suggestions on the data generators that are available, for SQL server. If posting a response, please provide any features that you think are important. I …
8
votes
6answers
949 views

Best Multi-Language Documentation Generator

What is the best documentation generator? I want to something that will easily add templates for documenting functions, classes, etc. I know there are several tools out there -- …
5
votes
3answers
889 views

Python: using a recursive algorithm as a generator

Recently I wrote a function to generate certain sequences with nontrivial constraints. The problem came with a natural recursive solution. Now it happens that, even for relatively …
20
votes
5answers
1k views

Generator Expressions vs. List Comprehension

When should you use generator expressions vs. list comprehensions in Python and vice-versa? # Generator expression (x*2 for x in range(256)) # List comprehension [x*2 for x in ra …
1
vote
2answers
174 views

Can you recommend books about generative programming?

I can recommend following books: Code Generation in Action by Jack Herrington (lots of Ruby) Generative Programming by Krzysztof Czarnecki and Ulrich W. Eisenecker (many ideas ex …
1
vote
2answers
604 views

Topological sort, recursive, using generators.

Data: a dependency list, already verified to be acyclic. So here, 'a' depends on 'b','c','d' (c depends on d), etc... A = { 'a' : dict(b=1, c=1), 'c' : dict(d=1), 'd' …

1 2 next
15 30 50 per page