1 - Fork a repo
2 - Clone the sevntu.checkstyle project to your local machine (username – your Github user account name.):
$ git clone [email protected]:USERNAME/REPOSITORY.git3 - Configure remotes:
1 - Fork a repo
2 - Clone the sevntu.checkstyle project to your local machine (username – your Github user account name.):
$ git clone [email protected]:USERNAME/REPOSITORY.git3 - Configure remotes:
| .randomColor(){ | |
| @randomColor: `Math.floor(Math.random()*16777215).toString(16)`; | |
| @colorHex: e(@randomColor); | |
| @color: ~"#@{colorHex}"; | |
| } | |
| // USE | |
| body { | |
| .randomColor(); |
| jiracli --issue-oneline --issue-search "issue in watchedIssues()" | sed -e 's/,.*//g' | xargs -L1 jiracli --issue-watch-remove |
// please comment if you know of other BOOKS (not considering blogs just yet) on ES6 that are out or coming out
| # Git functions | |
| # Credit not myself but Mark Embling (http://www.markembling.info/) | |
| # Is the current directory a git repository/working copy? | |
| function isCurrentDirectoryGitRepository { | |
| if ((Test-Path ".git") -eq $TRUE) { | |
| return $TRUE | |
| } | |
| # Test within parent dirs |
| /* bling.js */ | |
| window.$ = document.querySelector.bind(document); | |
| window.$$ = document.querySelectorAll.bind(document); | |
| Node.prototype.on = window.on = function(name, fn) { this.addEventListener(name, fn); }; | |
| NodeList.prototype.__proto__ = Array.prototype; | |
| NodeList.prototype.on = function(name, fn) { this.forEach((elem) => elem.on(name, fn)); }; |
| <script src="https://unpkg.com/@webcomponents/custom-elements"></script> | |
| <style> | |
| body { | |
| margin: 0; | |
| } | |
| /* Style the element from the outside */ | |
| /* | |
| fancy-tabs { | |
| margin-bottom: 32px; |