access profile manager:
$ firefox -no-remote -ProfileManager
add-ons:
| #!/bin/sh -eu | |
| # fksync | |
| # | |
| # This scripts keeps your PGP keys in sync with your team by: | |
| # | |
| # 1. periodically uploading your key to the keyservers | |
| # 2. periodically downloading their keys from the keyservesr | |
| # | |
| # Note: it can't handle *new* team members. You'll need to get their key the |
access profile manager:
$ firefox -no-remote -ProfileManager
add-ons:
| # /etc/supervisor/conf.d/hockeypuck-supervisor.conf | |
| # Do `service supervisor reload` then start/stop with `supervisorctl start hockeypuck` | |
| [program:hockeypuck] | |
| user=hockeypuck | |
| directory=/home/hockeypuck | |
| command=/home/hockeypuck/bin/hockeypuck -config /home/hockeypuck/etc/hockeypuck/hockeypuck.conf | |
| redirect_stderr=true | |
| autorestart=true | |
| startsecs=10 |
| #!/bin/sh -u | |
| # Install this into ~/.githooks/pre-commit | |
| # | |
| # Make it executable: | |
| # > chmod +x ~/.githooks/pre-commit | |
| # | |
| # Configure git to point at your hooks directory | |
| # > git config --global core.hooksPath ~/.githooks | |
| # |
These commands configure a network (e.g. freenode) with servers (e.g. irc.freenode.net) and channels (e.g. #doesliverpool).
Once configured you can just /connect <network> and everything happens automatically.
/network add -autosendcmd "/^msg nickserv identify <password>" freenode
menu button then 1 to get IP addressuser and admin (default passwords user and admin!)| import requests | |
| class RequestsWrapper(): | |
| def __init__(self, user_agent): | |
| self._session = requests.Session() | |
| self._user_agent = user_agent | |
| def get(self, *args, **kwargs): | |
| headers = requests.structures.CaseInsensitiveDict( |