or, write MyUrlClass, not MyURLClass
General Rules:
- Each word is capitalized
- no spaces
- only alphanumeric characters
| #!/usr/bin/env bash | |
| # IMPORTANT: this script is now part of my dotfiles and maintained there | |
| # see https://github.com/Diaoul/dotfiles/blob/main/.config/hypr/scripts/workspaces.sh | |
| set -e | |
| declare -i last_called=0 | |
| declare -i throttle_by=4 | |
| @throttle() { | |
| local -i now=$(date +%s) |
| #!python | |
| # Tested with `SC-8110-2D-B` 1d & 2d barcode scanner | |
| # | |
| # Inspired by https://github.com/julzhk/usb_barcode_scanner | |
| # which was inspired by https://www.piddlerintheroot.com/barcode-scanner/ | |
| # https://www.raspberrypi.org/forums/viewtopic.php?f=45&t=55100 | |
| # from 'brechmos' - thank-you! | |
| # | |
| # This implementation doesn't directly decode hidraw stream, but uses |
| import sys,os | |
| import curses | |
| def draw_menu(stdscr): | |
| k = 0 | |
| cursor_x = 0 | |
| cursor_y = 0 | |
| # Clear and refresh the screen for a blank canvas | |
| stdscr.clear() |
| #!/usr/bin/env python | |
| """ | |
| Very simple HTTP server in python (Updated for Python 3.7) | |
| Usage: | |
| ./dummy-web-server.py -h | |
| ./dummy-web-server.py -l localhost -p 8000 | |
| Send a GET request: |