Skip to content

Instantly share code, notes, and snippets.

View knan71's full-sized avatar
😎

Mohammed Ali knan71

😎
View GitHub Profile
#!/bin/sh -x ## or just ` curl -Ls http://git.io/vRozn | sh `.
## Downloads the Mac OS X 10.10 Recovery Partition update,
## Copy's over the 10.10 version of Disk Utility.app, then
## use git to apply a binary patch so it will run on 10.11+.
cd /tmp
rm -rf DU1010
mkdir DU1010
@knan71
knan71 / gulpfile.js
Created May 13, 2018 12:09
Gulpfile [JS/Gulpfile]
// Подключение
var gulp = require('gulp'),
sass = require('gulp-sass'),
concatCSS = require('gulp-concat-css'),
cssmin = require('gulp-csso'),
autoprefixer = require('gulp-autoprefixer'),
htmlvalid = require('gulp-htmlhint'),
imagemin = require('gulp-imagemin'),
uglify = require('gulp-uglify'),
pump = require('pump'),
@knan71
knan71 / bootstrap-4-sass-mixins-cheat-sheet.scss
Created March 18, 2018 22:25 — forked from anschaef/bootstrap-4-sass-mixins-cheat-sheet.scss
Bootstrap 4 Sass Mixins [Cheat sheet with examples]
/* -------------------------------------------------------------------------- */
// All Bootstrap 4 Sass Mixins [Cheat sheet]
// @author http://anschaef.de
// @see https://github.com/twbs/bootstrap/tree/v4-dev/scss/mixins
/* -------------------------------------------------------------------------- */
// Grid variables
$grid-columns: 12 !default;
$grid-gutter-width: 30px !default;