Skip to content

Instantly share code, notes, and snippets.

@ztnark
ztnark / attestation.txt
Created September 3, 2021 18:31
Attestation
I contributed to the clr.fund Trusted Setup Multi-Party Ceremony.
The following are my contribution signatures:
Circuit: qvt32
Contributor # 150
Hash: undefined
Circuit: batchUst 32
Contributor # 148
Hash: 3f9c8014 deb3d08f ff9b25f8 a9e2a1d1
936949c0 5210aa01 dd66466f accaa642
var strava = require('strava-v3')
var axios = require('axios')
var moment = require('moment')
require('dotenv').config()
let accessToken;
axios.post('https://www.strava.com/api/v3/oauth/token', {
client_id: process.env.CLIENT_ID,
client_secret: process.env.CLIENT_SECRET,
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.webdriver.support.ui import WebDriverWait
# If you want to open Chrome
driver = webdriver.Chrome()
# If you want to open Firefox
driver = webdriver.Firefox()
import csv
import time
with open('trades.csv', 'rb') as tradesfile:
trades = csv.reader(tradesfile, delimiter=",",quotechar='|')
with open('newTrades.csv', 'wb') as newTradesfile:
tradesWriter = csv.writer(newTradesfile, delimiter=',',quotechar='|', quoting=csv.QUOTE_MINIMAL)
counter = 0
for row in trades:
counter = counter + 1
if counter != 1:

Keybase proof

I hereby claim:

  • I am ztnark on github.
  • I am jkrantz (https://keybase.io/jkrantz) on keybase.
  • I have a public key whose fingerprint is 1FC1 A220 F927 6BEB 2B77 239F 1356 F7C9 5ECC DA47

To claim this, I am signing this object:

import sys
import json
import os
#import from the 21 Developer Library
from two1.commands.config import Config
from two1.lib.wallet import Wallet
from two1.lib.bitrequests import BitTransferRequests
# set up bitrequest client for BitTransfer requests
wallet = Wallet()
#ruby quiz http://rubyquiz.strd6.com/quizzes/181-bowling-scores
@string_rolls = "6 2 7 1 10 9 0 8 2 10 10 3 5 7 2 5 5 8"
def integize(rolls)
rolls.split(" ").map! {|roll| roll.to_i}
end
def insert_tens
rolls_array = integize(@string_rolls)
# ruby quiz http://rubyquiz.strd6.com/quizzes/230-the-matrix-code-screen
gem 'colorize'
require 'colorize'
def clear_screen
puts "\e[H\e[2J"
end
def matrix_has_you
@ztnark
ztnark / index.html
Created October 2, 2013 03:10 — forked from dbc-challenges/index.html
DBC Phase 2 Practice Assessment Part 3
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="http://cdn.jsdelivr.net/normalize/2.1.0/normalize.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,900">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.0.2/css/font-awesome.min.css">
</head>
@ztnark
ztnark / carousel.js
Created September 26, 2013 19:17 — forked from ksolo/carousel.js
Image Carousel