Skip to content

Instantly share code, notes, and snippets.

View thanhvuong's full-sized avatar
🏠
Working from home

Thanh Vuong thanhvuong

🏠
Working from home
View GitHub Profile
# Varnish 4.0 file for our Craft CMS projects
# Based on https://github.com/mattiasgeniar/varnish-4.0-configuration-templates/blob/master/default.vcl
#
# This is still work in progress, comments appreciated.
vcl 4.0;
# Default backend definition. Set this to point to your content server.
backend default {
.host = "127.0.0.1";
# Varnish 4.0 file for our Craft CMS projects
# Based on https://github.com/mattiasgeniar/varnish-4.0-configuration-templates/blob/master/default.vcl
#
# This is still work in progress, comments appreciated.
vcl 4.0;
import std;
import directors;
anonymous
anonymous / gulp.js
Created September 11, 2014 15:33
'use strict';
var env = require('../env'),
gulp = require('gulp'),
streamify = require('gulp-streamify'),
imagemin = require('gulp-imagemin'),
browserify = require('browserify'),
watchify = require('watchify'),
reactify = require('reactify'),
envify = require('envify'),
@edwardhotchkiss
edwardhotchkiss / graphics_magick_center_image_on_canvas.js
Created October 31, 2012 03:32
Use GM Module (Graphics Magick) for Node.js to center an image on a white background canvas
var gm = require('gm');
var canvasWidth = 248;
var canvasHeight = 389;
gm(__dirname + '/original.jpg').size(function(error, size) {
if (error) {
console.error(error);
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active April 5, 2025 07:27
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname