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
; Boiler Plate | |
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
;SetMouseDelay 0 | |
; Staff Switch | |
; \ is the key that it is bound to | |
; Just flips to inventory and I keep my staff in slot 2 | |
; And then flips back to spell pane |
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
Updated the project to compile with Xcode 4.0 | |
From: Will Walthall <[email protected]> | |
--- | |
cocos2d-ios.xcodeproj/project.pbxproj | Bin | |
1 files changed, 0 insertions(+), 0 deletions(-) | |
diff --git a/cocos2d-ios.xcodeproj/project.pbxproj b/cocos2d-ios.xcodeproj/project.pbxproj |
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
body { | |
margin: 0; | |
} | |
body.index { | |
background-color: #000; | |
background-image: url(images/background9.jpg); | |
-webkit-background-size: cover; | |
-moz-background-size: cover; | |
-o-background-size: cover; |
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
set nocompatible | |
set noedcompatible | |
set hidden | |
" Pathogen bundle manager | |
runtime bundle/vim-pathogen/autoload/pathogen.vim | |
call pathogen#infect() | |
" Indention and Syntax |
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
# ------------------------------------------------------- | |
# Prompt / Xterm | |
# ------------------------------------------------------- | |
# Prompt colors | |
_txt_col="\e[00m" # Std text (white) | |
_bld_col="\e[01;37m" # Bold text (white) | |
_wrn_col="\e[01;31m" # Warning | |
_sep_col=$_txt_col # Separators | |
_usr_col="\e[01;32m" # Username |
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
diff --git a/autogen.sh b/autogen.sh | |
index b78711e..e8c3681 100755 | |
--- a/autogen.sh | |
+++ b/autogen.sh | |
@@ -316,13 +316,14 @@ AUTOHEADER=`echo $AUTOCONF | sed s/autoconf/autoheader/` | |
case $REQUIRED_AUTOMAKE_VERSION in | |
1.4*) automake_progs="automake-1.4" ;; | |
- 1.5*) automake_progs="automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake-1.7 automake-1.6 automake-1.5" ;; | |
- 1.6*) automake_progs="automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake-1.7 automake-1.6" ;; |
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 | |
# Update System | |
pacman -Syu | |
# Display any updated config files | |
find /etc -name "*.pac*" |
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
throw: all goroutines are asleep - deadlock! | |
goroutine 1 [chan receive]: | |
main.main() | |
/home/ghthor/proj/go/ddnsd/main.go:121 +0x5e | |
goroutine 2 [syscall]: | |
created by runtime.main | |
/build/src/go/src/pkg/runtime/proc.c:221 |
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
{ | |
"passfail" : false, | |
"maxerr" : 100, | |
"browser" : true, | |
"node" : false, | |
"rhino" : false, | |
"couch" : false, | |
"wsh" : false, |
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
package main | |
import ( | |
"bytes" | |
"crypto/rand" | |
"encoding/binary" | |
"fmt" | |
. "github.com/ghthor/gospec/src/gospec" | |
"github.com/ghthor/gospec/src/gospec" | |
"log" |
OlderNewer