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
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
// 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
#!/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
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
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
# 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
curl -X "GET" "https://api.twitter.com/1.1/search/tweets.json?q=chicken" \ | |
-H "Authorization: Bearer MY_BEARER_TOKEN" |
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 python | |
import re | |
data = open('kafka-lag-logs.txt','r').readlines() | |
BASE_REGEX="Lag for group ([_\w]+) on partition ([-\w]+) \(([,\w]+)\)" | |
def extractData(row): | |
matches = re.findall(BASE_REGEX, row) | |
if matches: | |
group, partition, count = matches[0] |
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
# gitignore | |
func gitignore() { | |
curl https://raw.githubusercontent.com/github/gitignore/master/$1.gitignore | |
} |