Skip to content

Instantly share code, notes, and snippets.

View caffeine-potent's full-sized avatar

Otto Wagner caffeine-potent

View GitHub Profile
def calculate_taxed_ammount( spent:float, tax_rate:float):
cost = spent / (1 + tax_rate)
taxed = spent - cost
print("Spent: {}\nCost: {}\nTaxed: {}".format(spent, cost, taxed))
calculate_taxed_ammount( spent = 171.376666667, tax_rate = .10)
import numpy as np
def create_n_depth_matrix(n: int) -> np.array:
"""Function used to generate all binary permutations of length n.
Binary permutations of n=3 for example would include:
[0,0,0],[0,0,1],[0,1,0],[0,1,1],[1,0,0],[1,0,1],[1,1,0],[1,1,1]
Binary permuataions are arranged in a 3d matrix of shape (n, a, b)
such that a*b == (2^n)
@caffeine-potent
caffeine-potent / flatten_tuples_and_lists.py
Created August 21, 2018 19:15
Flatten Lists and Tuples
from functools import reduce
flatten = lambda lst: reduce(lambda l, i: l + flatten(i) if isinstance(i, (list, tuple)) else l + [i], lst, [])
test = [[[[1,0],1],0],1]
print(flatten(test))
## Credit https://stackoverflow.com/questions/952914/making-a-flat-list-out-of-list-of-lists-in-python
@caffeine-potent
caffeine-potent / map.geojson
Last active December 23, 2018 06:59
Extent collections of terminal for image recognition project.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@caffeine-potent
caffeine-potent / export_dc_xarray_to_netcdf.py
Created April 1, 2019 18:54
Exporting an xarray with datacube attributes
import datacube
import xarray as xr
def export_xarray_to_netcdf(ds:xr.Dataset, path:str):
"""
Exports an xarray.Dataset as a single NetCDF file.
Parameters
----------
ds: xarray.Dataset
The Dataset to export.
@caffeine-potent
caffeine-potent / geom_mediod.py
Last active July 30, 2021 02:40
Geometric Median in one line of native python.
from scipy.spatial.distance import euclidean
points = [
[1,3],
[2,4],
[3,3],
[4,5],
[3,7],
[5,1],
[5,3],