Skip to content

Instantly share code, notes, and snippets.

View zkat's full-sized avatar
💭
Rusting it up

Kat Marchán zkat

💭
Rusting it up
View GitHub Profile
[PROFILE]
[TITLE:WELL-PREPPED (0XABADIDEA STYLE)]
[SKILL:1:MINING:5]
[SKILL:1:HAMMER:2]
[SKILL:1:SWIMMING:2]
[SKILL:1:MELEE_COMBAT:1]
[SKILL:2:MINING:5]
[SKILL:2:SWORD:2]
[SKILL:2:CROSSBOW:2]
[SKILL:2:SWIMMING:1]
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@namuol
namuol / INSTALL.md
Last active July 24, 2023 11:53
rage-quit support for bash

rage-quit support for bash

HOW TO INSTALL

Put flip somewhere in your $PATH and chmod a+x it.

Copy fuck into ~/.bashrc.

@imjoshdean
imjoshdean / gist:5699289
Last active December 18, 2015 00:49
Node Mini-Server
/**
* Module dependencies.
*/
var express = require('express'),
http = require('http');
var app = express();
app.configure(function(){
app.use(express.favicon());
@piscisaureus
piscisaureus / pr.md
Created August 13, 2012 16:12
Checkout github pull requests locally

Locate the section for your github remote in the .git/config file. It looks like this:

[remote "origin"]
	fetch = +refs/heads/*:refs/remotes/origin/*
	url = git@github.com:joyent/node.git

Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this: