Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jmassara on github.
  • I am jmassara (https://keybase.io/jmassara) on keybase.
  • I have a public key ASArhnpRSQESG5hqXn3y90OD3qFWQjaTEuwoP9rhlgHwhwo

To claim this, I am signing this object:

@jmassara
jmassara / .tmux.conf
Created January 6, 2016 19:47
OS X tmux 2.1 configuration
#
# NOTE: reattach-to-user-namespace must be installed and in your $PATH on
# Mac OS X for copy & paste.
#
# $ brew install reattach-to-user-namespace
#
# tmux 2.1+ required
#
# Reload ~/.tmux.conf using PREFIX r
@jmassara
jmassara / gist:a07801f9408010b634ec
Last active August 29, 2015 14:08
Packer and boot2docker on OS X Yosemite
✗ docker version
Client version: 1.3.1
Client API version: 1.15
Go version (client): go1.3.3
Git commit (client): 4e9bbfa
OS/Arch (client): darwin/amd64
Server version: 1.3.1
Server API version: 1.15
Go version (server): go1.3.3
Git commit (server): 4e9bbfa
@jmassara
jmassara / vimrc
Last active August 29, 2015 14:05
.vimrc setup
" Force VIM only settings
set nocompatible
" Load pathogen plugins
execute pathogen#infect()
" Tab settings
set tabstop=4
set softtabstop=4
set shiftwidth=4
@jmassara
jmassara / vmhgfs-d_count-kernel-3.10-tools-9.6.2.patch
Last active August 29, 2015 14:04
VMware Tools hgfs patch for RHEL7 kernel 3.10.0-123
--- inode.c 2014-03-21 15:37:16.000000000 -0700
+++ inode.c-new 2014-07-17 14:20:50.202233706 -0700
@@ -31,6 +31,9 @@
#include <linux/namei.h>
#endif
#include <linux/highmem.h>
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
+#include <linux/dcache.h>
+#endif