Details
Click me
function logSomething(something) {
console.log('Something', something);
}Details
function logSomething(something) {
console.log('Something', something);
}| import { useSafeAreaInsets } from 'react-native-safe-area-context' | |
| import { useCallback, useLayoutEffect, useMemo, useReducer, useRef, useState } from 'react' | |
| import { ActivityIndicator, Keyboard, Platform, Text, View, TextInput, useWindowDimensions } from 'react-native' | |
| import Animated from 'react-native-reanimated' | |
| const SearchBar = () => { | |
| const inset = useSafeAreaInsets() | |
| const [isFocused, toggle] = useReducer((s) => !s, false) | |
| const ref = useRef<Animated.View>(null) | |
| const rect = useSharedValue({ width: 0 }) |
| code --install-extension aaron-bond.better-comments | |
| code --install-extension asvetliakov.vscode-neovim | |
| code --install-extension christian-kohler.path-intellisense | |
| code --install-extension dbaeumer.vscode-eslint | |
| code --install-extension drcika.apc-extension | |
| code --install-extension eamodio.gitlens | |
| code --install-extension esbenp.prettier-vscode | |
| code --install-extension formulahendry.auto-close-tag | |
| code --install-extension formulahendry.auto-rename-tag | |
| code --install-extension formulahendry.code-runner |
| import { useModals, ModalsIndexContextProvider } from './useModals'; | |
| import { SafeAreaView, StyleSheet, Text } from 'react-native'; | |
| function App_() { | |
| const Modal = useModals(); | |
| return ( | |
| <SafeAreaView style={styles.container}> | |
| <Text>Hello</Text> |
| [ | |
| { | |
| "context": "Editor", | |
| "bindings": { | |
| "ctrl-cmd-up": "editor::SelectLargerSyntaxNode", | |
| "ctrl-cmd-down": "editor::SelectSmallerSyntaxNode", | |
| "alt-up": "editor::MoveLineUp", | |
| "alt-down": "editor::MoveLineDown", | |
| "alt-shift-up": [ | |
| "editor::DuplicateLine", |
| import { match, __ } from 'ts-pattern'; | |
| const result = match({ project, projectCard, contact, contactCard }) | |
| .with({ project: __, projectCard: __ }, ({ projectCard }) => projectCard) | |
| .with({ contact: __, contactCard: __ }, ({ contactCard }) => contactCard) | |
| .otherwise(() => null); |
| # Get editor completions based on the config schema | |
| "$schema" = 'https://starship.rs/config-schema.json' | |
| # Inserts a blank line between shell prompts | |
| add_newline = true | |
| # Replace the "β―" symbol in the prompt with "β" | |
| [character] # The name of the module we are configuring is "character" | |
| success_symbol = "[β](bold green)" # The "success_symbol" segment is being set to "β" with the color "bold green" |
| export class ForbiddenError extends Error { | |
| constructor(message: string) { | |
| super(message); | |
| this.name = 'ForbiddenError'; | |
| this.description = 'Error encountered fetching an API having a response with 403 status code.'; | |
| Error.captureStackTrace && Error.captureStackTrace(this, ForbiddenError); | |
| } | |
| } |
| code --install-extension ahmadawais.shades-of-purple | |
| code --install-extension akamud.vscode-theme-onedark | |
| code --install-extension bernardodsanderson.theme-material-neutral | |
| code --install-extension bierner.color-info | |
| code --install-extension bierner.markdown-mermaid | |
| code --install-extension bpruitt-goddard.mermaid-markdown-syntax-highlighting | |
| code --install-extension brapifra.phpserver | |
| code --install-extension burkeholland.simple-react-snippets | |
| code --install-extension capaj.vscode-exports-autocomplete | |
| code --install-extension CoenraadS.bracket-pair-colorizer |