Skip to content

Instantly share code, notes, and snippets.

We can't make this file beautiful and searchable because it's too large.
AL011851, UNNAMED,14,,,,,
18510625,0, , HU,28.0N,94.8W,80,-999
18510625,600, , HU,28.0N,95.4W,80,-999
18510625,1200, , HU,28.0N,96.0W,80,-999
18510625,1800, , HU,28.1N,96.5W,80,-999
18510625,2100, L, HU,28.2N,96.8W,80,-999
18510626,0, , HU,28.2N,97.0W,70,-999
18510626,600, , TS,28.3N,97.6W,60,-999
18510626,1200, , TS,28.4N,98.3W,60,-999
18510626,1800, , TS,28.6N,98.9W,50,-999
{"people":[{"id":0,"name":"Thales","time":"580 BC","loc":"Miletus","sortby":"Thales"},{"id":1,"name":"Anaximander","time":"610\u2013546 BC","loc":"Miletus","sortby":"Anaximander"},{"id":2,"name":"Anaximenes","time":"585\u2013528 BC","loc":"","sortby":"Anaximenes"},{"id":3,"name":"Pythagoras","time":"570\u2013497 BC","loc":"Samos","sortby":"Pythagoras"},{"id":4,"name":"Xenophanes","time":"570\u2013475 BC","loc":"Colophon","sortby":"Xenophanes"},{"id":5,"name":"Heraclitus","time":"535\u2013475 BC","loc":"Ephesus","sortby":"Heraclitus"},{"id":6,"name":"Parmenides","time":"515\u2013460 BC","loc":"","sortby":"Parmenides"},{"id":7,"name":"Empedocles","time":"490\u2013430 BC","loc":"","sortby":"Empedocles"},{"id":8,"name":"Leucippus & Democritus","time":"5th century BC","loc":"","sortby":"Leucippus & Democritus"},{"id":9,"name":"Zeno of Elea","time":"490\u2013430 BC","loc":"","sortby":"Zeno of Elea"},{"id":10,"name":"Socrates","time":"470\u2013399 BC","loc":"Athena","sortby":"Socrates"},{"id":11,"name":"Plato","time
{
"variables": {
"aws_access_key": "",
"aws_secret_key": ""
},
"builders": [{
"type": "amazon-ebs",
"access_key": "{{user `aws_access_key`}}",
"secret_key": "{{user `aws_secret_key`}}",
"region": "us-east-1",
- name: "Create Launch Configuration, ELB, Auto-Scaling group and rolling update of AMI"
hosts: localhost
tags:
- aws
vars:
- AMI: ami-xxxxxx
- region: us-east-1
- app: "coolapp"
- security_groups:
- sg-xxxxx
you, one who sighs and yawns crawls and nips
fallen from emptiness and all seamless words between.
what name have you given me in secret? what name
did i never call you by?
in my dream, you left me scraps of paper to read by moonlight,
written with the names of colors:
green- tired eyes. damp with dew at morning;
warm blanket inside cold- that is night.
hanuman
when i was starting to grasp what gods were
i remember asking my mother
what was painted on the walls of wat pra kao
who were the two men with green and white faces
painted endlessly on the walls of the temple of the emerald buddha
that's /hanoo-mawn/
the white monkey
@visnup
visnup / guest.pl
Created May 14, 2016 21:41
In 1995, I had a Friends fan site. This is the first code I ever wrote to support a message board on the site.
#!/usr/local/bin/perl
######################
# guest book script #
# Visnu Pitiyanuvath #
######################
push(@INC, "/home/h/hello/.html/cgi-bin");
require("cgi-lib.pl");
&ReadParse;
@visnup
visnup / README.md
Last active September 18, 2017 02:25
RICOH THETA S live 360º video stream rendering in Chrome via WebGL and a <video> texture

To get this working, you'll need the [live-streaming software from RICOH][1]. Install that and follow the [live video instructions][2] to connect your camera to your computer and have it show up as a video source.

If you're on a Mac, you can open up the FaceTime app and test it by picking "THETA UVC Blender" from the Video menu.

Once all of that is working, open up index.html and you should see the video rendered on the inside of a sphere that you can rotate around. Use the mouse to click and drag to move the camera around and the mouse wheel to zoom in and

@visnup
visnup / gi
Last active August 29, 2015 14:28
like `git`, but for typos (e.g. `gi tbranch -a`)
#!/bin/sh
# like `git`, but for typos (e.g. `gi tbranch -a`)
git "${1:1}" "${@:2}"
@visnup
visnup / index.html
Last active August 29, 2015 14:18
angular directive for frozen columns
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" type="text/css" />
<style type="text/css">
.table-frozen {
position: relative;
}
.table-frozen .col-frozen {
background-color: white;
}
</style>