I hereby claim:
- I am dvcrn on github.
- I am dvcrn (https://keybase.io/dvcrn) on keybase.
- I have a public key ASD90ukgjRDay6u9VaMUG_WeXf4xhzUAhUVgaG7Di83jzwo
To claim this, I am signing this object:
| fs = require 'fs' | |
| webpage = require 'webpage' | |
| page = webpage.create() | |
| renderedUrls = 0 | |
| totalUrls = 0 | |
| # Taken from https://github.com/ariya/phantomjs/blob/master/examples/waitfor.js | |
| # Converted into coffee | |
| waitFor = (testFx, onReady, timeOutMillis) -> | |
| maxtimeOutMillis = (if timeOutMillis then timeOutMillis else 5000) #< Default Max Timout is 3s |
| emacs () { | |
| PROCESS=Emacs | |
| number=$(ps aux | grep $PROCESS | wc -l) | |
| if [ $number -gt 1 ] | |
| then | |
| emacsclient -c -n $1 | |
| else | |
| open -a /usr/local/Cellar/emacs-mac/emacs-24.5-z-mac-5.8/Emacs.app $1 | |
| fi |
| from pybing import Bing | |
| from urllib2 import HTTPError | |
| from BeautifulSoup import BeautifulSoup | |
| from pybing import constants | |
| import re | |
| import mechanize | |
| import simplejson | |
| searchstring = "cows" # your search string here | |
| searchcount = 40 |
| parse_tweet = function (str) { | |
| var create_link = function (url, text) { | |
| var link = $("<a>", { | |
| text: text, | |
| href: url, | |
| target: "_blank" | |
| }); | |
| return link.prop('outerHTML'); | |
| }; |
I hereby claim:
To claim this, I am signing this object:
| # example to fetch the current MONA price in JPY | |
| # needs http://www.mousedown.net/mouseware/JSONHelper.html | |
| # replace 'neo' with any other ID supported by coinmarketcap | |
| # using coinmarketcaps convert API to add `price_jpy` to the result | |
| set json_data to (do shell script "curl https://api.coinmarketcap.com/v1/ticker/monacoin/?convert=JPY") | |
| tell application "JSON Helper" | |
| set json_data to read JSON from json_data | |
| end tell |
| #!/usr/bin/env python | |
| import sys | |
| from twython import Twython | |
| import random | |
| CONSUMER_KEY = 'xxxx' | |
| CONSUMER_SECRET = 'xxxx' | |
| ACCESS_KEY = 'xxxx' | |
| ACCESS_SECRET = 'xxxx' |
| (def Realm (js/require "realm")) | |
| ;; define dog schema | |
| (def dog {:name "Dog" | |
| :properties {:name "string" | |
| :age "int"}}) | |
| ;; instantiate Realm with the dog schema | |
| (def r (Realm. (clj->js {:schema [dog]}))) |
| testset = [ | |
| [1, 4], | |
| [2, 8], | |
| [3, 12], | |
| [4, 16] | |
| ] | |
| theta0 = 0 | |
| theta1 = 0 | |
| learningrate = 0.01 |
| import * as metaplex from "@metaplex/js"; | |
| import * as web3 from "@solana/web3.js"; | |
| const connection = new web3.Connection( | |
| web3.clusterApiUrl("mainnet-beta"), | |
| "confirmed" | |
| ); | |
| const tokenAddress = "CxkKDaBvtHqg8aHBVY8E4YYBsCfJkJVsTAEdTo5k4SEw"; |