- clover
- cobertura
- html
- json
- json-summary
- lcov
- lcovonly
- teamcity
- text
- text-lcov
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Enter this as one line | |
git remote set-url — add — push origin [email protected]:dawsonbotsford/vimrcbuilder.git | |
#Re-add the original URL as well. Again do this with one line | |
git remote set-url — add — push origin [email protected]:dawsonbotsford/vimrcBuilder.git | |
#Verify everything worked | |
git remote -v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log(‘Thank you for reading, keep in touch below!’); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# in an empty project | |
npm install --save gulp | |
cd node_modules | |
ls **/LICENSE **/LICENSE.md **/license.md **/LICENSE | wc -l |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thanks for trying safpm! | |
Hopefully this was the fastest experience you've ever had setting up a package manager. | |
If it was, let me know at dawsonbotsford AT Gmail DOT com. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"files": [ | |
"https://gist.githubusercontent.com/dawsonbotsford/6ef9850d1140dfc7f0cc7d80ac2f8485/raw/ded5c8b1749abcef297cbf031c08a962ee1f4cb9/zadd" | |
], | |
"scripts": [ | |
"mv zadd /usr/local/bin", | |
"chmod +x /usr/local/bin/zadd" | |
] | |
} |
( ^ ) The caret symbol is the control key.
( ⇧ ) The single arrow up is the shift key.
( ⇪ ) The arrow up with the line under it is the caps lock key.
( ⌘ ) Most people don’t miss the command key since the symbol is on the keyboard.
( ⌥ ) The upper right to lower left slash with the line above it is the alt/option key. One hint to remembering this key is the symbol has two parts and the print on the keyboard has two words.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
export default function transformer(file, api) { | |
const j = api.jscodeshift; | |
const {expression, statement, statements} = j.template; | |
const root = j(file.source); | |
return root | |
.find(j.Program, { | |
body: [ | |
j.AssignmentExpression |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* ------------------ The Life-Cycle of a Composite Component ------------------ | |
* | |
* - constructor: Initialization of state. The instance is now retained. | |
* - componentWillMount | |
* - render | |
* - [children's constructors] | |
* - [children's componentWillMount and render] | |
* - [children's componentDidMount] | |
* - componentDidMount |