I hereby claim:
- I am alexg0 on github.
- I am alexg0 (https://keybase.io/alexg0) on keybase.
- I have a public key ASCGqvHNgpLgzSv7vuHciExPTTigv9MZuMLRcjw6Z-VSWAo
To claim this, I am signing this object:
| #!/usr/bin/python3 | |
| """Temporary additive port-forward watchdog for pre-fix Dory builds. | |
| This is intentionally not a replacement for Dory's reconciler. It restores container | |
| forwards that Docker still wants but gvproxy has dropped. It removes only forwards that | |
| this watchdog created, and only when the same dory-hv instance no longer wants them. | |
| """ | |
| from __future__ import annotations |
| #! /usr/bin/zsh | |
| # https://gist.github.com/alexg0/39eb038c704962bcf832c74a8c2cecd4 | |
| enable_sudo_with_apple_watch_and_touch_id() { | |
| PAMD_SUDO_PATH=/etc/pam.d/sudo | |
| APPLE_WATCH_PAMID_LIBPATH=/usr/local/lib/pam/pam_watchid.so.2 | |
| # APPLE_WATCH_PAMID_URL=https://github.com/biscuitehh/pam-watchid | |
| APPLE_WATCH_PAMID_URL=https://github.com/msanders/pam-watchid | |
| APPLE_WATCH_PAMID_PATH=$HOME/src/pamid-applewatch | |
| preserve_pamd_sudo() { |
| #! /usr/bin/env ruby | |
| # Copyright (c) 2016, Alexander Goldstein | |
| # Permission to use, copy, modify, and/or distribute this software for any | |
| # purpose with or without fee is hereby granted, provided that the above | |
| # copyright notice and this permission notice appear in all copies. | |
| # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
| # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
I hereby claim:
To claim this, I am signing this object:
| Process: AirMail Beta [17994] | |
| Path: /opt/homebrew-cask/*/AirMail Beta.app/Contents/MacOS/AirMail Beta | |
| Identifier: it.bloop.airmail.beta8 | |
| Version: 1.3 (214) | |
| Code Type: X86-64 (Native) | |
| Parent Process: launchd [334] | |
| Responsible: AirMail Beta [17994] | |
| User ID: 501 | |
| Date/Time: 2013-11-10 00:20:27.527 -0600 |
| #! slate | |
| # install with following command: | |
| # cd /Applications && curl http://www.ninjamonkeysoftware.com/slate/versions/slate-latest.tar.gz | tar -xz | |
| # GLOBAL CONFIGURATIONS | |
| # ------------------------------------------------------------------- | |
| # See https://github.com/jigish/slate/wiki/Global-Configs | |
| config defaultToCurrentScreen true |
| require 'nokogiri' | |
| module Nokogiri | |
| module XML | |
| class Node | |
| ## | |
| # Returns true of the argument is semantically equivalent to self | |
| # Equivalent is defined as follows : | |
| # - same name |
| # standard rails .gitignore file | |
| # .gitignore | |
| # bundler recomended lines | |
| vendor/gems/* | |
| !vendor/gems/cache/ | |
| .bundle/ | |
| # generated tags | |
| tags |
| # ... | |
| # append following lines | |
| Dir[ File.join(File.dirname(__FILE__), 'tasks', '*.rake') ].sort.each do |f| | |
| load f | |
| end |