Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

37
votes
5answers
9k 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 Atom) spec.
34
votes
5answers
4k 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 range(256)]
33
votes
4answers
3k views

Coroutine vs Continuation vs Generator

What is the difference between a coroutine and a continuation and a generator ?
27
votes
8answers
5k views

Out of curiosity: How are serial numbers generated? Hints, Algorithms?

I wondering about how serial number generators and validator work. My aim would be to generate a serial number with five parts consisting of numbers and letters only. I enjoy coding as a hobby and ...
21
votes
4answers
8k views

rails generate model field:type -what are the options for field:type?

I know this is a silly question but like much about learning Rails I find the documentation incredibly difficult to find/navigate. I'm trying to generate a new model and forget the syntax for ...
21
votes
6answers
13k views

Lazy Method for Reading Big File in Python?

I have a very big file 4GB and when I try to read it my computer hangs. So I want to read it piece by piece and after processing each piece store the processed piece into another file and read next ...
19
votes
2answers
8k views

PHP function to generate v4 UUID

So I've been doing some digging around and I've been trying to piece together a function that generates a valid v4 UUID in PHP. This is the closest I've been able to come. My knowledge in hex, ...
18
votes
6answers
490 views

How can I generate N random values that sum to predetermined value?

I need your help with a little problem. I have four labels and I want to display on them random value between 0 to 100, and the sum of them must be 100. This is my code : private void ...
18
votes
8answers
3k views

Python: generator expression vs. yield

In Python, is there any difference between creating a generator object through a generator expression versus using the yield statement? Using yield: def Generator(x, y): for i in xrange(x): ...
18
votes
3answers
5k 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 small input, the ...
17
votes
3answers
3k views

Class Map Generator for Fluent NHibernate

Is there a Class Map generator for Fluent NHibernate? I need something like db2hbm but I want it to generate Fluent Class Maps instead of xml mappings. I am aware of AutoMapping for Fluent but that ...
16
votes
4answers
16k views

Backend Administration in rails

I'd like to build a real quick and dirty administrative backend for a rails app I have been attached to at the last minute. I've looked at activescaffold and streamlined and think they are both very ...
15
votes
8answers
23k views

@font-face generator not Font Squirrel

Looking for an @font-face generator that will convert my legally purchased and very expensive fonts for web use. I use to use Font Squirrel before they started blocking Adobe fonts. Is there a way ...
14
votes
6answers
798 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 appear in every ...
13
votes
7answers
1k 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 GUI application or ...
13
votes
9answers
2k 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 have never used a ...
12
votes
2answers
237 views

Why can't generators be pickled? [closed]

Python's pickle (I'm talking standard Python 2.5/2.6/2.7 here) cannot pickle locks, file objects etc. It also cannot pickle generators and lambda expressions (or any other anonymous code), because ...
12
votes
1answer
263 views

Get a subset of a generator

I have a generator function and want to get the first ten items from it; my first attempt was: my_generator()[:10] This doesn't work because generators aren't subscriptable, as the error tells me. ...
12
votes
11answers
1k 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 ...
12
votes
6answers
3k 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 -- from Visual Studio ...
11
votes
2answers
235 views

What's the most Pythonic way to identify consecutive duplicates in a list?

I've got a list of integers and I want to be able to identify contiguous blocks of duplicates: that is, I want to produce an order-preserving list of duples where each duples contains ...
11
votes
1answer
166 views

Do all C++ STLs produce the same random numbers (for the same seed)?

do all C++ STLs produce the same random numbers (for the same seed)? Does this hold for all platforms? Is this specified somewhere? Thanks! Bjoern
11
votes
4answers
1k views

Does node.js support yield?

Is there any way to get generators into node.js? I'm currently faking them with callbacks, but I have to remember to check the response of the callback inside of my generator function which creates a ...
11
votes
5answers
3k views

BarCode Image Generator in Java

How can I create a barcode image in Java? I need something that will allow me to enter a number and produce the corresponding barcode image. Is there a free library available for this type of task?
11
votes
7answers
644 views

Using lookahead with generators

