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
!/usr/bin/env ruby | |
# | |
class GeoDist | |
def self.haversine(lat1, lon1, lat2, lon2) | |
r = 6371 ## km | |
dLat = self.toRadians(lat2-lat1) | |
dLon = self.toRadians(lon2-lon1) | |
lat1 = self.toRadians(lat1) | |
lat2 = self.toRadians(lat2) |
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
$ echo "This is a secret file" | openssl enc -aes-256-cbc > secret.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
set nocompatible | |
set backspace=indent,eol,start | |
filetype plugin indent on | |
set history=50 | |
set ruler | |
set number | |
set showcmd | |
set incsearch |
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
% resume.tex | |
% | |
% Layout (c) 2007-2011 Jeremy B. R. Edberg <[email protected]> http://www.jedberg.net | |
% | |
%%%%%%%%%%%% | |
% Variables, fill these in: | |
\newcommand{\resumeauthor}{Your Full Name} | |
\newcommand{\resumeemail}{[email protected]} | |
\newcommand{\resumephone}{Mobile: 812-555-1234} |
NewerOlder