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
-2
votes
1 answer

How to generate list in between the two given nos. in excel

Please help with the trick to generate the series of list with given two nos. For Example: Having data like this: Key | Month | Year | Location | From | To HYE000001| 12 |2013 | 91 | 01 | 52 and want the output in the format…
-3
votes
2 answers

How to generate 34 alphanumerics with a pattern in PHP?

I want to generate 34 random letters (capitalized and not) and numbers. Before the generated 34 random alphanumerics there is a word pro_sec_ which is there everytime it generate. And the 25th & 26th is 00 So the generated result will be: (just an…
-3
votes
1 answer

Generate number repeating python

Code: import random number1=random.randint(0,62) print(number1) I tried and the numbers repeated each other. One condition: The numbers will be different.
Mert Araz
  • 11
  • 2
-3
votes
1 answer

How to generate a list of String from a String in Kotlin?

I'm a beginner in Kotlin, I want to know how to generate a list of String from a string. For example, from a string "**martin**", I want to have a list of string: m.artin m.a.rtin ma.rtin mar.tin m.a.r.t.i.n etc. Thank you in advance for your…
-3
votes
1 answer

Transform nested list into object - Javascript

we need help to resolve this problem, no one in our enterprise was able to do it. We have a String like this: - name - type - string - validation - required - minLength - 4 - maxLength …
MatCas
  • 773
  • 8
  • 19
-3
votes
1 answer

How can I get randomly generated numbers between 0 to 99 with 0 and 99 included?

Use a random number function to randomly generate 10 integers between 0 and 99 with 0 and 99 included
Wayne Grets
  • 1
  • 1
  • 3
-3
votes
1 answer

Python -personal Identification number

Im trying to code a personal identificational number which should have 10 numbers. It looks like this 990830/4197. First two numbers - year - 1999 he was born Second two numbers - month - august Third two numbers - day 3O.8 Last 4 numbers are…
-4
votes
4 answers

Randomly Generate Letters in python

I want to generate 10 unique English letters and append them to a list in Python. This is what I tried: for i in range(10): rand = random.choice(string.ascii_letters) print(rand)
-4
votes
1 answer

Generate a combination of word list from string

I want to generate a list of keywords from given string in java e.g. " this is my string" generated list "this is my" "this is" "this" "string" "my string" "is my string"
thturk
  • 76
  • 1
  • 8
-4
votes
1 answer

How to generate a new number for each loops?

System.out.println("Problem 11:"); int randomTotal = 0; int number1; int counter1 = 0; number1 = randomNumbers.nextInt(10) + 1; while (counter1 <= 9) { randomTotal += number1; counter1++; if (number1 == 5) …
-4
votes
1 answer

Backtracking - Generate Sudokuarray

i want to generate a simple Sudokugenerator using backtrack. I am stuck / don't know if i used backtracking properly. zahlIstGueltigAufPosition returns if the number zahl is valid (if zahl appears once in the row/column or one of the 9 Boxes).…
MisterMushn
  • 71
  • 2
  • 10
1 2 3
24
25