Acer Aspire One 722 Laptop
# Install sudo and add your user to the sudo group
su -
apt-get install sudo
adduser <username> sudo
# Restart your system
#!/bin/bash | |
set -e | |
{ # this ensures the entire script is downloaded # | |
notice() { echo -e "\033[4;37m$@\033[0m"; } | |
# Requirements |
/* gh-pages task */ | |
var ghPages = require('gh-pages'); | |
module.exports = function(gulp, gp, config) { | |
'use strict'; | |
gulp.task('ghpages', function(done) { |
#!/bin/bash | |
set -e | |
## Variables | |
GULP_TEST_FILES="gulpfile.js .gulp/**/*.js $npm_package_directories_test/*.js" | |
CHANGELOG_FILE="CHANGELOG.md" |
{ | |
"name": "boss", | |
"version": "0.1.0", | |
"description": "Boileplate super simple", | |
"author": "Mathias Brouilly", | |
"license": "MIT", | |
"private": true, | |
"engines": { | |
"node": "0.12.x", | |
"npm": "2.11.x" |
{ | |
"name": "boss", | |
"version": "0.1.0", | |
"description": "Boilerplate Super Simple, to quickly get projects going.", | |
"author": "Mathias Brouilly", | |
"license": "MIT", | |
"private": true, | |
"homepage": "http://bymathias.github.io/boss", | |
"repository": { | |
"type": "git", |
<?xml version="1.0"?> | |
<catalog> | |
<book id="bk101"> | |
<author>Gambardella, Matthew</author> | |
<title>XML Developer's Guide</title> | |
<genre>Computer</genre> | |
<price>44.95</price> | |
<publish_date>2000-10-01</publish_date> | |
<description>An in-depth look at creating applications | |
with XML.</description> |
<!doctype html> | |
<html class="no-js" lang="en"> | |
<head> | |
<!-- Document settings --> | |
<meta charset="utf-8"> | |
<!-- IE Use latest rendering engines --> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<!-- Page meta --> |
/* bs-config.js | Launches development server or proxy */ | |
'use strict'; | |
var path = require('path'); | |
// var env = process.env.NODE_ENV || 'development'; | |
// var moment = require('moment'); | |
// var now = moment(new Date()); | |
var titleCase = require('title-case'); |
/*! webpack.config.js | Build JS and CSS client assets */ | |
'use strict'; | |
var webpack = require('webpack'); | |
var CleanWP = require('clean-webpack-plugin'); | |
var ExtractTextWP = require('extract-text-webpack-plugin'); | |
var ModernizrWP = require('modernizr-webpack-plugin'); | |
var HtmlWP = require('html-webpack-plugin') |