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

Random maze generator in WPF

EDIT: I tried Background.SetValue(Grid.RowProperty, 1) and Border.Background.SetValue(Grid.RowProperty, 1) But got an error saying "Cannot set a property on object '#FFFFFFFFF' because it is in a read-only state." I'm trying to make a random maze…
-1
votes
3 answers

How can I generate a random string using php and only once per day?

I have code that generates random strings, but I want to generate random strings only once per day. This is the code generating a random string by every page load. How can I achieve this? function random_string($length) { $key = ''; $keys =…
-1
votes
1 answer

How to sort array in to 'bins', and print out stars for how many numbers are in that bin?

//so basically for all that is below, I'm trying to sort the random numbers that have been generated, and then 'sort' then into bins, and then for how many numbers there are in the bin, a star * will print out for every number. it will look like a…
-1
votes
1 answer

Auto-Generate XSLT - Generic/Default XSLT

This shouldn't be very complex, but I searched all over the internet and couldn't find such a tool. This tool should take an XML or XSD file and generate an XSLT, When applying this XSLT to the XML, the result is a user-friendly HTML Page. The…
KaBoZ85
  • 11
  • 1
  • 1
-1
votes
1 answer

How can I generate a "ColumnList" in Flutter

I want to build a Screen in Flutter which should look like this: --BEGIN Important Part-- Generated Columnitems (containing heading and description) List of items --END Important Part-- How can I generate those Columns (which not should be…
-1
votes
1 answer

WordPress custom post automatically generating element that breaks my design

I have designed a custom wordpress website. After publishing a custom post I see the design is broken. After checking inspect element, I saw element is automatically generating and its breaking my design. I don't know how and from where its coming.…
-1
votes
1 answer

iOS Generating Random Test Data

For testing, I needed to generate a list of data values randomly and put them into the models for further use. But I found out that there is no library, which could produce such functionality. The elegant solution I expected to find had to combine…
-1
votes
1 answer

Java: Recover the Public Key by only having the PrivateKey? Possible?

Source: How to recover a RSA public key from a byte[] array? This is my KeyPair generation Method: try { KeyPairGenerator keyGen = KeyPairGenerator.getInstance("ECDSA", "BC"); SecureRandom random =…
Temse
  • 11
  • 1
-1
votes
1 answer

I did not find the generate namespace in The Console Component in symfony 4

I keep rereading the symfony 4 documentation to try to generate controller with the console commands and when I list The Console commands in symfony 4 I did not find the generate namespace . is there any one know how to add generate namespace…
user7430779
  • 47
  • 1
  • 3
  • 5
-2
votes
2 answers

MYSQL generate a unique random-looking number without using PHP loops

Without using PHP loops, I'm trying to find an efficent way to generate a unique number that's different from all existing values in MYSQL database. I tried to do that in PHP, but it's not efficent because it has to deal with lots of loops in the…
-2
votes
1 answer

Generate QR Code for Firebase Firestore document REACT NATIVE

I want to generate QR codes which gets data from from Firebase Firestore Document. can anyone tell me how I can do that???
-2
votes
1 answer

Generating Numbers/Text in certain way/form

Working on a script to generate a Key of letters/numbers in a certain way, I need to generate the key in a format like shown here xxxx-xxxx-xxxx, i would generate the key in replace of the xxxx-xxxx-xxxx like 19n3-m1m9-1nl1 but then generate this…
PackedUP32
  • 17
  • 4
-2
votes
1 answer

Finding all words with length 0 - 4 for a regular expression (method?)

I have an alphabet consisting of 0 and 1 and a regular expression, for example: 1*(011+)*1*. Now I shall find all words of the language that have the length 0 - 4 and fit the regular expression. So the output would be: , 1, 11, 011, 111 ... etc. I…
-2
votes
1 answer

Being able to write a sql clr function that will script the procedure/view/function/trigger in sql server as a different object name

I was thinking I can do this using Microsoft.SqlServer.TransactSql.ScriptDom , Passing a SQL definition of the object to the CLR function using this DLL and change change passed SQL (which can be create/alter of a procedure/function/view/trigger)…
Gokhan
  • 279
  • 3
  • 13
-2
votes
2 answers

How to generate report ticket number with Laravel?

Currently working on lost and found project where users can make a report when they left something behind. I'm using laravel 5.4, I have some data already on my DB and I have made every requirements according to my client. But in the end, my…
ellvina
  • 17
  • 8
1 2 3
24
25