Skip to content

Instantly share code, notes, and snippets.

View Jamonek's full-sized avatar
🏗️
Building.. Exploring.. Dreaming..

Jamone Kelly Jamonek

🏗️
Building.. Exploring.. Dreaming..
View GitHub Profile
postfix operator ++ {}
postfix func ++(inout value: Int) -> Int {
value += 1
return value
}
postfix operator -- {}
postfix func --(inout value: Int) -> Int {
value -= 1
return value
//
// TabController.swift
// School For Me
//
// Created by Jamone Alexander Kelly on 2/14/16.
// Copyright © 2016 Jamone Kelly. All rights reserved.
//
import UIKit
import FontAwesomeKit
@Jamonek
Jamonek / Robinhood.py
Created April 17, 2018 18:50
Robinhood merge conflicts
<<<<<<< master
##############################
#GET OPEN ORDER(S)
##############################
def get_open_orders(self):
"""
Returns all currently open (cancellable) orders.
If not orders are currently open, `None` is returned.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import numpy
import pandas
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
# Scikit's LinearRegression model
from sklearn.linear_model import LinearRegression
from scipy import stats
import math