Chain Registry | Consensus | CosmJS | Cosmos SDK | CosmWasm | IBC | Relayers | Testing | UI |
---|---|---|---|---|---|---|---|---|
Chain Registry | CometBFT | CosmJS | Cosmos SDK | CosmWasm | ibc-go | Hermes | Interchain Test | Create Cosmos App |
Npm Module | CometBFT DB | Telescope | CosmWasm Academy | ibc-rs | TS Relayer | [Starship](https://github.com/cosmol |
I hereby claim:
- I am pyramation on github.
- I am danlynch (https://keybase.io/danlynch) on keybase.
- I have a public key ASCIjdOUoAEE-zUGY85OUzH6ucOaOCtjJQGxZXgVfEjtGQo
To claim this, I am signing this object:
const reserved = [ | |
'all', | |
'analyse', | |
'analyze', | |
'and', | |
'any', | |
'array', | |
'as', | |
'asc', | |
'asymmetric', |
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
CREATE OR REPLACE FUNCTION smart_comments(tags jsonb, description text default null) | |
RETURNS text | |
AS $$ | |
DECLARE | |
key text; | |
value jsonb; | |
tvalue text; | |
attrs text[] = ARRAY[]::text[]; | |
_key text; | |
_value text; |
- Launch Disk Utility from Applications>Utilities or Spotlight search
- Insert your USB stick and observe the new device added to Disk Utility
- Select the USB stick device (you may need to enable the option View>Show All Devices) and select
Erase
from the tool bar (or right-click menu) - Set the format to
MS-DOS (FAT)
and if the option shows, the scheme toGUID Partition Map
- Check you’ve chosen the correct device and click Erase
[ | |
{ | |
"Definition": { | |
"def": "s", | |
"params": "!", | |
"comment": "The second, symbol s, is the SI unit of time. It is defined" | |
} | |
}, | |
{ | |
"Definition": { |
import { Upload } from 'graphql-upload'; | |
export default function UploadFieldPlugin( | |
builder, | |
{ uploadFieldDefinitions } | |
) { | |
const findMatchingDefinitions = (def, table, attr) => | |
def.match({ | |
schema: table.namespaceName, | |
table: table.name, |
// Place your key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "ctrl+cmd+left", | |
"command": "workbench.action.terminal.sendSequence", | |
"args": { "text": "\u001bb" } | |
}, | |
{ | |
"key": "ctrl+cmd+right", | |
"command": "workbench.action.terminal.sendSequence", |
DROP SCHEMA IF EXISTS my_test_schema CASCADE; | |
CREATE SCHEMA IF NOT EXISTS my_test_schema; | |
CREATE FUNCTION my_test_schema.json_build_object_apply (arguments text[]) | |
RETURNS json | |
AS $$ | |
DECLARE | |
arg text; | |
_sql text; |