I have implemented a generator-based scanner in Python that tokenizes a string into tuples of the form (token type, token value): for token in scan("a(b)"): print token would print ("literal", ...
11
votes
8answers
1k views

When is not a good time to use python generators?

This is rather the inverse of What can you use Python generator functions for?: python generators, generator expressions, and the itertools module are some of my favorite features of python these ...
10
votes
3answers
407 views

enumerate()-ing a generator in Python

I'd like to know what happens when I pass the result of a generator function to python's enumerate(). Example: def veryBigHello(): i = 0 while i < 10000000: i += 1 yield ...
10
votes
6answers
6k views

Realistic 2D terrain map generation

I am looking for some algorithms which allow me to generate a realistic 2D terrain map. By realistic I mean that person will consider such map as a "normal" terrain map, not created artificially. I ...
10
votes
4answers
1k views

Are Generators Threadsafe?

I have a multithreaded program where I create a generator function and then pass it to new threads. I want it to be shared/global in nature so each thread can get the next value from the generator. ...
9
votes
1answer
206 views

Continuations and for comprehensions — what's the incompatibility?

I am new to Scala and trying to wrap my head around continuations I'm trying to reproduce the yield return C# statement. Following this post, I have written the following code : package ...
9
votes
4answers
157 views

Why doesn't this closure modify the variable in the enclosing scope?

This bit of Python does not work: def make_incrementer(start): def closure(): # I know I could write 'x = start' and use x - that's not my point though (: while True: ...
9
votes
2answers
282 views

Use QuickCheck by generating primes

Background For fun, I'm trying to write a property for quick-check that can test the basic idea behind cryptography with RSA. Choose two distinct primes, p and q. Let N = p*q e is some number ...
9
votes
5answers
496 views

Is there a generator version of `string.split()` in Python?

string.split() returns a list instance. Is there a version that returns a generator instead? Are there any reasons against having a generator version?
9
votes
7answers
2k views

Can iterators be reset in Python?

Can I reset an iterator / generator in Python? I am using DictReader and would like to reset it (from the csv module) to the beginning of the file. thanks.
9
votes
3answers
260 views

Get the nth item of a generator in Python

Is there a more syntactically concise way of writing the following? gen = (i for i in xrange(10)) index = 5 for i, v in enumerate(gen): if i is index: return v It seems almost natural ...
9
votes
3answers
308 views

In python is there a way to check if a function is a “generator function” before calling it?

Lets say I have two functions: def foo(): return 'foo' def bar(): yield 'bar' The first one is a normal function, and the second is a generator function. Now I want to write something like ...
9
votes
2answers
1k views

How to create a generator/iterator with the Python C API?

How do I replicate the following Python code with the Python C API? class Sequence(): def __init__(self, max): self.max = max def data(self): i = 0 while i < ...
9
votes
7answers
6k 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 print on a cap, ...
8
votes
3answers
217 views

Implementing a generator in C++0x

The python keyword yield has been a great conceptual abstraction for me, allowing me to distill the important parts of an algorithm to human-readable form. We have previously discussed: Python ...
8
votes
2answers
480 views

Will python SystemRandom / os.urandom always have enough entropy for good crypto

I have a password generator: import random, string def gen_pass(): foo = random.SystemRandom() length = 64 chars = string.letters + string.digits return ''.join(foo.choice(chars) for ...
8
votes
2answers
211 views

Python generator, non-swallowing exception in 'coroutine'

I recently came across some surprising behaviour in Python generators: class YieldOne: def __iter__(self): try: yield 1 except: print '*Excepted Successfully*' # raise ...
8
votes
4answers
620 views

generator/block to iterator/stream conversion

Basically I want to convert this: def data(block: T => Unit) to a Stream (dataToStream is a hypothetical function that do this conversion): val dataStream: Stream[T] = dataToStream(data) I ...
8
votes
3answers
329 views

Ugly combination of generator expression with for loop

The following appears in my Python 2.6 code: for src, dst in ([s,d] for s in universe for d in universe if s != d): Can I do much better? What I particularly don't like is that I'm in effect ...
8
votes
7answers
755 views

How to combine two generators in a non-trivial way

I have a generator which produces all positive integers that are powers of 2, and another which produces all integers that are powers of 3. I now need to use those to produce integers of the form ...
8
votes
6answers
2k views

Lexer written in Javascript?

I have a project where a user needs to define a set of instructions for a ui that is completely written in javascript. I need to have the ability to parse a string of instructions and then translate ...
8
votes
3answers
906 views

Why is there no first(iterable) built-in function in Python?

I'm wondering if there's a reason that there's no first(iterable) in the Python built-in functions, somewhat similar to any(iterable) and all(iterable) (it may be tucked in a stdlib module somewhere, ...
7
votes
2answers
149 views

HTML generator?

LESS is very cool. I always wondered if there are any good html generators that allow me to write a form more easily or do other things. Is there something somewhat similar but for html?
7
votes
2answers
324 views

Converting while to generator 3.4 times slow down

What is happening? Can somebody explain me what happens here, I changed in tight loop: ## j=i ## while j < ls - 1 and len(wordlist[j]) > lc: j+=1 j = next(j ...
7
votes
2answers
761 views

Ruby generators vs Python generators

I've been researching the similarities/differences between Ruby and Python generators (known as Enumerators in Ruby), and so far as i can tell they're pretty much equivalent. However one difference ...
7
votes
5answers
207 views

How do I split a string and rejoin it without creating an intermediate list in Python?

Say I have something like the following: dest = "\n".join( [line for line in src.split("\n") if line[:1]!="#"] ) (i.e. strip any lines starting with # from the multi-line string src) src is very ...

1 2 3 4 5 14