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

Generate duplicate data in sql

I need to generate duplicate data from one table of mysql database. When I click the generate or find button, it will select all the data that is duplicated. And it will also based on same names and bithday. But there are times that we have same…
0
votes
1 answer

Generate IP list from text file

i have text file contains IP range like this format :: 52.0.0.0-52.1.255.255 52.5.0.0-52.50.255.255 i want to Generate IP list from this range , line by line i try to do that by using this code but its not working .
0
votes
0 answers

Angular CLI not rendering Component elements correctly

I am experiencing a weird issue related to Angular CLI which seems not creating components correctly for causes unknown. When I write "ng generate component modal" or I use the IntelliJ Angular CLI tool, the result is in a bad rendering of the…
Teskin
  • 325
  • 1
  • 3
  • 11
0
votes
0 answers

Color indicator for page rating fraction decimal value at Jekyll pages

Every articles of my site based on Jekyll are rated with some formula and have values in fraction decimals from 0.0 either 179.87 and further more. Here is sample of the including in layout

#

0
votes
0 answers

How to create database using laravel auto generate?

php artisan make:migration create_users_table This code does not generate a table on phpmyadmin. What code should I use?
Java Script
  • 25
  • 1
  • 7
0
votes
0 answers

Generate signed apk android studio, keystore and keytool error

When I import eclipse project into android studio then anything is ok, and i'm installing ndk, but when I want to build my apk, I have this error with keystore : and when i use keytool i have this error too : this is my gradle module: i try some…
0
votes
1 answer

Excel: change VBA action frome same sheet to another sheet

As I'm trying my first Excel with macro's I could really use some help. I'm not a programmer but I can edit some code very well. My goal is to generate some different word documents by the click of a button. The excel file is a list with…
Sypie
  • 15
  • 1
  • 1
  • 6
0
votes
1 answer

Creating PDF file from HTML causes text to exceed the right margin (java + itext)

I'm using a rich text editor on the frontend to let users create PDF files (using java + itext). The problem is that when a user enters a large amount of spaces (pressing the space bar), it causes the text to exceed the right margin of the PDF…
shulito
  • 796
  • 5
  • 13
0
votes
3 answers

Generate a sorted list of birthday dates and append each date to a newline in a file

So, I have been trying to generate a wordlist with birthday dates. I am trying to append each value to a newline in a file birdthday_wordlist.txt. The file and the format should be like this: 01/01/1998 02/01/1998 03/01/1998 dd/mm/yyyy 12/12/2000 I…
coredumped0x
  • 768
  • 1
  • 12
  • 28
0
votes
1 answer

generate stored procedure from SQL server to Hibernate POJOs classes in IntelIJ

I'm looking for the method to generate stored procedures in sql to Hibernate POJOs classes in IntelIJ, such as @NamedStoredProcedureQuery(name = "addEmployee", procedureName = "postEmployeeElement", …
0
votes
0 answers

What is this 'Unexpected token / in JSON at position 772' i am getting suddenly? (Angular2)

Whenever I want to generate a new component or service, i suddenly get this error message: 'Unexpected token / in JSON at position 772'. I dont know how/what has caused this. There is also no reference to a specific file so I have no clue how to fix…
Y_Lakdime
  • 825
  • 2
  • 15
  • 33
0
votes
1 answer

Generate variables by many different groups

I have a dataset with: A unique person_id. Different subjects that the person took in the past (humanities, IT, business etc.). The Degree of each subject. This looks as follows: person_id humanities business IT Degree 1 0 1 …
S.Sakha
  • 3
  • 2
0
votes
1 answer

Create a variable which is the difference with n-1 and is named dvariable

I would like to do something like this: ds, has(type numeric) foreach var in `r(varlist)' { gen `var' = `var' - `var'[_n-1] } I would like to name the new variable simply d+oldname. How can I combine these two wishes?
Tom
  • 2,173
  • 1
  • 17
  • 44
0
votes
1 answer

Writing sequence of formulas to Excel with Python

I'm manipulating some excel files, merging them en calculating balances. Because after the script is done some changes could be required I prefer a formula for balance over a calculated balance amount (this is working already). So I need python to…
Franky
  • 1
0
votes
0 answers

How to generate pdf in python with pandas and reportlab

I am trying to export a list of sqlite table in pdf with pandas and reportlab. When I print everything looks good, but when I try to generate pdf I get only headers row but as column format. Because is part of larger application I have a little GUI…