This file contains 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
[tool.poetry] | |
name = "project" | |
version = "0.1.0" | |
description = "" | |
authors = ["Test"] | |
license = "MIT" | |
[tool.poetry.dependencies] | |
python = "^3.10" | |
orjson = "3.8.0" |
This file contains 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
robbyrussell/oh-my-zsh | |
robbyrussell/oh-my-zsh path:plugins/archlinux | |
robbyrussell/oh-my-zsh path:plugins/aws | |
robbyrussell/oh-my-zsh path:plugins/cargo | |
robbyrussell/oh-my-zsh path:plugins/colorize | |
robbyrussell/oh-my-zsh path:plugins/command-not-found | |
robbyrussell/oh-my-zsh path:plugins/docker | |
robbyrussell/oh-my-zsh path:plugins/git | |
robbyrussell/oh-my-zsh path:plugins/jsontools | |
robbyrussell/oh-my-zsh path:plugins/pip |
This file contains 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 os | |
import pathlib | |
import sys | |
import dj_database_url | |
class SettingsBase(type): | |
"""Class-based settings meta class""" |
This file contains 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
autoload -Uz compinit promptinit | |
compinit | |
promptinit | |
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then | |
source /etc/profile.d/vte.sh | |
fi | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm |
This file contains 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 python | |
def recursive_arithmetic_exception(depth=0, max_depth=20): | |
raise_string = ( | |
'%stry:\n' | |
'%sraise ArithmeticError\n' | |
'%sexcept ArithmeticError:\n' | |
% (' ' * depth * 4, ' ' * (depth * 4 + 4), ' ' * depth * 4)) | |
if depth < max_depth: |