Skip to content

Instantly share code, notes, and snippets.

View apas's full-sized avatar

apas apas

View GitHub Profile
@apas
apas / latency.markdown
Created August 10, 2012 10:15 — forked from hellerbarde/latency.markdown
Latency numbers every programmer should know

Latency numbers every programmer should know

L1 cache reference ......................... 0.5 ns
Branch mispredict ............................ 5 ns
L2 cache reference ........................... 7 ns
Mutex lock/unlock ........................... 25 ns
Main memory reference ...................... 100 ns             
Compress 1K bytes with Zippy ............. 3,000 ns  =   3 µs
Send 2K bytes over 1 Gbps network ....... 20,000 ns  =  20 µs
SSD random read ........................ 150,000 ns  = 150 µs

Read 1 MB sequentially from memory ..... 250,000 ns = 250 µs

tell application "Finder"
reopen
activate
set p to (system attribute "HOME") & "/Documents/Dropbox"
set target of Finder window 1 to POSIX file p
end tell
@apas
apas / food.coffee
Created December 16, 2014 11:32
hubot food delivery script
# Description:
# Slackbot knows what you secretly crave for when you're not sure.
#
# Config:
# none
#
# Commands:
# $ what should i order? - displays random suggestion
#
# Author:
@apas
apas / -
Created June 24, 2015 15:34
ack
ant
brew-cask
emacs
faac
ffmpeg
fortune
freetype
gdb
gifsicle
slack() {
local channel=$1
local text=${@:2}
printf "Post status: " && curl --data "$text" $'https://your-slack-token-link'$channel
echo ""
}
@apas
apas / hash.py
Last active August 29, 2015 14:27
import hashlib
o = hashlib.md5(b"17,2,8,1,15,14,16,3,24,20,19,18,21,22,7,9,10,13,12,11,4,5,6,61,34,45,33,44,43,39,41,42,40,37,48,38,47,29,31,35,51,50,36,32,46,30,26,49,25,23,52,55,56,59,60,57,58,28,27,54,53,110,91,69,72,66,67,70,65,71,68,80,79,62,98,106,105,87,88,81,102,93,103,63,76,74,101,109,90,83,82,107,104,73,99,100,108,75,77,92,97,84,86,95,85,78,89,64,96,94,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127")
print o.hexdigest() # 7e1f461b2934873b69258a8659b1412f
@apas
apas / louie.sh
Created August 25, 2015 19:08
when you $ ck
alias cl='clear'
ck() {
declare -a array=("I'm bored' is a useless thing to say. You live in a great, big, vast world that you've seen none percent of."
"America's a family. We all yell at each other. It all works out."
"I don't stop eating when I'm full. The meal isn't over when I'm full. It's over when I hate myself."
"Life isn't something you possess. It's something you take part in, and you witness."
"It's more fun to experience things when you don't know what's going to happen."
"I think one reason TV has always done well is because there is something comforting where you kind of know what you're going to be taken through."
"Well, but maybe..."
@apas
apas / nginx.conf
Last active September 16, 2015 15:46 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
/opt/global/sge/bin/lx24-amd64:/usr/lib64/qt-3.3/bin:/opt/global/MPI/OpenMPI/OpenMPI-1.6.5/bin:/opt/global/intel/advisor_xe_2013/bin64:/opt/global/intel/inspector_xe_2013/bin64:/opt/global/intel/vtune_amplifier_xe_2013/bin64:/opt/global/intel/composer_xe_2013.0.079/bin/intel64:/opt/global/intel/composer_xe_2013.0.079/mpirt/bin/intel64:/opt/global/intel/composer_xe_2013.0.079/bin/intel64:/opt/global/intel/composer_xe_2013.0.079/bin/intel64_mic:/opt/global/intel/composer_xe_2013.0.079/debugger/gui/intel64:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/global/pgi/linux86-64/13.6/bin
call() {
open facetime://${1}
}