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
| # Check for updates on initial load... | |
| if [ "$DISABLE_AUTO_UPDATE" != "true" ]; then | |
| env ZSH=$ZSH DISABLE_UPDATE_PROMPT=$DISABLE_UPDATE_PROMPT zsh -f $ZSH/tools/check_for_upgrade.sh | |
| fi | |
| # Initializes Oh My Zsh | |
| # add a function path | |
| fpath=($ZSH/functions $ZSH/completions $fpath) |
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
| from bs4 import BeautifulSoup | |
| import re | |
| from urllib.request import * | |
| import urllib.request | |
| import argparse | |
| import requests | |
| import os | |
| import cv2 | |
| from imutils import paths |
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
| /* Table of contents | |
| –––––––––––––––––––––––––––––––––––––––––––––––––– | |
| - Plotly.js | |
| - Grid | |
| - Base Styles | |
| - Typography | |
| - Links | |
| - Buttons | |
| - Forms | |
| - Lists |
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
| [tool.poetry] | |
| name = "my-super-cool-app" | |
| version = "4.5.3" | |
| description = "SuperCoolCorp end-user interface to access project camera feeds, view and download static reports, and access Operational Dashboard" | |
| authors = ["Sam Lim <[email protected]>"] | |
| [tool.poetry.dependencies] | |
| python = ">=3.9,<3.11" | |
| Django = "^3.2.9" | |
| django-bootstrap4 = "^21.1" |
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 pathlib | |
| import logging | |
| import sys | |
| from logging.handlers import TimedRotatingFileHandler | |
| FORMATTER = logging.Formatter("%(levelname)s | %(asctime)s | %(name)s | %(message)s") | |
| LOG_FILE = "logs/app.log" | |
OlderNewer