hjkl = left down up right
[number?] dd = delete a line also copys it to clipboard
G = move to the very bottom
gg = move to the very top
{ = go up an empty line
Undoing the Last Commit | |
`git reset --soft HEAD~1` |
hjkl = left down up right
[number?] dd = delete a line also copys it to clipboard
G = move to the very bottom
gg = move to the very top
{ = go up an empty line
Configuration for a fresh install of Raspberry Pi
wpa_supplicant.conf
file to enable wifi and post it on the root boot drive.<header> | |
<div class="box box1"></div> | |
<div class="box box2"> | |
<h1>Lorem Ipsum</h1> | |
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Odio, minima repellat alias omnis tempora quae laudantium recusandae sit eos provident!</p> | |
<div class="play"> | |
<i class="fa fa-play"></i> | |
</div> | |
</div> | |
<div class="box box3"> |
###Prerequesites
Install flightplan globally
npm install -g flightplan
Install flightplan in your project folder
###SSH into a remote machine###
ssh user@mydomain.com
#or by ip address
ssh user@192.168.1.1
exit: exit
###Install Something###
#If it's a new server, update apt-get first thing
// include gulp | |
var gulp = require('gulp'); | |
// include plugins | |
var browserSync = require('browser-sync').create(), | |
sass = require('gulp-sass'), | |
plumber = require('gulp-plumber'), | |
autoprefixer = require('gulp-autoprefixer'); | |
// Static Server + watching scss/html files |
/* | |
* 0x1ad2 base Gulp.js file | |
* https://twitter.com/0x1ad2 | |
*/ | |
/* | |
* Define plugins | |
*/ | |
var gulp = require('gulp'); | |
var plumber = require('gulp-plumber'); |