go build -o goencrypt main.go
This file contains hidden or 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
grammar expr; | |
parse | |
: expression* EOF | |
; | |
expression | |
: assignmentExpression | |
; |
This file contains hidden or 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
<html lang="en"> | |
<head> | |
<!-- Meta --> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" type="text/css" href="main.css"> | |
<link rel="stylesheet" type="text/css" href="rework-grid.css"> | |
</head> |
This file contains hidden or 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
import tributary | |
from tributary.core import Engine, Message | |
from tributary.streams import StreamElement, StreamProducer | |
from tributary.events import StopMessage, STOP | |
import tributary.ext.fs as fs | |
import decimal | |
import time | |
import logging | |
import pyhash |
This file contains hidden or 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
from tributary.core import Engine, Message, ExecutionContext, Service | |
from tributary.streams import StreamElement, StreamProducer | |
from tributary.events import StopMessage, STOP | |
import tributary.ext.fs as fs | |
import tributary.ext.ipc as ipc | |
from collections import defaultdict | |
import operator | |
import logging |
This file contains hidden or 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
Create directory in ST3 Packages: eg. gosub | |
Copy GIST file into new directory: | |
/Users/mfranks/Library/Application Support/Sublime Text 3/Packages/gosub/gosubl.py |
This file contains hidden or 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
>>> INSERT { | |
... year: 2014, month: 4, day: 1, | |
... key: '20140401', | |
... value: 1 | |
... } INTO COUNTER visits; | |
{ status_code: 2000, status: 'OK' } | |
>>> INSERT {key: '0x045678', value: 5} INTO CACHE latest_voltage; | |
{ status_code: 2000, status: 'OK' } |
This file contains hidden or 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
//CLIENT | |
package main | |
import ( | |
"bufio" | |
"fmt" | |
"io" | |
"net" | |
"runtime" | |
"sync" |
This file contains hidden or 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
//CLIENT | |
package main | |
import ( | |
"bufio" | |
"fmt" | |
"io" | |
"math/rand" | |
"net" | |
"runtime" |
OlderNewer