Skip to content

Instantly share code, notes, and snippets.

View jrjames83's full-sized avatar

Jeff James jrjames83

View GitHub Profile
@jrjames83
jrjames83 / stock_price_min_max_noshort.py
Created July 4, 2018 15:33
Recursive algorithm to determine when to buy and sell stocks, not eval'd for edge cases
def get_buy_sell_prices(stocks: list):
if len(stocks) == 1:
return 'Cannot Profit - Down to 1 Stock'
if len(stocks) == 2:
if stocks[0] > stocks[1]:
return 'Cannot Profit - Down to 2 Stocks'
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jrjames83
jrjames83 / twitter_ru.ipynb
Created May 27, 2018 22:30
Twitter RU Data Take 2
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jrjames83
jrjames83 / ru_tweets.ipynb
Created May 26, 2018 16:04
Russian Tweet Analysis DU
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
-- idea #1 : Map jobs to a company using a correlated subquery
--
select j.id_1 as job_id,
COALESCE((
SELECT c.id_1 FROM company c
WHERE c.id_1 = j.id_1
), 0) as matching_company_1,
COALESCE((
SELECT c.id_2 FROM company c
@jrjames83
jrjames83 / Python Graph Traversal Fundamentals.ipynb
Created February 25, 2018 22:14
Fundamentals of Graph Traversals in Python (explain it to me like i'm 10 years old)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.