Skip to content

Instantly share code, notes, and snippets.

View linuxster's full-sized avatar

linuxster linuxster

View GitHub Profile

DIY Quant Investing

DIY Quantitative Stock Market Investing

Dr. Yves J. Hilpisch | The Python Quants & The AI Machine

Online, PyData Botswana, 15. September 2022

(short link to this Gist: http://bit.ly/pdb_diy)

@linuxster
linuxster / .bash_profile
Created May 12, 2019 07:52 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@linuxster
linuxster / kubernetes.md
Created May 5, 2019 16:01
[Kubernetes Commands] Common Kubernetes Commands #kubernetes #k8s
@linuxster
linuxster / git.md
Last active June 28, 2022 00:05
[Git Commands] Common git commands. #git

0 Getting & Creating Projects

Command Description
git init Initialize a local Git repository
git clone ssh://git@github.com/[username]/[repository-name].git Create a local copy of a remote repository

1 Create a task branch

With a clean master branch checked out, you can create a task branch by typing:

@linuxster
linuxster / docker_snippets.markdown
Last active May 5, 2019 15:42
[Docker Commands] Common docker commands. #docker
@linuxster
linuxster / ES_prediction_RF.ipynb
Last active May 5, 2019 16:03
[Stock Forecast Random Forest] Method of stock prediction using random forest. #randomforest #trading
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@linuxster
linuxster / ILP.ipynb
Last active August 9, 2023 16:43
ILP example in python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@linuxster
linuxster / Ass3q1LP.ipynb
Last active May 5, 2019 16:05
Linear Programming Example - Assignment 3q1
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@linuxster
linuxster / convert.py
Last active May 5, 2019 15:25 — forked from paulgb/convert.py
[Convert JSON to CSV] Convert Yelp Academic Dataset to JSON to CSV
'''
Convert Yelp Academic Dataset from JSON to CSV
Requires Pandas (https://pypi.python.org/pypi/pandas)
By Paul Butler, No Rights Reserved
'''
import json
import pandas as pd