Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View VagyokC4's full-sized avatar

Charles Lindsay VagyokC4

View GitHub Profile
@VagyokC4
VagyokC4 / AuthyToOtherAuthenticator.md
Created April 13, 2021 05:31 — forked from gboudreau/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy

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 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

@VagyokC4
VagyokC4 / input.scss
Created November 25, 2020 01:08
Generated by SassMeister.com.
.sidebar{
.k-theme-test-class,
.ktb-theme-id-default {
opacity: 0;
}
.ktb-var-accent {
color: #fecb4b;
}
.ktb-var-base {
color: #3b3b3b;
@VagyokC4
VagyokC4 / main.cs
Last active April 15, 2019 20:26
ConvertTo Example
using System;
using ServiceStack;
using ServiceStack.Text;
public class Parent
{
}
public class Child : Parent
{
@VagyokC4
VagyokC4 / main.cs
Last active April 15, 2019 21:54 — forked from rsafier/main.cs
ConvertTo breaking change (2)
using System;
using ServiceStack;
using ServiceStack.Text;
public class Parent
{
}
public class Child : Parent
{
@VagyokC4
VagyokC4 / app.html
Last active May 9, 2017 15:13 — forked from jdanyow/app.html
select2 placeholder example
<template>
<require from="select2-custom-attribute"></require>
<h1>Select2</h1>
<div>
<select select2.bind='{ "placeholder": "Action", "allowClear": true, "minimumResultsForSearch": -1}' value.bind="selectedThing2" style="width: 100%">
<option></option>
<option value="Pending">Pending</option>
<option value="Approved">Approve</option>
<option value="Denied">Deny</option>