I hereby claim:
- I am awaxa on github.
- I am awaxa (https://keybase.io/awaxa) on keybase.
- I have a public key ASAo5i-NQjiLA3Jq3uJrePTpc0SoGu_3iV76KVuayidtLQo
To claim this, I am signing this object:
| ## /etc/nginx/sites-available/default | |
| # You should look at the following URL's in order to grasp a solid understanding | |
| # of Nginx configuration files in order to fully unleash the power of Nginx. | |
| # http://wiki.nginx.org/Pitfalls | |
| # http://wiki.nginx.org/QuickStart | |
| # http://wiki.nginx.org/Configuration | |
| # | |
| # Generally, you will want to move this file somewhere, and start with a clean | |
| # file but keep this around for reference. Or just disable in sites-enabled. |
| #!/usr/bin/env bash | |
| url="$(osascript -e 'tell application "Spotify" to spotify url of current track')" | |
| remove='spotify:track:' | |
| url="${url#$remove}" | |
| url="https://open.spotify.com/track/$url" | |
| echo -n "$url" | pbcopy |
| # Enables GPG to find gpg-agent | |
| use-standard-socket | |
| # Connects gpg-agent to the OSX keychain via the brew-installed | |
| # pinentry program from GPGtools. This is the OSX 'magic sauce', | |
| # allowing the gpg key's passphrase to be stored in the login | |
| # keychain, enabling automatic key signing. | |
| pinentry-program /usr/local/bin/pinentry-mac |
I hereby claim:
To claim this, I am signing this object:
| From 100884823475d2246a9bdd380d4f7ad3537dc6e4 Mon Sep 17 00:00:00 2001 | |
| From: Greg Kitson <[email protected]> | |
| Date: Tue, 13 Jun 2017 10:01:55 -0700 | |
| Subject: [PATCH] fix source link in self-hosting.md | |
| --- | |
| content/post/self-hosting.md | 2 +- | |
| 1 file changed, 1 insertion(+), 1 deletion(-) | |
| diff --git a/content/post/self-hosting.md b/content/post/self-hosting.md |
| # vi: filetype=sh | |
| ipinfo () { | |
| ip="$1" | |
| curl="curl --silent https://ipinfo.io/$ip" | |
| command -v pbcopy >/dev/null \ | |
| && printf %s "$curl" | pbcopy | |
| if command -v jq >/dev/null ; then | |
| $curl | jq . | |
| else |
| class Apg < Formula | |
| desc "Tool set for random password generation" | |
| homepage "http://www.adel.nursat.kz/apg/" | |
| url "http://ftp.us.debian.org/debian/pool/main/a/apg/apg_2.2.3.dfsg.1.orig.tar.gz" | |
| sha256 "c7e3c556426e2d5d2f599873a71100c5f6d14fa8784e0b1d879916784de801df" | |
| def install | |
| system "make", "standalone", | |
| "CC=#{ENV.cc}", | |
| "FLAGS=#{ENV.cflags}", |
I hereby claim:
To claim this, I am signing this object:
| file 'a.mp4' | |
| file 'b.mp4' | |
| file 'c.mp4' |
| #!/usr/bin/env bash | |
| # set -v | |
| export TZ=America/Los_Angeles | |
| node -e 'console.log(JSON.stringify({date: (new Date).getTime()}))' | jq '.date/1000 | strftime("%Y-%m-%d %H:%M:%S %Z")' | |
| export TZ=America/New_York | |
| node -e 'console.log(JSON.stringify({date: (new Date).getTime()}))' | jq '.date/1000 | strftime("%Y-%m-%d %H:%M:%S %Z")' | |
| export TZ=UTC | |
| node -e 'console.log(JSON.stringify({date: (new Date).getTime()}))' | jq '.date/1000 | strftime("%Y-%m-%d %H:%M:%S %Z")' |