I hereby claim:
- I am 0b01 on github.
- I am 0b01 (https://keybase.io/0b01) on keybase.
- I have a public key ASBOSb5rG-iJvINhxUJRiu1KdVnE8pSexK2rKu-Zx4JaIwo
To claim this, I am signing this object:
| # variables | |
| LOC=westus2 | |
| RG=rg-aca-tailscale-$LOC | |
| ENV=aca-env-$LOC | |
| APP=aca-ts-exit-$LOC | |
| TS_HOSTNAME=aca-exit-$LOC | |
| TS_AUTHKEY="tskey-auth-xxxxxxxxxxx-xxxxxxxxxxxxxxxxxx" | |
| # resource group | |
| az group create -n $RG -l $LOC |
| //! Algorithm for arranging notes on bass | |
| //! takes in a csv of notes with header | |
| //! and outputs csv of fretboard positions with header | |
| extern crate csv; | |
| use std::collections::HashMap; | |
| const MIDI_A4: f32 = 69.; | |
| const FREQ_A4: f32 = 440.; |
I hereby claim:
To claim this, I am signing this object:
| import astunparse, ast, astpretty | |
| from ast import * | |
| fname = "./raw_fizzbuzz.py" | |
| with open(fname) as f: | |
| txt = f.read() | |
| class RewriteName(NodeTransformer): | |
| def visit_BoolOp(self, node): | |
| # print astpretty.pprint(node) |
I hereby claim:
To claim this, I am signing this object:
| {-# LANGUAGE OverloadedStrings #-} | |
| {-# OPTIONS_GHC -Wall #-} | |
| -- Set your font to a monospace font which makes this character the same as the line-height: │ | |
| -- | |
| -- Otherwise, you'll see an ugly gap between connected lines if the | |
| -- line-height of the font is high. | |
| -- | |
| -- Example fonts: | |
| -- |
| import asyncio | |
| import json | |
| import threading | |
| import urllib | |
| import urllib.request | |
| from collections import OrderedDict | |
| import websockets | |
| GET_TICKERS_URL = 'https://poloniex.com/public?command=returnTicker' |
| """ | |
| Beam decoder for tensorflow | |
| Sample usage: | |
| ``` | |
| from tf_beam_decoder import beam_decoder | |
| decoded_sparse, decoded_logprobs = beam_decoder( | |
| cell=cell, |
| apply plugin: 'org.springframework.boot' | |
| apply from: 'http://dl.bintray.com/scalding/generic/waroverlay.gradle' | |
| apply from: 'https://raw.githubusercontent.com/apereo/cas/5.0.x/gradle/overrides.gradle' | |
| bootRepackage { | |
| enabled = false | |
| } | |
| springBoot { | |
| mainClass = "org.springframework.boot.loader.WarLauncher" |
| <html> | |
| <head> | |
| <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | |
| <script> | |
| (function ($) { | |
| var maxfps = 25, | |
| delay = 1 / maxfps * 1000, |