Skip to content

Instantly share code, notes, and snippets.

@kdunn926
kdunn926 / process.MD
Created April 12, 2024 21:02
Odoo OpenUpgrade steps
$ pip install --ignore-installed \
              git+https://github.com/OCA/openupgradelib.git@master

Running from target odoo version root directory with matching OpenUpgrade checked out in OpenUpgrade

@kdunn926
kdunn926 / fibonacci-spiral.py
Last active September 29, 2020 19:37
fibonacci-spiral-python-matplotlib
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import axes3d
import math
# Ported from Matlab code provided in "The “Other” Fibonacci Spiral and Binet Spirals" - Cye H. Waldman (cye@att.net)
# http://old.nationalcurvebank.org//waldman7/WaldmanOtherFibonacciSpiralandBinetSpirals.pdf
def HyperbolicGeneralBinet(n: np.ndarray, a: int, b: int, c: int) -> (np.ndarray, np.ndarray): # (chb, shb)
"""
@kdunn926
kdunn926 / .circleci\config.yml
Last active December 9, 2019 19:05
CircleCI ElasticBeanstalk deployment with NodeJS application and Docker runtime
version: 2
jobs:
build-test:
docker:
- image: circleci/node:10.7.0
working_directory: ~/repo
steps:
- checkout