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

Does syntax like tab() gen() exist in R?

I am now trying to convert stata to R and I have the following codes in stata: tsset code_numeric year_numeric sort code_numeric year_numeric tab year, gen (yr) tab code, gen(cd) reg fhpolrigaug L.(fhpolrigaug lrgdpch) yr* cd* if sample==1,…
w12345678
  • 63
  • 6
0
votes
1 answer

Solving problem to generate custom number from inserted values with GUI in Python

Hello im having python learning project. I want to insert in GUI two numbers, which are defining range for program to generate random number from. I am really having problems with calling function with press of the button. And constantly getting…
0
votes
1 answer

ionic g pipe search-filter not working in ionic 5

I tried to create a pipe filter by using following cli. ionic g pipe search-filter but I get this error message. ng generate pipe search-filter --project=app More than one module matches. Use skip-import option to skip importing the component…
Jason G
  • 128
  • 1
  • 9
0
votes
1 answer

Flutter- Using for loops or lists to create custom widgets with editable properties

I created a custom class, RectButton, with editable properties of buttonChild, bgColor, and onPress. I was hoping to make this widget further dynamic by creating a new widget that can create a row of these RectButtons based on a variable integer…
0
votes
2 answers

Random word generator in Python

Edit: made some changes - now the program finishes, but still doesn't output anything. import random dict = open("british-english") word_list = dict.readlines() def generate(): global word_list prompt = random.choice(word_list) if…
Donagh
  • 89
  • 2
  • 10
0
votes
1 answer

Save a DataTable in XML C#

I've imported an Excel spreadsheet into a DataGridView. I Need the option to export it to an XML File for a job to run on other applications. problem with saving the file in a specific path This is the button I use to export: private void…
Uzarsef
  • 13
  • 8
0
votes
0 answers

How to add text in created boxed using JS

I create names generator. I created input field, and add button. Enter name, click add -> the name is embeded to ul list. Then I input number of teams and create number of boxes where I will generate random names from list. Here is HTML:
Xena
  • 379
  • 3
  • 9
0
votes
1 answer

PHP Fatal error: Uncaught Error: Class 'Elliptic\EC' not found

I want to generate private/public keys using Elliptic Curve Cryptography in PHP. I have used this library: https://github.com/simplito/elliptic-php my code:
0
votes
1 answer

Nuxt.js: is it possible use custom page names in Pre Rendering option?

i am currently working in a Nuxt.js project and i'm trying the Pre Rendering option. I would like to change the format name of the files created when i launch nuxt generate... but i don't really now if this is even possible. If my pages folder has…
dehiv
  • 31
  • 3
0
votes
3 answers

i would like to random number but no repetition im coding above is it correct?

What I am trying to do is generate random number but no repetition i'm coding above is it correct? public static void main(String[] args) { ArrayList arrayLast = new ArrayList(); for (int arrayitems : getArray(10, 100)) { …
Bill Sara
  • 3
  • 2
0
votes
1 answer

Autofill word with data from excel row. A autofill word document per excel row

It is possible to generate a word template from every excel row individually. In excel I need a button to appear on every new row I populate with data and the button must open the word template that was fill with the data that I populate the row.…
0
votes
1 answer

Possibility of dynamic content on statically generated html pages from Nuxt with responses from REST APIs

We work a lot with Vuejs as Single Page Application (SPA). Vue meets many requirements is very popular. In terms of SEO and social media links has faced some challenges. We also want to upscale applications and have therefore shortlisted Nuxt.…
Ben Asmussen
  • 964
  • 11
  • 15
0
votes
1 answer

Python 3 - How do I brute force a password for a PDF file using all possible 6-digit employee ID's?

I am practicing generating all possible 6-digit employee ID's (all having 900 at the beginning followed by all possible 6-digit numbers) to brute force a password for a PDF file named PS7_encrypted.pdf. So far, I have successfully generated all…
sierra117
  • 39
  • 7
0
votes
0 answers

can not generate flutter apk file

I'm trying to generate flutter apk file using the following command flutter build apk --target-platform=android-arm but I've got the following error FAILURE: Build failed with an exception. What went wrong: Could not resolve all files for…
Karrar
  • 1,273
  • 3
  • 14
  • 30
0
votes
0 answers

Is there a way to find the algorithm of a string to use to generate more strings of same algorithm?

I have a string of 43 characters. Example: azZZRzqw4ziDlBWkpqgbOtLHZvThSM99Hw3cCEDxwJM I want to know if it is possible to get their algorithms and generate a different string with the same algorithm in the initial given string. Like serial keys, i…
Jruce
  • 1