create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
gulp.task 'connect', [], -> connect.server | |
root: ['build'] | |
port: 9000 | |
livereload: true | |
middleware: (connect, opt) -> [ | |
historyApiFallback = (req, res, next) -> | |
headers = req.headers | |
rewriteTarget = '/index.html' | |
appBaseDir = 'build' |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
This is a work-in-progress cheatsheet for JS arrays. Please feel free to leave a comment if this has helped you or you would like to suggest anything.
angular.module 'directives' | |
### Usage: | |
<div | |
parallax-background | |
parallax-background-ratio="0.6" | |
parallax-background-src="assets/image.png" | |
parallax-background-gradient="linear-gradient(rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.4) 100%)"> | |
</div> | |
### |
app.run ($rootScope, $state, SessionService, $window) -> | |
$rootScope.$state = $state | |
$rootScope.logout = -> SessionService.logout true | |
win = $($window) | |
scrollTime = 0.3 | |
scrollDistance = 200 | |
win.on 'mousewheel DOMMouseScroll', (evt) -> | |
evt.preventDefault() |