Whenever I start a new project, I don't know what to write for the first commit. After doing a “git init” there is technically nothing there...
npm install -g random-msg
| { | |
| "env": { | |
| "browser": true, | |
| "es6": true, | |
| "node": true | |
| }, | |
| "extends": ["airbnb"], | |
| "globals": { | |
| "document": false, | |
| "escape": false, |
| { | |
| "initalState": { | |
| "mylist": [], | |
| "trends": [ | |
| { | |
| "id": 2, | |
| "slug": "tvshow-2", | |
| "title": "In the Dark", | |
| "type": "Scripted", | |
| "language": "English", |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
| <!-- Primary Meta Tags --> | |
| <title>{title}</title> | |
| <meta name="title" content={title} /> | |
| <meta name="description" content={description} /> | |
| <link rel="canonical" href={canonicalURL} /> |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| </head> | |
| <body> |
| @import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400"); | |
| @import url("https://use.fontawesome.com/releases/v5.7.2/css/all.css"); | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| background-color: #f4f8fb; | |
| font-family: 'Roboto', sans-serif; | |
| color: #8c93bd; | |
| } |
| # Node template | |
| # Logs | |
| logs | |
| *.log | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| # Runtime data |
| @import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400&display=swap"); | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| color: #3c484e; | |
| font-family: "Open Sans", sans-serif; | |
| padding: 10px; | |
| grid-template-columns: minmax(auto, 768px); | |
| display: grid; |
| @import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400&display=swap"); | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| color: #3c484e; | |
| font-family: "Open Sans", sans-serif; | |
| } | |
| .Main { |
| const data = { | |
| name: "Oscar Barajas", | |
| nickname: "gndx", | |
| description: "...", | |
| avatar: "...", | |
| social: [ | |
| { | |
| name: "twitter", | |
| url: "https://twitter.com/", | |
| username: "", |