I hereby claim:
- I am logic on github.
- I am logic (https://keybase.io/logic) on keybase.
- I have a public key whose fingerprint is EBEC 168B 5D9D 4F73 5AFA 4374 3E55 2B7D A4DC 85AE
To claim this, I am signing this object:
| # Like gnome-terminal's command-completion notifications, but usually run | |
| # everything within a tmux window? No problem: add this to your .bashrc, and | |
| # make sure `xdotool` is installed. Adjust the `notify-send` command line to | |
| # taste. | |
| # | |
| # THIS DOESN'T WORK WITH WAYLAND. If you're on Wayland, let me know if you | |
| # come up with a reliable way to identify the currently-focused window. | |
| function notify_finished() { | |
| # If we're not in tmux, fall back to gnome-terminal's notification. | |
| [[ -z $TMUX_PANE ]] && __vte_prompt_command && return |
| %define homedir %{_sysconfdir}/dcc | |
| Summary: DCC is an anti-spam content filter | |
| Name: dcc | |
| Version: 1.3.158 | |
| Release: 1%{?dist} | |
| URL: http://www.dcc-servers.net/dcc/ | |
| Source0: http://www.dcc-servers.net/dcc/source/old/dcc-%{version}.tar.Z | |
| License: distributable for non-commercial use | |
| BuildRequires: sendmail-devel |
| [Unit] | |
| Description=Rotate GNOME wallpaper | |
| [Service] | |
| Type=oneshot | |
| ExecStart=/bin/bash ${HOME}/bin/rotate_background.sh |
| @-moz-document domain(mail.google.com) | |
| { | |
| .gs .ii, | |
| textarea.Ak, | |
| table tbody tbody tr td font, | |
| div[aria-label="Message Body"], /* compose area */ | |
| table[aria-role="presentation"] .iA.g6, /* excerpts in conversation view */ | |
| tr.zA.yO span.y2, /* excerpts in inbox view */ | |
| .jj /* gmail offline */ | |
| { |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| """Calculate how much money you'd leave on the table if you quit right now. | |
| Place a file named TICKER-stock.csv (where TICKER is the ticker symbol you | |
| want to track) in the same directory as this script, formatted as: | |
| MM/DD/YYYY,shares | |
| Where MM is the month, DD is the date, and YYYY is the year that "shares" |
| import urllib2 | |
| class MethodRequest(urllib2.Request): | |
| def __init__(self, *args, **kwargs): | |
| if 'method' in kwargs: | |
| self._method = kwargs['method'] | |
| del kwargs['method'] | |
| else: | |
| self._method = None | |
| return urllib2.Request.__init__(self, *args, **kwargs) |
| ZOO_LOG4J_PROP="INFO,ROLLINGFILE" | |
| ZOO_LOG_DIR="/var/log/zookeeper/" |
| function multiplex_terminal() { | |
| cp /dev/null $HOME/.sshvars | |
| chmod 600 $HOME/.sshvars | |
| for i in SSH_CLIENT SSH_TTY SSH_AUTH_SOCK SSH_CONNECTION | |
| do | |
| eval v="\$$i" | |
| echo export $i=\"$v\" >> $HOME/.sshvars | |
| done | |
| multiplexor_path="`/usr/bin/which ${1}`" | |
| shift |