Welcome to the shakespearean insult generator (based on Shakespeare insult kit)!
This gist contains 5 files (6 including this)!
- insult.py -> code
- w1.txt -> 1st wordset
- w2.txt -> 2nd wordset
Welcome to the shakespearean insult generator (based on Shakespeare insult kit)!
This gist contains 5 files (6 including this)!
#!/bin/sh | |
function install_wireguard () { | |
VER=$(cat /opt/vyatta/etc/version | grep Version | grep -q 'v2.0' && echo '-v2.0' || echo '') | |
echo "Downloading Wireguard$VER ($BOARD-$RELEASE)..." | |
FILENAME="wireguard$VER-$BOARD-$RELEASE.deb" | |
DEB_URL="https://github.com/Lochnair/vyatta-wireguard/releases/download/$RELEASE/$FILENAME" | |
if (/usr/bin/curl -s -L -o /tmp/$FILENAME $DEB_URL); then | |
echo "Installing $FILENAME..." | |
dpkg -i /tmp/$FILENAME |
;; Current workspace.edn | |
{:vcs "git" | |
:top-namespace "polylith.clj.core" | |
:interface-ns "interface" | |
:default-profile-name "default" | |
:compact-views #{} | |
:release-tag-pattern "v[0-9]*" | |
:stable-tag-pattern "stable-*" | |
:projects {"api" {:alias "api", :test []} |
from types import MappingProxyType | |
class ExceptionInfo(Exception): | |
def __init__(self, | |
msg: str = None, | |
data: dict = None, | |
cause: Optional[BaseException] = None): | |
self._message = msg or "" | |
self._data = data or {} |