Skip to content

Instantly share code, notes, and snippets.

@Julian-Nash
Julian-Nash / .bashrc
Last active January 3, 2019 23:30
WSL quick & nice terminal setup w/Nord color scheme
# Add the following to the end of your .bashrc
# Basic PS1
export PS1="\u@wsl: \w\n$ "
# Quick access to wsl directory
alias wsl="cd /mnt/c/wsl"
alias ..="cd .."
# cd to wsl folder on launch (All working files shared between the linux subsystem and windows)
@Julian-Nash
Julian-Nash / upload.html
Created February 22, 2019 19:56
File upload with progress bar, cancel and percent complete - XMLHTTPRequest (Bootstrap 4)
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
@Julian-Nash
Julian-Nash / http_status_code_enum.py
Last active November 20, 2019 20:34
HttpStatusCode - A handy little enum
import enum
@enum.unique
class HTTPStatusCode(enum.IntEnum):
""" Enumeration for HTTP status codes.
Example usage:
HttpStatusCode.OK.value # 100
HttpStatusCode.INTERNAL_SERVER_ERROR.value # 500
@Julian-Nash
Julian-Nash / json_response.py
Last active December 26, 2022 00:26
Flask JSON responder class - Class with static methods for returning JSON data by calling methods mapping to RFC HTTP status codes
from flask import jsonify, make_response, Response
from typing import Optional, Any
from http import HTTPStatus
class JSONResponse(object):
@classmethod
def _send_response(cls, status: int, data: Any, headers: Optional[dict] = None):
@Julian-Nash
Julian-Nash / profiler.py
Created December 13, 2020 17:49
Flask profiler
""" Flask application profiler
Will run the Flask application and log profile data to stdout.
The `restrictions` parameter passed to `ProfilerMiddleware` is used to limit the number of items listed
in the report.
"""
import os
from werkzeug.middleware.profiler import ProfilerMiddleware
@Julian-Nash
Julian-Nash / doubly_linked_list.py
Last active December 22, 2020 14:39
Doubly Linked List. Python implementation
from typing import Optional, Union
class DoublyLinkedListNode:
def __init__(self, value: Optional = None, prev: Optional = None, next: Optional = None):
self.value = value
self.prev = prev
self.next = next
from pygments import highlight
from pygments.formatters.html import HtmlFormatter
from pygments.lexers import guess_lexer, get_lexer_for_filename, get_lexer_by_name
class HTMLCodeHighlighter:
""" Generate highlighted HTML snippets of code (pip install Pygments)"""
@classmethod
def _highlight(cls, code: str, lexer):
@Julian-Nash
Julian-Nash / __init__.py
Created July 21, 2021 16:18
Sanic Motor Example
from pathlib import Path
import os
from sanic import Sanic
from motor.motor_asyncio import AsyncIOMotorClient
from app.config import get_config
from app.blueprints import view, ws, api