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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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
type WriteDB struct { | |
Conn *sql.DB | |
Err error | |
} | |
func (db *WriteDB) Do( | |
update, | |
title, | |
updated_at, | |
updated_by, |
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" | |
"encoding/gob" | |
"fmt" | |
) | |
type Animal interface { | |
Height() int |
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 ( | |
"fmt" | |
) | |
func orderOfMagnitude(magnitude, val int) int { | |
for { | |
if val == 0 { | |
break |
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
- mac: | |
brew install lua | |
brew install vim --with-lua | |
- plugin manager: https://github.com/junegunn/vim-plug | |
- double check that vim has +lua support: vim --version | |
- if not, compile: |
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 ( | |
"database/sql" | |
"fmt" | |
"github.com/mattn/go-sqlite3" | |
"log" | |
"os" | |
"regexp" | |
"time" |
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
.xmodmap (for japanese keyboard) | |
keycode 101 = backslash bar backslash bar | |
.Xdefaults: | |
xterm*Background: black | |
xterm*Foreground: white | |
xterm*faceName: Monaco | |
xterm*faceSize: 9 | |
.bashrc: |
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
- http://ghcformacosx.github.io/ | |
- http://xquartz.macosforge.org/landing/ | |
- LIBRARY_PATH=/opt/X11/lib:$LIBRARY_PATH cabal install X11 | |
- cabal install xmonad |
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
findg() { | |
find . -type f -exec grep -Hn "$1" {} \; | |
} | |
vim_open() { | |
vim $(find . -type f -exec grep -l "$1" {} \;) | |
} |
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 ( | |
"fmt" | |
"log" | |
"net" | |
"net/mail" | |
"net/smtp" | |
"crypto/tls" | |
) |
OlderNewer