Skip to content

Instantly share code, notes, and snippets.

View yukal's full-sized avatar
🙃
Haven't you tried it like this? ))

Alex Yu yukal

🙃
Haven't you tried it like this? ))
View GitHub Profile
@yukal
yukal / archlinux.sh
Last active December 16, 2017 09:00
archlinux.sh
#!/bin/bash
# Create Partitions
cgdisk /dev/sda
cgdisk /dev/sdb
# Format Partitions (SSD)
mkfs.fat -F32 /dev/sda1
mkfs.ext4 /dev/sda2 -L root
mkfs.ext4 /dev/sdb5 -L home
@yukal
yukal / gulpfile.js
Last active November 11, 2018 16:18
gulp
// Initialize plugins
var gulp = require('gulp'),
plugins = require('gulp-load-plugins')(),
browserSync = require('browser-sync').create(),
src = './src',
dst = './dist',
// Output details of the error and continue the project
swallowError = function(error) {