This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import proplot as plt, cmasher as cmr, pandas as pd,\ | |
| numpy as np, os, sys, networkx as nx, warnings,\ | |
| re | |
| from pathlib import Path | |
| warnings.simplefilter("ignore") | |
| g = nx.krackhardt_kite_graph() | |
| pos = nx.kamada_kawai_layout(g) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import matplotlib.pyplot as plt | |
| from matplotlib.offsetbox import OffsetImage, AnnotationBbox | |
| g = nx.krackhardt_kite_graph() | |
| pos = nx.kamada_kawai_layout(g) | |
| example = "unknown.jpg" | |
| fig, ax = plt.subplots() | |
| output_size = 25 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bashgit clone --bare [email protected]:cvanelteren/dots.git $HOME/.dotfiles# define config alias locally since the dotfiles | |
| # aren't installed on the system yet | |
| function config { | |
| git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME $@ | |
| }# create a directory to backup existing dotfiles to | |
| mkdir -p .dotfiles-backup | |
| config checkout | |
| if [ $? = 0 ]; then | |
| echo "Checked out dotfiles from [email protected]:cvanelteren/dotfiles.git"; | |
| else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import matplotlib.pyplot as plt | |
| import matplotlib.colors as mcolors | |
| import numpy as np | |
| def create_continuous_colormap(colors, name='custom_colormap'): | |
| # Define color positions (evenly spaced between 0 and 1) | |
| n = len(colors) | |
| positions = np.linspace(0, 1, n) | |
| # Create a colormap |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import strutils, strformat, os, random, times | |
| import dynlib | |
| import nimpy, nimpy/py_lib, nimpy/py_types | |
| {.pragma: pyfunc, cdecl, gcsafe.} | |
| import locks | |
| import malebolgia, math | |
| import random, os | |
| import chronos |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer