Skip to content

Instantly share code, notes, and snippets.

@Biber76
Biber76 / 97_Things_Every_Programmer_Should_Know.md
Created December 30, 2022 15:14 — forked from jonnyjava/97_Things_Every_Programmer_Should_Know.md
97 Things Every Programmer Should Know: Collective Wisdom from the Experts

97 Things Every Programmer Should Know: Collective Wisdom from the Experts

  1. Act with Prudence

    • Pay off technical debt as soon as possible. It would be imprudent to do otherwise.
  2. Apply Functional Programming Principles

  3. Ask "What Would the User Do?" (You Are Not the User)

    • Spending an hour watching users is more informative than spending a day guessing what they want.
@Biber76
Biber76 / tradingenv.py
Created June 28, 2023 05:54 — forked from mlblogger/tradingenv.py
Simple trading environment using openai gym
import gym
from gym.envs.registration import register
from gym import error, spaces, utils
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
import pandas_datareader.data as web
import arrow
import random
import sys