Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
#-------------------------------------------------------------------------------
#Created by helmuthdu mailto: helmuthdu[at]gmail[dot]com
#Inspired by Andreas Freitag, aka nexxx script
#-------------------------------------------------------------------------------
#This program is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#
@gld1982ltd
gld1982ltd / fabfile1.py
Last active December 19, 2015 13:29 — forked from kespindler/gist:2415840
Directory push/pull with python fabric
from fabric.api import *
from fabric.contrib import project as project
SYNC_DIR = 'MY_DIRECTORY'
def push():
local('rsync -avz --exclude fabfile.py --exclude fabfile.pyc . %s' % SYNC_DIR)
def pull():
local('rsync -avz --exclude fabfile.py --exclude fabfile.pyc %s .' % SYNC_DIR)
@gld1982ltd
gld1982ltd / fabfile.py
Created July 10, 2013 02:20 — forked from pix0r/fabfile.py
Sample Fabric environment setup
from fabric.api import env, run
from fabric.contrib.project import rsync_project
try:
from fabfile_local import *
except ImportError, e:
environments = {
"dev": {
"hosts": ["localhost"],
},
@gld1982ltd
gld1982ltd / wordlist.py
Last active December 19, 2015 14:49 — forked from samuraisam/wordlist.py
random words
This file has been truncated, but you can view the full file.
import random
def random_words(num, separator='-'):
"""
Return `num`-random concatinated to each other.
They will be joined by `separator`
"""
words = []
@gld1982ltd
gld1982ltd / flexbox.less
Last active August 29, 2015 14:07 — forked from jayj/flexbox.less
Flexbox Less Mixins
// --------------------------------------------------
// Flexbox LESS mixins
// The spec: http://www.w3.org/TR/css3-flexbox
// --------------------------------------------------
// Flexbox display
// flex or inline-flex
.flex-display(@display: flex) {
display: ~"-webkit-@{display}";
display: ~"-moz-@{display}";
@gld1982ltd
gld1982ltd / gist:f06a7ddc9158972a84a0
Last active December 20, 2015 03:37 — forked from justinmc/gist:9149719
Sample Gulpfile
var gulp = require('gulp');
var clean = require('gulp-clean');
var jshint = require('gulp-jshint');
var concat = require('gulp-concat');
var uglify = require('gulp-uglify');
var imagemin = require('gulp-imagemin');
var bases = {
app: 'app/',
@gld1982ltd
gld1982ltd / clone-all-user-github-repos.sh
Last active November 26, 2015 06:07 — forked from caniszczyk/clone-all-twitter-github-repos.sh
Clone all repos from a GitHub organization
user="gld1982ltd"
curl -s https://api.github.com/users/$user/repos?per_page=200 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}'
@gld1982ltd
gld1982ltd / merge-css.js
Created December 10, 2015 17:12 — forked from pritambaral/merge-css.js
Merge Duplicate CSS rules; detected by selector
#!/usr/bin/env node
if (process.argv.length < 3) {
console.error('Usage:', process.argv.join(' '), '/path/to/file.css');
process.exit(1);
}
file = process.argv[2];
var fs = require('fs');
@gld1982ltd
gld1982ltd / bobross.css
Created December 26, 2015 02:33 — forked from thomaspark/bobross.css
Bob Ross’ color palette in CSS
.sap-green {
background-color: #0A3410;
}
.sap-green-text {
color: #0A3410;
}
.sap-green-border {
border-color: #0A3410;
}
@gld1982ltd
gld1982ltd / nginx.conf
Created December 31, 2015 23:07 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048