create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
"use strict"; | |
Object.defineProperty(exports, "__esModule", { value: true }); | |
const info = { | |
$schema: '../chain.schema.json', | |
chain_name: 'cosmoshub', | |
chain_type: 'cosmos', | |
chain_id: 'cosmoshub-4', | |
website: 'https://cosmos.network/', | |
pretty_name: 'Cosmos Hub', | |
status: 'live', |
{"name":"bautd","settings":"{\"settings\":\"{\\n \\\"[vue]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"Vue.volar\\\"\\n },\\n \\\"cSpell.userWords\\\": [\\n \\\"embla\\\",\\n \\\"Lightbox\\\",\\n \\\"lucide\\\"\\n ],\\n \\\"diffEditor.ignoreTrimWhitespace\\\": false,\\n \\\"diffEditor.useInlineViewWhenSpaceIsLimited\\\": false,\\n \\\"editor.accessibilitySupport\\\": \\\"off\\\",\\n \\\"editor.codeActionsOnSave\\\": {\\n \\\"source.fixAll\\\": \\\"always\\\",\\n \\\"source.removeUnusedImports\\\": \\\"always\\\"\\n },\\n \\\"editor.fontFamily\\\": \\\"IntelOne Mono\\\",\\n \\\"editor.inlineSuggest.suppressSuggestions\\\": true,\\n \\\"editor.linkedEditing\\\": true,\\n \\\"editor.minimap.enabled\\\": false,\\n \\\"editor.stickyScroll.enabled\\\": false,\\n \\\"explorer.compactFolders\\\": false,\\n \\\"explorer.confirmDragAndDrop\\\": false,\\n \\\"explorer.confirmPasteNative\\\": false,\\n \\\"files.autoSave\\\": \\\"onFocusChange\\\",\\n \\\"git.allowForcePush\\\": tr |
@mixin generate-border($width, $color, $position: all) { | |
$shadows: (); | |
@if $position == all { | |
$shadows: append($shadows, inset 0 0 0 #{$width} #{$color}); | |
} @else { | |
@each $dir in top, right, bottom, left { | |
@if index($position, $dir) { | |
$x: 0; | |
$y: 0; |
import React, { useEffect, useRef } from 'react'; | |
/** | |
* Use setInterval with Hooks in a declarative way. | |
* | |
* @see https://stackoverflow.com/a/59274004/3723993 | |
* @see https://overreacted.io/making-setinterval-declarative-with-react-hooks/ | |
*/ | |
export function useInterval( | |
callback: React.EffectCallback, |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
import Vue from 'vue'; | |
class EventBus { | |
constructor(vue) { | |
if (!this.handles) { | |
Object.defineProperty(this, 'handles', { | |
value: {}, | |
enumerable: false, | |
}); | |
} |