create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| - Trailing commas are ok | |
| - No reserved words for property names | |
| - NaN, Infinity, undefined : are all constants | |
| - parseInt() defaults to radix 10 | |
| - /regexp/ produces new reg ex object every time | |
| - JSON.parse(), JSON.stringify() | |
| - Function.prototype.bind | |
| - String.prototype.trim | |
| - Array.prototype.every, filter, forEach, indexOf, lastIndexOf, map, reduce, reduceRight, some, | |
| - Date.now() |
| { | |
| "AL": "Alabama", | |
| "AK": "Alaska", | |
| "AS": "American Samoa", | |
| "AZ": "Arizona", | |
| "AR": "Arkansas", | |
| "CA": "California", | |
| "CO": "Colorado", | |
| "CT": "Connecticut", | |
| "DE": "Delaware", |
| // Place your key bindings in this file to overwrite the defaults | |
| [ | |
| { | |
| "key": "cmd+e", | |
| "command": "workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "shift+cmd+e", | |
| "command": "workbench.action.gotoSymbol" | |
| }, |
| # Put this function to your .bashrc file. | |
| # Usage: mv oldfilename | |
| # If you call mv without the second parameter it will prompt you to edit the filename on command line. | |
| # Original mv is called when it's called with more than one argument. | |
| # It's useful when you want to change just a few letters in a long name. | |
| # | |
| # Also see: | |
| # - imv from renameutils | |
| # - Ctrl-W Ctrl-Y Ctrl-Y (cut last word, paste, paste) |
| import { FlashList } from "@shopify/flash-list"; | |
| import { FlashListProps } from "@shopify/flash-list/src/FlashListProps"; | |
| import { LinearGradient } from "expo-linear-gradient"; | |
| import React, { useCallback, useState } from "react"; | |
| import { StyleSheet, View, ViewStyle } from "react-native"; | |
| import { useSafeAreaInsets } from "react-native-safe-area-context"; | |
| import { NativeScrollEvent } from "react-native/Libraries/Components/ScrollView/ScrollView"; | |
| import { | |
| LayoutChangeEvent, | |
| NativeSyntheticEvent, |