Questions tagged [generate]

Any question related to the Generate developer framework and CLI tool should tagged using the `generate` tag. How to use the generate CLI to run this generator ? How to use this generator as a plugin ? How to run a task from a subgenerator ? How to create my own Generate generator ?

What is generate ?

Generate is an extremely modern command line tool and developer framework for scaffolding out any kind of developer projects. Generate offers the robustness and configurability of Yeoman, the expressiveness and simplicity of Slush, and more powerful flow control and composability than either.

It is an open source framework hosted on github under the MIT license.

It has its own Github organization to namespace all the generators authored by the same author, Jon Schlinkert.

Generate is part of the awesome node toolkit created by the same author: https://github.com/node-toolkit

Some of the best related projects composing the node-toolkit:

Related StackOverflow tags

371 questions
0
votes
1 answer

Get count for number of times build for Generate Signed APK in Android Studio

How to get the count for the number of times the Generate Signed APK is generated/build in Android Studio. Any way to do it programatically.
Rohit S
  • 714
  • 5
  • 7
0
votes
2 answers

How do i generate a QR code like image using python

I'm not trying to make a QR code, but I am looking to make a similar type of style that is generated multiple times as an image. This is a brief example of one of these images: it should be able to be generated randomly Also, id also like for a…
wdp
  • 13
  • 3
0
votes
0 answers

Method for generating multiple items based on weight with removal and with a weight modifier?

So im looking for preferably the most efficient method for generating items from a list/array based on their weight multiple times and each time an item is chosen it's removed from the pool. I also want this method to have a 'luck' parameter (like a…
0
votes
1 answer

Why can't I generate a solution for the C++ project (.cryproject)?

I am a beginner and follow the lessons from the c++ CryEngine documentation. But the problem is that I can't go any further until I generate a solution for the c++ project I don't even have an icon for the corresponding buttons in the menu I can…
0
votes
2 answers

Writing random numbers in file

My task is to generate different files and each of them has a specific size. This size includes random numbers that are written in the file. As an example, if the size is 100, it means the program needs to write 100 random numbers and generate a…
Jase
  • 41
  • 6
0
votes
0 answers

generating random values in R

i have an assignment : to solve this I wrote this code: a1q1 <- function(n, j, k, m, seed){ x_0=seed set_1=c(x_0) for (l in 1:k) { set_1[l+1]=(1103515245*set_1[l]+12345)%%2^32 } for (f in 1:n) { …
0
votes
1 answer

Import a NPM module with a Nuxt Application in it

I would like to develop an NPM module that the user can import in his project. The module contain a full administration panel created with Nuxt. I don't want the user know anything about Nuxt, he just need to run a command like: myppcommand…
47ndr
  • 583
  • 5
  • 23
0
votes
1 answer

How to create a named constant in the SystemVerilog generate block?

I need to transmit a set of values between the SystemVerilog and VHDL code. To do that, I have to flatten the SV structures into the bit vectors, transmit the bit vectors, and rebuild the structures at the VHDL side. Unfortunately, I have faced a…
wzab
  • 788
  • 7
  • 24
0
votes
1 answer

Generate new variable by grouping an old one according to its value characteristic

I want to generate a new variable in Stata by grouping an old one according to its value characteristics. I have one variable called status that reflects employment type and status, so it has values like "Manager", "Ex-Manager", "Employee",…
Freyana
  • 61
  • 8
0
votes
1 answer

CMake does not generate .ts files

I am trying to generate *.ts files with my CMake, but it does nothing. It even do not show any message. When I am trying directly with lupdate, it is working, so I don't know where the problem might be. Here my…
0
votes
2 answers

Generate Series Alternative for Snowflake works but generates an incomplete list

I am looking into creating a list, where I see how many IDs were generated in a given hour. Because I want to display the hours from 8 to 21 in advance independent of the hour of the date, I used generate series and now need to find the equivalent…
0
votes
1 answer

Question Regarding Random Number Generation in Lua

I was playing around with the lua interpretor and made this little program that generates two numbers and compares them. The program runs until the numbers match. The first number is randomly generated using math.random(), and is set to 1, and…
0
votes
1 answer

Parentheses when assigning variables in Stata

Does it make a difference if I have parentheses or not? Is this generating dummies or just assigning a value: generate byte h_et = ( hvet ) and generate byte h_et = hvet in Stata?
MicL
  • 67
  • 1
  • 8
0
votes
1 answer

Generate JSON data from Json Schema V3 in Java

Could you please let me know how to Generate JSON data from Json Schema V3 in Java. Is there any Java library for this?
0
votes
1 answer

How do I draw an HTML element on a canvas?

I want to create a pixel art app, and so far so good. You're able to draw on the pixel grid. What I'm trying to figure out is, how to render the art onto an html canvas. I know there's drawImage(), but I want to render an HTML5 element, not an…