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:
#!/usr/bin/env python | |
import sys | |
from twython import Twython | |
import random | |
CONSUMER_KEY = 'xxxx' | |
CONSUMER_SECRET = 'xxxx' | |
ACCESS_KEY = 'xxxx' | |
ACCESS_SECRET = 'xxxx' |
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'); | |
}; |
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 |
testset = [ | |
[1, 4], | |
[2, 8], | |
[3, 12], | |
[4, 16] | |
] | |
theta0 = 0 | |
theta1 = 0 | |
learningrate = 0.01 |
;; very simple example on how to use Animated with reagent | |
;; https://facebook.github.io/react-native/docs/animations.html | |
(def animated (.-Animated js/React)) | |
(def animated-value (.-Value animated)) | |
(def animated-view (r/adapt-react-class (.-View animated))) | |
(defn testview [] | |
(r/create-class |
I hereby claim:
To claim this, I am signing this object:
(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]}))) |
# 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 |