Skip to content

Instantly share code, notes, and snippets.

View MattMcMurray's full-sized avatar

Matt McMurray MattMcMurray

View GitHub Profile
@itod
itod / split_keyboards.md
Last active May 24, 2024 23:05
Every "split" mechanical keyboard currently being sold that I know of
@sethbergman
sethbergman / WP-HTML-Compression
Created November 3, 2015 03:27
Minify HTML for WordPress without a Plugin - Add to function.php
<?php
class WP_HTML_Compression
{
// Settings
protected $compress_css = true;
protected $compress_js = true;
protected $info_comment = true;
protected $remove_comments = true;
// Variables
@kevinSuttle
kevinSuttle / gulpfile.js
Created April 19, 2014 20:17
Sass + Jekyll + BrowserSync
var gulp = require('gulp');
var sass = require('gulp-sass');
var uncss = require('gulp-uncss');
var prefix = require('gulp-autoprefixer');
var browserSync = require('browser-sync');
gulp.task('sass', function () {
gulp.src('_sass/index.scss')
.pipe(sass({outputStyle: 'compressed'}, {errLogToConsole: true}))
.pipe(prefix("last 2 versions", "> 1%", "ie 8", "Android 2", "Firefox ESR"))
@lirenlin
lirenlin / gist:9892945
Last active April 21, 2024 17:27
i3 wm, hide window title bar
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active May 24, 2024 21:47
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname