Skip to content

Instantly share code, notes, and snippets.

View ahamilton9's full-sized avatar

Andrew Hamilton ahamilton9

View GitHub Profile

Generating Authy passwords on other authenticators


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 (beware, through Google) 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 gues

@oprudkyi
oprudkyi / DebugMailServiceProvider.php
Created April 22, 2016 03:20
laravel swift mailer logger
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Swift_Mailer;
use \Swift_Plugins_Logger;
use \Swift_Plugins_LoggerPlugin;
class DebugMailServiceProvider extends ServiceProvider implements Swift_Plugins_Logger
@valvallow
valvallow / notify-send.sh
Created February 1, 2012 14:07
notify-send for windows
#!/bin/sh
VALUE_ICON=`cygpath -d "$HOME/pict/terminal.png"`
VALUE_TITLE="terminal"
VALUE_MESSAGE="Ha!!"
while getopts hi:t:m: OPT
do
case $OPT in