Skip to content

Instantly share code, notes, and snippets.

View CarlosMed's full-sized avatar
🐒
🤓💻☕️

Carlos Medina CarlosMed

🐒
🤓💻☕️
View GitHub Profile
@CarlosMed
CarlosMed / flightplan-html.md
Created May 11, 2016 05:18 — forked from learncodeacademy/flightplan-html.md
Deploy HTML site with Flightplan

###Prerequesites

Install flightplan globally

npm install -g flightplan

Install flightplan in your project folder

@CarlosMed
CarlosMed / gist:6b50f619f3d563bee426d41e341c301c
Created May 11, 2016 05:18 — forked from learncodeacademy/gist:5850f394342a5bfdbfa4
SSH Basics - Getting started with Linux Server Administration

###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
@CarlosMed
CarlosMed / Gulpfile.js
Last active September 13, 2015 21:00 — forked from 0x1ad2/Gulpfile.js
My gulpfile example for How to enhance your front-end development workflow using Gulp
/*
* 0x1ad2 base Gulp.js file
* https://twitter.com/0x1ad2
*/
/*
* Define plugins
*/
var gulp = require('gulp');
var plumber = require('gulp-plumber');