I hereby claim:
- I am sboysel on github.
- I am sboysel (https://keybase.io/sboysel) on keybase.
- I have a public key whose fingerprint is F0BB B0B8 886D 1CDB 392D E755 2E8D EF7C 3554 032D
To claim this, I am signing this object:
select | |
num.TagName as Tag, | |
row_number() over (order by num.Num desc) as TotalRank, | |
rate.Rate as QuestionsInMay, | |
num.Num as QuestionsTotal | |
from | |
(select count(PostId) as Rate, TagName | |
from |
#!/usr/bin/env bash | |
# Evan Wilde <[email protected]> | |
# July 20, 2017 | |
# defaults | |
user="postgres" | |
passwd="" | |
host="localhost" | |
db="ghtorrent" | |
tmpdir='/tmp' |
I hereby claim:
To claim this, I am signing this object:
[ | |
{ | |
"name": "Risha38", | |
"author": "Sam Boysel" | |
}, | |
[ | |
{ | |
"x": 2, | |
"f": 5 | |
}, |
import time | |
def timer(f): | |
""" | |
timer function decorator. Prints time elapsed (in seconds) of the function's | |
runttime. | |
Usage: | |
@timer |
""" | |
simple way to get the directory path of the current file. | |
Extension: simply add additonal `.parent`s if __file__ is in a subdirectory of ROOT | |
""" | |
import pathlib | |
ROOT = pathlib.Path(__file__).parent |