A generator is a generalisation of a subroutine, primarily used to simplify the writing of iterators. The yield statement in a generator does not specify a coroutine to jump to, but rather passes a value back to a parent routine.
0
votes
1answer
18 views
Tool to generate documentation from JSDoc on TypeScript interfaces
I have a .d.ts file with the interfaces describing my library. It has JSDoc comments, which will be shown via intellisense in Visual Studio when people refer to the .d.ts in their code:
/** ...
1
vote
2answers
41 views
Python - Add boolean condition to generator
I am generating tuples using :
Z = 1
W = 5
[(x,y) for x in range(Z-2,Z+2)for y in range(W-2,W+2)]
I would like to incorporate some boolean conditions to this generator such as :
Don't include ...
0
votes
2answers
29 views
Python how to generate dicts from names and reverse
I want to simplify my code, especially to avoid square brackets; so my question is :
def someFunction():
someString = "Hi!"
someNumber = 22
somePointer = ""
someList = []
...
0
votes
1answer
24 views
python memory error with large text list
I'm trying to get a list of every word, 2-word, and 3-word phrase used in a bunch of product reviews (200K+ reviews). The reviews are provided to me as json objects. I have attempted to remove as ...
0
votes
1answer
41 views
python nested generator objects content
I have a problem with Python.
I'm trying to understand which are the information stored in an object that I discovered be a generator.
I don't know anything about Python, but I have to understand how ...
-2
votes
0answers
12 views
why generateCGImagesAsynchronouslyForTimes have not give live results [closed]
I need the views to be filled with pictures as I'm moving the slider
- (void)sliderPopoverView:(YZSliderPopover*)slider {
if (fabs(slider.value - self.currentSliderValue) > 1.f) {
...
-1
votes
1answer
26 views
python refactor yield code to be reusable
What I want is simply refactor the yield code below:
def my_generator(my_case=False):
if my_case:
for a in animals:
yield mymodels.Animal(
...
0
votes
1answer
10 views
Sending to a context manager defined using contextlib.contextmanager
Suppose I have a context manager:
@contextmanager
def cm(x):
y = f(x)
z = yield y
g(z)
How do I send z into the context manager?
I tried:
my_cm = cm()
with my_cm:
...
-2
votes
4answers
53 views
I have a simple python dict why is a generator reference printed instead of the dict
A simple dict is created:
procinfos = {"f1": f1, "f2": f2, "f3shell" : (wrap_for_process, q, f3shell, "input arg1", "input arg2")}
Then I want to print its contents:
print (procinfo for procinfo ...
-3
votes
1answer
96 views
How do I make a random word generator in python programming? [closed]
im doing this as a flash card game and must pull data out of a text doc and make a random word generator with each word showing a right and two wrong answers
import random
...
3
votes
1answer
42 views
Reverse preg_replace
I have regex like this:
^page/(?P<id>\d+)-(?P<slug>[^\.]+)\.html$
and an array:
$args = array(
'id' => 5,
'slug' => 'my-first-article'
);
I would like to have function:
...
-1
votes
1answer
68 views
C# Prime Number Generator Out of Memory [closed]
public class Atkin_Algo : IEnumerable<ulong>
{
private List<ulong> primes;
private ulong limit;
public Atkin_Algo(ulong _limit)
{
limit = _limit;
...
0
votes
2answers
89 views
Sql query builder for multiple database server
I want to support multiple database for example oracle, SQL Server, mysql.. etc. in my project. So I need to use a sql builder which support multiple database.
A basic example for query problem:
...
0
votes
0answers
42 views
Compute Generator(Primitive root) of large prime number
I was implementing diffie hellman based ring signature algorithm where I have to choose a large prime number and then its generator(primitive root) g. I am unable to understand how to write java code ...
1
vote
1answer
32 views
Generate Static HTML From Client-Side JavaScript Generated Site
I'm generating an entire site using just an index.html with JS scripts.
The JS creates the HTML content based on JSON data received via the server-side API. This works great client-side and makes the ...
0
votes
1answer
43 views
simplify this python generation
I am new to python. Is there a way to simplify this:
def getDivs():
divs = soup.findAll(name = "div", attrs = {"class" : "resultCell"}, recursive = True)
for div in divs:
h2 = ...
2
votes
1answer
62 views
Using generators to read two files in time priority
I just read up on generators and was wondering how you would use generators in this:
Say there are two files and each file has a time column. Each file is sorted by ascending time, and I'm looking to ...
0
votes
1answer
50 views
lazy evaluation in generator
consider following function;
def myfunc():
a=b=c=0
x='12'
a,b,c=(i for i in x)
return a,b,c
This function throws an exception of following: ValueError: need more than 2 values to ...
0
votes
0answers
14 views
missing newlines - C
So here is the task itself:
Create password generator, which uses dictionary and match files to generate passwords by replacing letters in the dictionary words with their matches.
Example:
Dictionary ...
0
votes
0answers
13 views
Free PDF417 Generator for iOS [closed]
I'm searching PDF417 code generator for my iOS app and i found ZXingObjC library.
Is there any other library for free which you can recommend?
0
votes
1answer
50 views
Printing all variants of a word
So here is the the program which i am trying to make:
Create password generator, which uses dictionary and match files to generate passwords by replacing letters in the dictionary words with their ...
6
votes
3answers
100 views
How Python Generators know who's calling?
This question is making me pull my hair out.
if I do:
def mygen():
for i in range(100):
yield i
and call it from one thousand threads, how does the generator knows what to send next ...
-3
votes
1answer
42 views
C# Namegenarator brings 5 same letters [closed]
I write a little namegenerator. I always test it with count 5(brings me a name with 5 letters ^^)
Now the problem is that the programm brings me always the same 5 letters. Like GGGGG or HHHHH.
The ...
0
votes
0answers
12 views
Libs for work with fonts [closed]
There are a lot of services for working with fonts (http://fontface.codeandmore.com, http://onlinefontconverter.com and others).
How do they work? What libraries for working with font files used for? ...
0
votes
0answers
12 views
Rails: hook_for :orm not finding active_record
I'm writing a custom generator. For the most part, the generator is able to use hooks successfully. For instance,
hook_for :resource_route, in: :rails, required: true
Invokes resource_route as ...
3
votes
2answers
69 views
Change the speed of /dev/urandom
Is there a way to control the speed of /dev/urandom
For example, I have such generator of binary sequences :
grep -ao "[01]" /dev/urandom|tr -d \\n
I need to make it more slow, 100 symbols at ...
-1
votes
0answers
16 views
Search for webpages by specific meta tag
Is it possible to search for webpages based on a specific metatag value?
I'm specifically interested in the generator tag. I'm wondering if I can search for pages that were created with Wordpress, MS ...
1
vote
3answers
75 views
How do I make a generator from two lists in python?
Give lists a, b
a = [5, 8, 9]
b = [6, 1, 0]
I want to create a generator gen such that:
for x in gen:
print x
outputs
5, 8, 9, 6, 1, 0
0
votes
0answers
28 views
Mwe2 Workflow - modify variables at runtime
I'm trying to make a tool in which the users can choose a model for the mwe2 file and then the generated file to be placed where the user wanted (directory etc..)
My question is if the following can ...
0
votes
1answer
16 views
Rails: Calling Render From Within a Generator
I've just started experimenting with generators. In one of my generated view templates, I want to call render like so:
index.js.slim
transition("#main", "<%= escape_javascript(render 'index') ...
0
votes
1answer
17 views
Rails: Generate Both HTML and JS Views With Scaffold
I've read over the documentation on generators, but can't find any information about creating views. Reading through the code in the Rails 3 Generators gem, I found that you can override the default ...
5
votes
4answers
95 views
Is there any way to shorten this Python generator expression?
I need to build a generator and I was looking for a way to shorten this for loop into a single line. I tried enumerate but that did not work.
counter=0
for element in string:
if ...
1
vote
3answers
56 views
`map`-like function preserving sequence-type
I would like to implement a map-like function which preserves the type of input sequence. map does not preserve it:
map(str, (8, 9)) # input is a tuple
=> ['8', '9'] # output is a list
One ...
-1
votes
1answer
11 views
How to add placeholder images from Imageholdr?
I am a new developer and i searched for tools that i can use to design websites more efficient, and i came across http://imageholdr.com, anyone used it before? They say that i can add pictures easy on ...
0
votes
0answers
23 views
RSS Feed Generator with Embedded video
Here's what i'm trying to do:
I have a facebook group that generates content, because of the Facebook App,
It's possible to to get the content in an RSS-feed.
Here's my problem:
The group is mainly ...
0
votes
4answers
68 views
Why does my random generator always return 0?
I have it set up so If a 0 is returned, than an image of a dice with a 1 on it is set to the place of a buttons image. It does this with different values and images too. 0 = Dice 1, 1 = Dice 2, 2 = ...
0
votes
1answer
20 views
JQuery Link Generator Complication
I wanna learn how to make a generator. From a link, to an image and build upon it. To start with the easiest thing I can think of is generating a simple link.
If below can generate a premade link, ...
0
votes
2answers
51 views
java random generator without repeat
Im trying to generate a 2d array using a random generator. basically, each column should contain a random value between 1-50 that is not repeated but the problem is, I can't get a repeat value on the ...
0
votes
2answers
94 views
Android low resolution (ldpi) icons & Icon Set Generator
I just noticed that when I create an icon out from my svg sources for the different diplay resolutions [ldpi-xhdpi] with the 'Android Icon Set Generator' using the Android Plugin for Eclipse ...
0
votes
2answers
50 views
prime factor python nightmare
Been trying to get python to return the highest prime factor of a number and, 11 days of banging my obviously dumb head later I's ready to ask for help. Any idea why this won't return the highest ...
0
votes
1answer
40 views
How to generate numbers in this sudoku board c++
I'm making a sudoku puzzle. I have the board done. But the problem is I'm really confused about how to generate numbers in this box. Because it's an array of Char. But I want to generate integers. ...
2
votes
3answers
66 views
updating a python generator after it has been created
Is there any way to do something like this in python 2.7?
def scaleit(g, k):
for item in g:
yield item*k
promise = ??????
# defines a generator for reference but not use:
# other functions can ...
3
votes
1answer
40 views
Get a fixed number of items from a generator
What is the most efficient way to get a fixed number of items from a generator?
What I currently do is using zip and range. In this example I take
chunks of size 3 from the generator.
def f():
x = ...
0
votes
3answers
53 views
How to generate a color for special number
how can I generate a color for special number with javascript, so that for example for number 3 I get the same color every time, for number 6 another color.
Thanks
-2
votes
1answer
88 views
A Simple Method To Create Island Map Mask [closed]
NOTE
for those who are downvoting and don't even try to answer this question because they don't know enything about game development ->
the same question on gamedev.stackexchange has become a ...
-1
votes
0answers
29 views
How do I make the best use of Python generators for reading in a large text file by word? [duplicate]
I am reading in a large file and doing something with every word. I want to use generators, but I'm not sure if I'm doing it correctly.
Here is the relevant code:
def do_something(words):
# do ...
0
votes
1answer
92 views
Jquery random youtube video generator [HELP]
I need help. Currently I'm trying to create a JavaScript that would generate a random youtube video whenever I click a button on a webpage.
$("#new_video").click(function(){
...
0
votes
1answer
24 views
Stream Generator ARFF
I have ARFF file i've got from survey online.
I want to generate (resample ?) more instances since I can't have enough from people.
I've tried doing so with WEKA filter resample ...
0
votes
0answers
25 views
need advise how to start a small project, key in invoices and store the data in mysql and generate it become pdf
i'm currently wanna start from scratch how to add another function to open sources pos. I need someone to advise where I can look for tutorial or someone at here willing to share with my the start of ...
-1
votes
1answer
32 views
Generating a Random Number for HTML
I am trying to generate a random number between two values that can be changed to whatever I choose. On the load of the page, I want the number to be shown in the body of my site.
Thanks!





