I hereby claim:
- I am cookie-s on github.
- I am kcz146 (https://keybase.io/kcz146) on keybase.
- I have a public key ASDm9xycQonpoHta2bepn5lRu7YD1gFK0PzJulxDVvayVgo
To claim this, I am signing this object:
| # ruby bq2json.rb <(bq show --format json 'project:dataset.table') | gron | |
| require 'json' | |
| schema = JSON.parse(IO.binread(ARGV.shift))['schema'] | |
| def dfs obj | |
| res = {} | |
| obj['fields'].map do |obj| | |
| case obj['type'] |
| require 'curses' | |
| progs = [ | |
| '-.+', | |
| '----[---->+<]>--.', | |
| '--[--->+<]>.++++.------.-[--->+<]>--.+++++[->+++<]>.-.---------.+++++++++++++..---.+++.[-->+<]>++++.+[-->+<]>+++.[--->++<]>.+++.------------.--.--[--->+<]>-.-----------.', | |
| '++++++.-.[----->++<]>++.+[--->+<]>+++.++++++++++.-------------.+.+++[->+++<]>++.-[--->++<]>-.----[->+++<]>-.++++++++++++..----.[-->+<]>++.-----------..-[--->++<]>--.', | |
| '-------------.++++++++++++.++++.++[->+++<]>.[--->+<]>----.+.++[->+++<]>.+++++++.+++++.[----->++<]>++.--[-->+++++<]>.---------.[--->+<]>---.[++>---<]>+.-[--->++<]>--.++[++>---<]>+.', | |
| '---[->++<]>....+[--->+++++<]>.[--->++<]>---.++++.+[--->+<]>.+++++++++++.------------.-[--->+<]>-.--------.--------.+++++++++.++++++.[++>---<]>.--[--->+<]>-.++++++++++++..----.--.----.', | |
| '+[--->+<]>.--.---[->++++<]>-.-.++++[->+++<]>+.[--->++<]>-----.-[->++<]>.[-->+<]>+.', |
| FROM alpine:3.12.1 | |
| RUN apk update && \ | |
| apk upgrade && \ | |
| apk add --no-cache \ | |
| curl \ | |
| git \ | |
| neovim \ | |
| && \ | |
| rm -rf /var/cache/apk/* |
| require 'awesome_print' | |
| puts <<EOS | |
| from z3 import * | |
| s = Solver() | |
| EOS | |
| newv = ->{ | |
| ctr=0 | |
| ->{ |
| // https://api.twitter.com/1.1/search/universal.json?q=tweenq | |
| { | |
| "metadata": { | |
| "cursor": "TWEET-170606166982930432-299822566774808577" | |
| }, | |
| "modules": [ | |
| { | |
| "status": { | |
| "data": { | |
| "contributors": null, |
| #include <stdio.h> | |
| #include <math.h> | |
| double f(double t, double x, double y, double ix) { | |
| const double k = 1.0; | |
| const double a = 1.0; | |
| const double c = 2.0; | |
| const double D = 0.5; | |
| return k * (a*x / (1 + a*x + c*ix)) - D * y; | |
| } |
| #include<stdio.h> | |
| #include<math.h> | |
| double f_ddy(double x, double y, double dy) { | |
| return -3.0 * dy - 2.0 * y + cos(x); | |
| } | |
| double f_dy(double x, double y, double dy) { | |
| return dy; | |
| } |
| #![feature(rustc_private)] | |
| extern crate rand; | |
| use rand::Rng; | |
| use std::ops::{Add, Sub}; | |
| #[derive(Clone, Copy, Debug)] | |
| struct Pt { | |
| x : f64, | |
| y : f64, |
I hereby claim:
To claim this, I am signing this object:
| let g:quickrun_config['asm'] = { | |
| \ 'exec' : './testasm.sh %s' | |
| \ } |