Skip to content

Instantly share code, notes, and snippets.

View AuthyToOtherAuthenticator.md

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

View crash.txt
---- Minecraft Crash Report ----
// Why did you do that?
Time: 10/25/21 10:03 PM
Description: Exception in server tick loop
java.lang.IllegalArgumentException: Cannot accept empty stack
at com.refinedmods.refinedstorage.apiimpl.util.ItemStackList.add(ItemStackList.java:23) ~[?:1.9.15] {re:classloading}
at com.refinedmods.refinedstorage.apiimpl.util.ItemStackList.add(ItemStackList.java:16) ~[?:1.9.15] {re:classloading}
at com.refinedmods.refinedstorage.apiimpl.storage.cache.ItemStorageCache.add(ItemStorageCache.java:76) ~[?:1.9.15] {re:classloading}
View .py
df['nome_categoria_produto'].fillna('não informado', inplace=True)
View Circle.java
/*
* Name: Janan Patel
* Date: 10/25/2021
* Course Number: 220
* Course Name: Data Structures
* Problem Number: 6
* Email: jkpatel2001@student.stcc.edu
* Short Description of the Problem: Creating classes to get areas and perimeters!
*/
View Sample.bpmn
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:bpsim="http://www.bpsim.org/schemas/1.0" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:drools="http://www.jboss.org/drools" id="_lwQVUBf9EDqwdIEQGXhLgQ" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd http://www.jboss.org/drools drools.xsd http://www.bpsim.org/schemas/1.0 bpsim.xsd http://www.omg.org/spec/DD/20100524/DC DC.xsd http://www.omg.org/spec/DD/20100524/DI DI.xsd " exporter="jBPM Process Modeler" exporterVersion="2.0" targetNamespace="http://www.omg.org/bpmn20">
<bpmn2:itemDefinition id="_travellerItem" structureRef="org.acme.travel.Traveller"/>
<bpmn2:itemDefinition id="__0E0784C3-1BEC-4A51-A5E6-D7E5DA3A4402_eventInputXItem" structureRef="org.acme.travel.Traveller"/>
<bpmn2:itemDefinition id="processedtravellersType" s
View .py
df['preco_frete'].fillna(df['preco_frete'].mean(), inplace=True)
@mohamedabdelbary
mohamedabdelbary / gql_shopify_orders.rs
Created Oct 25, 2021
GraphQL shopify orders query struct
View gql_shopify_orders.rs
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "schema.graphql",
query_path = "queries/orders.graphql",
response_derives = "Debug,Serialize",
)]
pub struct OrdersQuery;
const RETRIES: u32 = 5;
const GQL_BATCH_SIZE: usize = 50;
View if-else.php
<?php
echo "Mendez Alvarez Jennifer Yadira 5-J 25/oct/21 </br>";
echo "numero de control 0644 </br>";
echo "Estructura selectiva if_else </br>";
$x = 100;
if ($x >= 100)
{
echo "Es mayor o igual a 100";
}else
{
View .py
df['preco_compra'].fillna(df['preco_compra'].mean(), inplace=True)
View machine.js
const WelcomeMachine = Machine(
{
id: 'welcomeMachine',
context: {
country_code: null
},
initial: 'idle',
states: {
idle: {