https://ssl.gstatic.com/docs/common/profile/alligator_lg.png Anonymer Alligator https://ssl.gstatic.com/docs/common/profile/anteater_lg.png Anonymer Ameisenbär https://ssl.gstatic.com/docs/common/profile/axolotl_lg.png Anonymer Axolotl https://ssl.gstatic.com/docs/common/profile/badger_lg.png Anonymer Dachs https://ssl.gstatic.com/docs/common/profile/bat_lg.png Anonyme Fledermaus https://ssl.gstatic.com/docs/common/profile/beaver_lg.png Anonymer Biber https://ssl.gstatic.com/docs/common/profile/buffalo_lg.png Anonymer Büffel https://ssl.gstatic.com/docs/common/profile/camel_lg.png Anonymous Camel --- https://ssl.gstatic.com/docs/common/profile/capybara_lg.png Anonymes Capybara https://ssl.gstatic.com/docs/common/profile/chameleon_lg.png Anonymes Chamäleon
#!/usr/bin/env bash | |
for f in "$@" | |
do | |
case $(file --mime-type -b "$f") in | |
'image/gif') | |
echo "${f%.*}" | |
ffmpeg -f gif -i "$f" -pix_fmt yuv420p -c:v libx264 -movflags +faststart -filter:v crop='floor(in_w/2)*2:floor(in_h/2)*2' "${f%.*}.mp4";; | |
esac | |
done |
Image | Name | Link |
---|---|---|
Anonymous Alligator | https://ssl.gstatic.com/docs/common/profile/alligator_lg.png | |
Anonymous Ameisenbär | https://ssl.gstatic.com/docs/common/profile/anteater_lg.png | |
Anonymous Axolotl | https://ssl.gstatic.com/docs/common/profile/axolotl_lg.png | |
![Anonymous Dachs ](htt |
#!/bin/bash | |
# Shows error and exits | |
fatalError() { | |
rm $1 | |
echo -e "\e[00;31mERROR: $1\e[00m" | |
exit 1 | |
} | |
baseUrl="https://YOUR_URL" |
I hereby claim:
- I am hmnd on github.
- I am hmnd (https://keybase.io/hmnd) on keybase.
- I have a public key whose fingerprint is F862 62E9 40F2 D1FE 8266 079D CD7B 405D 13E2 41B6
To claim this, I am signing this object:
/** | |
* Construct Knack events for multiple keys | |
* | |
* @param {string[]} keys - Event keys | |
* @param {string} eventType - Knack event type | |
* @param {JQuery.EventHandler} handler - Event handler | |
* @param {boolean} [once] - Handle event only once | |
*/ | |
function knackEventHandlers(keys, eventType, handler, once) { | |
const handleEvent = once ? $(document).one : $(document).on; |
There is an increasing count of applications which use Authy for two-factor authentication. However many users who aren't using Authy, have their own authenticator setup up already and do not wish to use two applications for generating passwords.
Since I use 1Password for all of my password storing/generating needs, I was looking for a solution to use Authy passwords on that. I couldn't find any completely working solutions, however I stumbled upon a gist by Brian Hartvigsen. His post had a neat code with it to generate QR codes for you to use on your favorite authenticator.
His method is to extract the secret keys using Authy's Google Chrome app via Developer Tools. If this was not possible, I guess people would be reverse engineering the Android app or something like that. But when I tried that code, nothing appeared on the screen. My guess is that Brian used the