This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# Command of the day | |
# Picks a random executable from your path until it finds one with a manpage. | |
# Use this to learn about some of the really obscure yet really useful scripts that are already on your system. | |
files = ENV["PATH"].split(":").uniq.compact.map { |path| | |
Dir.glob(File.join(path,'*')).select {|file| File.file?(file) && File.executable?(file)} | |
}.flatten.compact.uniq | |
cotd = File.basename(files[rand(files.size)]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CONDOM(1) EUNUCH Programmer's Manual CONDOM(1) | |
NAME | |
condom - Protection against viruses and prevention of child | |
processes | |
SYNOPSIS | |
condom [options] [processid] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file fsm.c | |
* @brief an implementation for a FSM in C, this file contains | |
* implementation of definations. | |
* License GPLv3+ | |
* @author Ankur Shrivastava | |
*/ | |
#include "fsm.h" | |
#include<stdlib.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=begin | |
Author: Jabari Zakiya, Original: 2009-12-25 | |
Revision-2: 2009-12-31 | |
Revision-3: 2010-6-2 | |
Revision-4: 2010-12-15 | |
Revision-5: 2011-5-11 | |
Revision-6: 2011-5-15 | |
Module 'Roots' provides two methods 'root' and 'roots' | |
which will find all the nth roots of real and complex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE language SYSTEM "language.dtd"> | |
<!-- | |
Kate SCSS syntax highlighting definition | |
Modified the Kate CSS syntax highlighting definition to support SCSS. | |
This file should be merged with any updates to the normal Kate CCS definition (see note on version numbering in changelog for 1.2.03.0). | |
The latest version of this file can be found at https://gist.github.com/958598 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Wow! It's so much better when you do it faster! | |
Take it out and start working on it. | |
I wish you would finish already. | |
This thing is huge. I can hardly put my hand around it and it wont fit in my mouth. | |
When you push it down, it's supposed to rise back up. | |
I hate it when balls come near me. | |
Alright Justin, what am I doing wrong here, help me out cause it shouldn't take this long. | |
Wow, why do you only have one hand on there? Is it not big enough for both of them? | |
I think I cant swallow it anymore. | |
I like the long thick black ones. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;; pretty-literals.lisp - pretty hash table & vector literal syntax | |
;;;; inspired by and uses code from http://frank.kank.net/essays/hash.html | |
(in-package #:pretty-literals) | |
;; vector literal syntax using brackets | |
(set-macro-character #\[ | |
(lambda (str char) | |
(declare (ignore char)) | |
(let ((*readtable* (copy-readtable *readtable* nil)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'flog' | |
require 'flog_task' | |
require 'flay' | |
require 'flay_task' | |
require 'roodi' | |
require 'roodi_task' | |
FlogTask.new :flog, SOME_NUMBER_HERE, %w[app lib] | |
FlayTask.new :flay, OTHER_NUMBER_HERE, %w[app lib] | |
RoodiTask.new 'roodi', ['app/**/*.rb', 'lib/**/*.rb'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//created by Eliot Lash and Robert Muller on 10/3/10 | |
//copyright Eliot Lash and Robert Muller 2011 | |
//Welcome to Ye Olde Sea Pluss Pluss! | |
#include <iostream> | |
#include <string> | |
#include "olde.h" | |
#define normal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make it use C-a, similar to screen.. | |
unbind C-b | |
unbind l | |
set -g prefix C-a | |
bind-key C-a last-window | |
# Reload key | |
bind r source-file ~/.tmux.conf | |
set -g history-limit 1000 |
OlderNewer