Skip to content

Instantly share code, notes, and snippets.

View m3ta4a's full-sized avatar

Jake Van Alstyne m3ta4a

View GitHub Profile
@m3ta4a
m3ta4a / hack.sh
Last active December 15, 2015 03:08 — forked from amrox/hack.sh
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://gist.github.com/jakeva/5191758/raw/hack.sh | sh
#
#!/bin/bash
libs=( "/usr/local/lib/libmacfuse_i32.2.dylib" \
"/usr/local/lib/libosxfuse_i32.2.dylib" \
"/usr/local/lib/libosxfuse_i64.2.dylib" \
"/usr/local/lib/libmacfuse_i64.2.dylib" \
"/usr/local/lib/libosxfuse_i32.la" \
"/usr/local/lib/libosxfuse_i64.la" \
"/usr/local/lib/pkgconfig/osxfuse.pc" )
@m3ta4a
m3ta4a / Makefile
Created November 1, 2013 18:58 — forked from jvns/Makefile
obj-m += rootkit.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean