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
function slacktime | |
while read line; | |
if [ (string match "*WORKTIME" "$line") ] | |
continue | |
else | |
echo $line | |
end | |
end < /etc/hosts > /tmp/hosts | |
sudo cp /tmp/hosts /etc/hosts | |
end |
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 | |
import argparse | |
import os | |
import subprocess | |
import sys | |
import time | |
# Required so we don't generate tons of logs during restore | |
disable_logging_sql = "ALTER USER postgres RESET pgaudit.log;" |
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 functools import wraps | |
def annotated(annotation_name): | |
""" | |
Decorator for returning pre-calculated, annotated values | |
This should be used with model instance methods that fetch some | |
kind of related or calculated data. If the method is called on | |
a single instance in isolation, we should expect the method to |
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 requests | |
class RemoteFile: | |
""" | |
Context manager for handling remote OR local files | |
Can be used like so: | |
>>> with RemoteFile("/path/to/local/file.txt") as f: |
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
/* | |
Copy and paste into your browser console window after loading | |
your archives page, e.g. with a selected long date range. | |
Original: https://www.reddit.com/r/javascript/comments/5my92r/console_script_to_click_all_download_links_on_a/dc7cktr/ | |
The problem I had with my first attempt was that there was no delay, | |
so I was only downloading the last entry on the page. The linked | |
solution above pointed to the problem (each subsequent request was | |
killing the preceding request) which was including a delay. 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
import functools | |
import stripe | |
from typing import Any, Optional | |
def stripe_subscriptions(limit: Optional[int] = 100, **params: Any): | |
""" | |
Returns an iterator of all matching subscriptions |
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 bash | |
PACKAGES=(pagecolor titling sourcecodepro mweights ly1 sourcesanspro needspace mdframed csquotes) | |
for item in ${PACKAGES[*]} | |
do | |
tlmgr install $item | |
done |
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 bash | |
LATEST_DB="$HOME/Downloads/$(ls -t ~/Downloads | head -1)" | |
BACKUP_PATH=${2-$LATEST_DB} | |
DB=$1 | |
echo "Creating database name $DB from $BACKUP_PATH" | |
psql -c "CREATE DATABASE $DB;" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
def annotated(attr_name): | |
""" | |
Decorator for returning pre-calculated, annotated values | |
This should be used with model instance methods that fetch some | |
kind of related or calculated data. If the method is called on | |
a single instance in isolation, we should expect the method to | |
execute and return its value. However if the method is called | |
on a member of a queryset where the `attr_name` was added as an |
NewerOlder