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
| #!/bin/bash | |
| IDLES=0 | |
| while sleep 30 | |
| do | |
| PCT=`top -bn 2 -d 0.1 | grep '^%Cpu' | tail -n 1 | tr :. ' ' | awk '{print$2}'` | |
| if [ $PCT -lt 10 ] | |
| then | |
| IDLES=$[$IDLES+1] | |
| 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
| [alias] | |
| # https://stackoverflow.com/a/52913660/370695 | |
| branch-local = "symbolic-ref --short HEAD" # https://stackoverflow.com/a/19585361/5353461 | |
| branch-fetch = "!f(){ br=\"$(git branch-local \"$@\")\" && git config branch.\"$br\".remote || echo origin; };f" | |
| branch-push = "!f(){ br=\"$(git branch-local \"$@\")\" && git config branch.\"$br\".pushRemote || git config remote.pushDefault || git branch-fetch; };f" | |
| # shortcuts | |
| st = status | |
| sh = show | |
| ci = commit | |
| co = checkout |
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
| // SPDX-License-Identifier: 0BSD OR MIT-0 OR Unlicense OR CC0-1.0+ | |
| // Copyright © 2022 Ryan Castellucci, no rights reserved | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <signal.h> | |
| #include <unistd.h> | |
| #include <fcntl.h> | |
| #include <time.h> |
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 python3 | |
| def _pylib(): | |
| import sys | |
| from pathlib import Path | |
| pylib = Path(Path.home(), 'code', 'pylib') | |
| if pylib.is_dir(): | |
| sys.path.append(str(pylib.resolve())) | |
| _pylib() |
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 python3 | |
| import os | |
| import re | |
| import sys | |
| import zlib | |
| import base64 | |
| import subprocess | |
| from hashlib import sha1 |
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 python3 | |
| def venv_exec(): | |
| import os, sys | |
| from pathlib import Path | |
| basedir = Path(__file__).parent.resolve() | |
| executable = Path(sys.executable) | |
| try: executable.relative_to(basedir) | |
| except ValueError as e: | |
| p = next(basedir.glob('*/bin/python3')) | |
| os.environ['VIRTAUL_ENV'] = str(p.parent.parent) |
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
| {% block followups %} | |
| {% set dir = page.components | slice(end=-1) | join(sep="/") %} | |
| {% set parent = page.ancestors | last %} | |
| {% set section = get_section(path=parent) %} | |
| {% set followups = [] %} | |
| {% set a = page.extra.followup_groups | default(value=[]) | sort %} | |
| {% set a_sz = a | length %} | |
| {# Add explicitly listed pages to follow-up list. #} | |
| {% for stem in page.extra.followups | default(value=[]) %} |
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
| 10stockstobuy.com | |
| 50centforums.com | |
| aberdeentea.com | |
| abvifoley.com | |
| abyage.com | |
| acceptdegree.com | |
| accordcareer.com | |
| accountstables.com | |
| acheaptownj.com | |
| actshopfade.com |
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 os | |
| import numbers | |
| import binascii | |
| from struct import pack, unpack | |
| from twisted.internet import abstract, interfaces, reactor, fdesc, task | |
| KEYCODES = { | |
| "\n": (0x28, 0), |