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
import typing as t | |
import logging | |
import random | |
from fastapi import Depends, FastAPI, Header, HTTPException | |
from fastapi.security.http import HTTPAuthorizationCredentials, HTTPBearer | |
from pydantic import BaseModel | |
from starlette import status | |
from os import environ |
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
import nltk | |
import random | |
from nltk.corpus import brown | |
# Ensure the necessary NLTK resources are downloaded | |
nltk.download('brown') | |
nltk.download('universal_tagset') | |
def get_common_words_by_pos(tag, num_words=100): | |
""" Return a list of the most common words for a given part of speech tag """ |
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
from tqdm.auto import tqdm | |
from requests.exceptions import HTTPError | |
from getpass import getpass | |
import os | |
from atlassian import Confluence | |
def get(label): | |
if label not in os.environ: | |
os.environ[label]=getpass(f'Enter {label}') |
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
"""usage | |
python fuvm.py <external canary URL> | |
""" | |
import time | |
import socket | |
import requests | |
import sys | |
import logging | |
class CustomFormatter(logging.Formatter): |
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
#!/bin/bash | |
usage() { | |
cat << EOF | |
This script imports a git repo (accessible from https://\$origin/\$user/\$repo) and all its history as subdirectory of a destination (available locally at \$dest) | |
It is designed for non-production, archival processes and may destroy everything you've ever loved because you looked at it funny. You have been warned. | |
The structure of the destination will end up something like this: | |
~/src | |
- \$dest | |
- origins |
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
x, *xs, y, z = map(lambda j: lambda i: j**i ,range(1, 10)) | |
x(2),y(2),z(2) |
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
" Pathogen : https://github.com/tpope/vim-pathogen | |
execute pathogen#infect() | |
set nocompatible " be iMproved | |
filetype off " required! | |
" Setting up Vundle - the vim plugin bundler | |
let iCanHazVundle=1 | |
let vundle_readme=expand('~/.vim/bundle/vundle/README.md') | |
if !filereadable(vundle_readme) | |
echo "Installing Vundle.." |
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
#!/bin/bash | |
# Example script to start up tunnel with autossh. | |
# This script will tunnel 22 from the local host | |
# to 11122 on the remote host. If that post isn't | |
# availabile it'll increment. Also does the same | |
# with 8888/11188 for ipython notebook | |
# REQUIRED autossh | |
HOST=${@: -1} | |
REMOTE_SSH_PORT=11122 | |
REMOTE_HTTP_PORT=11188 |
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
bolster@yossarian ~/.cache | |
➜ spotify 5779-[14:36:24] | |
13:36:27.454 I [breakpad.cpp:110 ] Registered Breakpad for product: spotify | |
13:36:27.455 I [translate.cpp:152 ] Reloading language file | |
13:36:27.465 I [translate.cpp:152 ] Reloading language file | |
13:36:27.466 I [breakpad.cpp:269 ] Searching for crashdumps: /home/bolster/.cache/spotify/*.dmp | |
13:36:31.617 I [offline_authorizer.cpp:278 ] Unable to login offline: no such user | |
13:36:36.722 I [ap_connection_impl.cpp:901 ] Connecting to AP lon2-accesspoint-a33.ap.spotify.com:4070 |
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
# Note: This file lives on the observium server inside /etc/cron.d/ | |
13 * * * * root host -t axfr anrg.liv.ac.uk | awk '$4 ~ "^A$" {print $1}' > /dev/shm/devices 2> /dev/null; /opt/observium/add_device.php /dev/shm/devices >> /dev/null 2>&1 |
NewerOlder