Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji | 
|---|---|
| Initial commit | 🎉 :tada: | 
| Version tag | 🔖 :bookmark: | 
| New feature | ✨ :sparkles: | 
| Bugfix | 🐛 :bug: | 
| function alphabetPosition(text) { | |
| const alphabetArray = [] | |
| text = text.replace(/[^a-zA-Z]/g, "").toLowerCase(); | |
| for(let letter of text) { | |
| let number = (letter.charCodeAt() - 96) | |
| alphabetArray.push(number) | |
| } | |
| text = alphabetArray.toString().replace(/,/g , " "); | 
| alisas to - git squash | |
| git fetch | |
| git rebase -i origin/master | |
| choose s - squash | |
| update git messages | |
| git push (combined commits) | |
| !!nb. destructive destroys history!! | |
| repo state git rebase --abortc (return to original) | 
| npx devpun -t javascript | npx cowsay -f vader | npx lolcatjs | 
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji | 
|---|---|
| Initial commit | 🎉 :tada: | 
| Version tag | 🔖 :bookmark: | 
| New feature | ✨ :sparkles: | 
| Bugfix | 🐛 :bug: | 
| <!doctype html> | |
| <html class="no-js" lang=""> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Fundamentals</title> | |
| <meta name="description" content="JavaScript Fundamentals: Objects, Arrays and Functions"> | |
| </head> | |
| <body> | |
| <div> | |
| <p> This Page is intentionally left blank. Please open the javascript console in your developer tools</p> | 
| <!doctype html> | |
| <html class="no-js" lang=""> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Fundamentals</title> | |
| <meta name="description" content="JavaScript Fundamentals: Objects, Arrays and Functions"> | |
| </head> | |
| <body> | |
| <div> | |
| <p> This Page is intentionally left blank. Please open the javascript console in your developer tools</p> | 
| // adds blade and PHP to emmet tab | |
| 'atom-text-editor[data-grammar="text html php blade"]:not([mini])': | |
| 'tab': 'emmet:expand-abbreviation-with-tab' | 
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Ex1 Operators</title> | |
| </head> | |
| <body> |