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
# Convenience helper to set up an "incognito mode" for a shell session. | |
# | |
# Installation: | |
# 1. Create a folder like ~/.zsh/functions | |
# 2. Add it to your ZSH function path with fpath=(~/.zsh/functions(:A) $fpath) in ~/.zshenv | |
# 3. Save this script as ~/.zsh/functions/anonsh | |
# 4. Add `autoload -Uz anonsh` to your ~/.zshrc | |
# | |
# Now you can type `anonsh` in any zsh session | |
# |

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
"""Primitive terminal emulator example made from a PyQt QTextEdit widget.""" | |
import fcntl, locale, os, pty, struct, sys, termios | |
import subprocess # nosec | |
# Quick hack to limit the scope of the PyLint warning disabler | |
try: | |
# pylint: disable=no-name-in-module | |
from PyQt5.QtCore import Qt, QSocketNotifier # type: ignore | |
from PyQt5.QtGui import QFont, QPalette, QTextCursor # type: ignore |
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 | |
# -*- coding: utf-8 -*- | |
""" | |
ocv domain, a modified copy of sphinx.domains.cpp + shpinx.domains.python. | |
The original copyright is below | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
The OpenCV C/C++/Python/Java/... language domain. | |
:copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. |
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 python3 | |
# -*- coding: utf-8 -*- | |
"""A simple script to preview the text of tweets in tweet.js from a Twitter | |
dump. | |
Accepts Zip files fresh from Twitter or extracted tweet.js files as input. | |
""" | |
# Prevent Python 2.x PyLint from complaining if run on this | |
from __future__ import (absolute_import, division, print_function, |
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
//! Routines for parsing camelcase strings | |
//! | |
use std::mem::replace; | |
use unicode_categories::UnicodeCategories; | |
use unicode_segmentation::{GraphemeIndices, UnicodeSegmentation}; | |
// --== Enums ==-- | |
// TODO: Refresh my memory of which other traits I'm advised to derive on this. |
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 python3 | |
# -*- coding: utf-8 -*- | |
"""A simple helper to search for Python scripts which still don't declare | |
python3 in their shebang lines as a proxy for finding un-migrated scripts. | |
""" | |
__author__ = "Stephan Sokolow (deitarion/SSokolow)" | |
__appname__ = "Python 2.x Auditor" | |
__version__ = "0.1" | |
__license__ = "MIT" |
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
/* POSIX paths in JSON via escaping which | |
doesn't alter valid UTF-8 paths. | |
The trick is recognizing that JSON can store binary nulls in strings | |
but nulls are the only character that can't occur in POSIX paths, | |
so we can use it as an escape character that won't change how existing | |
serialized paths get interpreted. | |
Copyright 2018-2020, Stephan Sokolow |
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 python3 | |
# -*- coding: utf-8 -*- | |
"""[application description here]""" | |
# Prevent Python 2.x PyLint from complaining if run on this | |
from __future__ import (absolute_import, division, print_function, | |
with_statement, unicode_literals) | |
__author__ = "Stephan Sokolow (deitarion/SSokolow)" | |
__appname__ = "[application name here]" |
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 python3 | |
# -*- coding: utf-8 -*- | |
"""Simple tool to identify bad bits in a cartridge by comparing many dumps | |
--snip-- | |
Requires numpy. | |
""" |