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 ( | |
"log" | |
"os/exec" | |
"syscall" | |
"time" | |
) | |
type Process struct { |
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
-- show running queries (9.2) | |
SELECT pid, client_addr, age(clock_timestamp(), query_start), usename, query, state | |
FROM pg_stat_activity | |
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' | |
ORDER BY query_start desc; | |
-- kill running query | |
SELECT pg_cancel_backend(procpid); | |
-- kill idle query |
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 yourpackage | |
import org.scalatra.auth.strategy.BasicAuthSupport | |
import org.scalatra.auth.{ScentryConfig, ScentryStrategy, ScentrySupport} | |
import org.scalatra.{ScalatraBase, Unauthorized} | |
import javax.servlet.http.{HttpServletRequest, HttpServletResponse} | |
import java.util.Locale | |
class TokenAuthRequest(r: HttpServletRequest) { |
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
The Phoenix Project | |
Meditations | |
Ego Is the Enemy | |
Smarter Faster Better | |
Flash Boys: A Wall Street Revolt |
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
Fiction: | |
On Writing (Stephen King) | |
Masters of Doom | |
Hackers: Heroes of the computing revolution | |
Sci fi: | |
Ready Player One | |
Cryptonomicon | |
Old Mans War |
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
Yank normally, but just copy it automatically to your system clipboard as well. | |
Added to my .vimrc. Should work from visual mode when you press y and from ex mode: 1,10YankToSystemRegister | |
" Auto Yank text to the OS X clipboard | |
function! CopyToSystemRegister() | |
let @*=@" | |
endfunction | |
command! -range -bar YankToSystemRegister <line1>,<line2>yank|call CopyToSystemRegister() | |
vnoremap y :YankToSystemRegister<cr> |
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
# run as: ruby sym_link_reso.rb input.txt | |
lines = open(ARGV[0]).readlines | |
directory = lines.last | |
symlinks = lines[1..-2].each_with_object({}) do |line, hash| | |
symlink = line.chomp.split(':') | |
hash[symlink[0].chomp("/")] = symlink[1].chomp("/") | |
end |
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
# Install node http-server | |
sudo npm install http-server -g | |
# Install ngrok - https://ngrok.com/ | |
brew install ngrok | |
# Change to the directory you want to serve: |
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
Finds: | |
routing_number\": \"01030800\" | |
account_number\": \"02010101\" | |
Grep with perl: | |
grep -Poh 'routing_number\\".*?\\".*?\\"' file.txt | |
grep -Poh 'account_number\\".*?\\".*?\\"' file.txt |
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
def timeMethod(method, message) { | |
def startTime = System.currentTimeMillis() | |
method() | |
def totalTime = System.currentTimeMillis() - startTime | |
log.info "${message} ${totalTime} ms" | |
} | |
... | |
timeMethod({ someMethod() }, "someMethod Time:") | |
... |
NewerOlder