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
# encoding: UTF-8 | |
# Spell check plugin for earthquake.gem | |
# | |
# written by Smile @rT, https://github.com/smileart, [email protected] | |
# | |
# INSTALL: | |
# | |
# 1. Resolve dependencies of raspell.gem: | |
# https://github.com/evan/raspell/blob/master/README.rdoc | |
# |
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
/* | |
* Copyright 2011 Benjamin Tissoires <[email protected]> | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
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
;;; Almost Monokai: color-theme-almost-monokai.el | |
;;; A beautiful, fruity and calm emacs color theme. | |
;; Author: Prateek Saxena <[email protected]> | |
;; Author: Pratul Kalia <[email protected]> | |
;; | |
;; Based on the Monokai TextMate theme | |
;; Author: Wimer Hazenberg <http://www.monokai.nl> | |
;; Depends: color-theme |
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
#!/bin/bash | |
# This script is designed to be run in conjunction with a UEFI boot using Archboot intall media. | |
# prereqs: | |
# -------------------- | |
# EFI "BIOS" set to boot *only* from EFI | |
# successful EFI boot of Archboot USB | |
# mount -t vfat /dev/sdb1 /src |
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 'formula' | |
class Emacs24 < Formula | |
url 'http://ftpmirror.gnu.org/emacs/emacs-23.3b.tar.bz2' | |
md5 '917ce0054ef63773078a6e99b55df1ee' | |
homepage 'http://www.gnu.org/software/emacs/' | |
fails_with_llvm "Duplicate symbol errors while linking.", :build => 2334 | |
# Stripping on Xcode 4 causes malformed object errors |
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
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: nginx | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: nginx init.d script for Ubuntu 8.10 and lesser versions. | |
# Description: nginx init.d script for Ubuntu 8.10 and lesser versions. | |
### END INIT INFO |
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
# ZSH config for remote servers | |
# Encoding | |
LANG=en_US.UTF-8 | |
# Path | |
export PATH=$HOME/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
# Appearence | |
# ls colors |
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
# Path to your oh-my-zsh configuration. | |
export ZSH=$HOME/.oh-my-zsh | |
# Set to the name theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
export ZSH_THEME="jreese" | |
# Set to this to use case-sensitive completion | |
# export CASE_SENSITIVE="true" |
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
;; emacs configuration suited for terminal use | |
(add-to-list 'load-path "~/.emacs.d") | |
(setq make-backup-files nil) | |
(setq auto-save-default nil) | |
(setq-default tab-width 2) | |
(setq-default indent-tabs-mode nil) | |
(setq inhibit-startup-message t) |
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
class TestLibrary | |
@@stack = [] | |
def self.stack | |
@@stack | |
end | |
def self.test_methods | |
public_instance_methods.grep(/^test/) | |
end |