I hereby claim:
- I am meroje on github.
- I am meroje (https://keybase.io/meroje) on keybase.
- I have a public key whose fingerprint is 7403 40C0 E1EF 99DF 9D05 B944 0592 D0A2 50B7 1B40
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # Based on https://github.com/edanaher/scaleway-utils/blob/45d89a534d0ff9427a120e509d215e195fe083dc/tinc/add-tinc.sh | |
| export PS4="\[\033[32;1m++\[\033[0m " | |
| set -ex | |
| HOST=$1 | |
| TINCIP=$2 | |
| TINCNAME=${3:-$1} |
| /*! webpack.config.js | Build JS, CSS,.. client assets and StyleGuide */ | |
| 'use strict'; | |
| var webpack = require('webpack'); | |
| var ExtractTextWP = require('extract-text-webpack-plugin'); | |
| var HtmlWP = require('html-webpack-plugin'); | |
| var path = require('path'); | |
| var moment = require('moment'); |
| #!/bin/bash | |
| wget -O cloud-config.yaml http://10.10.20.1/cloud-config.php | |
| coreos-install -d /dev/vda -c cloud-config.yaml | |
| reboot |
| Verifying that +meroje is my blockchain ID. https://onename.com/meroje |
| __devinit est déprecié, ajouter: | |
| ``` | |
| #ifndef __devinit | |
| #define __devinit | |
| #define __devinitdata | |
| #endif | |
| ``` |
| <html> | |
| <head> | |
| <title>dependo</title> | |
| <style> | |
| body { | |
| background: #fff; | |
| padding:0; | |
| margin:0; | |
| font-family:helvetica,arial; | |
| overflow: hidden; |
| [Desktop Entry] | |
| Version=1.0 | |
| Name=Firefox Developer | |
| # Only KDE 4 seems to use GenericName, so we reuse the KDE strings. | |
| # From Ubuntu's language-pack-kde-XX-base packages, version 9.04-20090413. | |
| GenericName=Web Browser | |
| GenericName[ar]=متصفح الشبكة | |
| GenericName[bg]=Уеб браузър | |
| GenericName[ca]=Navegador web | |
| GenericName[cs]=WWW prohlížeč |
I hereby claim:
To claim this, I am signing this object:
| var gulp = require('gulp'); | |
| var uglify = require('gulp-uglify'); | |
| var imagemin = require('gulp-imagemin'); | |
| var browserSync = require('browser-sync'); | |
| var sass = require('gulp-sass'); | |
| var less = require('gulp-less'); | |
| // Browser-sync task, only cares about compiled CSS | |
| gulp.task('browser-sync', function() { | |
| browserSync.init(["dist/**"], { |
| #!/bin/bash -ex | |
| # Paste this into ssh | |
| # curl -sL https://gist.github.com/andsens/2913223/raw/bootstrap_homeshick.sh | tar -xzO | /bin/bash -ex | |
| # When forking, you can get the URL from the raw (<>) button. | |
| ### Set some command variables depending on whether we are root or not ### | |
| # This assumes you use a debian derivate, replace with yum, pacman etc. | |
| aptget='sudo apt-get' | |
| chsh='sudo chsh' |