I hereby claim:
- I am FloorLamp on github.
- I am wang (https://keybase.io/wang) on keybase.
- I have a public key whose fingerprint is 51B6 BB4E E3AF 8F76 DCF5 FB96 07B6 40ED 7311 CADD
To claim this, I am signing this object:
Probably Initial Liquidity, may or may not include fees | |
Account Amount Exchange | |
0934870202a608cf4d972c2d42bb4b56f3fc38d041d0c06ffefaf24eb3a61da5 152,001.00 Binance | |
0ac39206b63eb78ac09a46b5845749fedfbf160673df577499263bceb315eb30 150,001.00 Binance | |
24f709c3ca7d48a28830e700095b5dde5ba67b2e160bb7a754108365a5f8804e 120,001.00 Binance | |
05ad474665f1eec0714c1a4ec941c3a395c703e14bb43100bd946d80b87828af 750,000.00 Coinbase | |
000a1f0436e925af8ae9ca45786f0ae85bd66f357fb0d19c9d3320e180710cf1 626,515.00 Coinbase | |
cb749bf3c884df6bf0a4738f0c106446710e269166e3c9955208697502f096ba 200,001.00 Coinbase | |
27d17170508492a35f5b0a5cd62ba7fefb43a24e09daa41239b6d5c9c67a613f 200,001.00 Coinbase |
0xb097C3e1578A04Db757EAf7FA1f9F661E38E1498 |
Verifying that +norton is my Bitcoin username. You can send me #bitcoin here: https://onename.io/norton |
I hereby claim:
To claim this, I am signing this object:
ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future |
{ | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"fade_fold_buttons": false, | |
"font_face": "Consolas", | |
"font_size": 16, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": |
from collections import defaultdict | |
import datetime | |
import requests | |
import time | |
CHECKINS_API = 'https://api.foursquare.com/v2/users/self/checkins' | |
CATEGORIES_API = 'https://api.foursquare.com/v2/venues/categories' | |
YEAR_BEGIN = int(time.mktime(datetime.date(2013,1,1).timetuple())) | |
YEAR_END = int(time.mktime(datetime.date(2014,1,1).timetuple())) | |
WEEK = int(time.mktime(datetime.date(2013,12,29).timetuple())) |
defaults write -g AppleShowAllFiles -bool true |
set autoindent | |
set expandtab | |
set shiftwidth=4 | |
set tabstop=4 | |
set softtabstop=4 | |
set backspace=indent,eol,start | |
set autoread | |
set ruler | |
set laststatus=2 | |
set showcmd |
# Git aliases | |
alias gs="git status -sb" | |
alias ga="git add" | |
alias gc="git commit -m" | |
alias gd="git diff" | |
alias gds="git diff --staged" | |
alias gl='git log --pretty=format:"%C(yellow)%h %Cgreen %an %x09 %Creset %s %Cblue (%cr)"' | |
alias gv="git branch -v" | |
# Logs |