This file contains hidden or 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
# Sort what is in my clipboard | |
alias pbsort='pbpaste | sort | pbcopy' |
This file contains hidden or 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 com.nam.thrift.integration; | |
import junit.framework.TestCase; | |
import org.apache.thrift.TProcessor; | |
import org.apache.thrift.server.TServer; | |
import org.apache.thrift.server.TSimpleServer; | |
import org.apache.thrift.transport.TServerSocket; | |
import java.net.ServerSocket; |
This file contains hidden or 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
scala> (0 until 10).foldRight(1)((a, z) => {println(s"$a,$z"); a}) | |
9,1 | |
8,9 | |
7,8 | |
6,7 | |
5,6 | |
4,5 | |
3,4 | |
2,3 | |
1,2 |
This file contains hidden or 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 zsh | |
# or #!/usr/bin/env bash | |
function rvm_init(){ | |
RVM_VERSION=$(echo $MY_RUBY_HOME | awk -F'-' '{print $2}') | |
RVM_GEMSET=$(basename $(PWD)) | |
for i in "$@" | |
do |
This file contains hidden or 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
// Here You can type your custom JavaScript... | |
// Get a list of elements on the page. | |
var x = document.getElementsByTagName("*"); | |
// Go through each element and check for the accessKey property. | |
// Obliterate it if found. | |
for (var i = 0; i < x.length; i++) | |
{ | |
if(x[i].accessKey) | |
{ |
This file contains hidden or 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
When starting a project that includes refinerycms-blog: | |
$ rake refinery:override view=refinery/pages/* | |
$ rake refinery:override view=layouts/* | |
$ rake refinery:override view=refinery/blog/shared/* | |
$ rake refinery:override view=refinery/blog/posts/* | |
$ rake refinery:override view=refinery/* | |
$ rake refinery:override controller=refinery/blog/* | |
$ rake refinery:override controller=refinery/* |
This file contains hidden or 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
;; ispell | |
(dolist (hook '(text-mode-hook)) | |
(add-hook hook (lambda () (flyspell-mode 1)))) | |
(setq ispell-program-name "/usr/local/Cellar/ispell/3.3.02/bin/ispell") |
This file contains hidden or 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
# Sample file | |
samplef() { | |
# set -x | |
if [ -z "${1}" ]; then | |
echo 'Error: Missing file path' | |
echo | |
echo 'Usage:' | |
echo 'samplef <FILEPATH> <SAMPLE_SIZE>' | |
echo | |
echo 'Optional paramters: <SAMPLE_SIZE>, default is 0.1' |
This file contains hidden or 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
var EPSILON float64 = 0.00000001 | |
func floatEquals(a, b float64) bool { | |
if ((a - b) < EPSILON && (b - a) < EPSILON) { | |
return true | |
} | |
return false | |
} |
This file contains hidden or 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
go build -gcflags '-N' |