This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <limits> | |
using namespace std; | |
int main(){ | |
char var[10]; | |
bool valid = false; | |
while(!valid){ | |
cout << "Enter a string 9 characters long: "; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader | |
== Shell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useCallback, useMemo, useReducer, useRef } from 'react'; | |
import { TextInputProps } from 'react-native'; | |
import useIsMounted from './useIsMounted'; | |
type OnChange = TextInputProps['onChangeText']; | |
type FormValue = Record<string, any>; | |
type Errors<Value extends FormValue> = Partial<Value>; | |
type Settings<Value> = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// hook | |
import React from 'react'; | |
import { Dimensions, RefreshControl, ScrollView, View } from 'react-native'; | |
import styled, { useTheme } from 'styled-components/native'; | |
import i18n from '@helpers/i18n'; | |
import { useLayout } from '@react-native-community/hooks'; | |
import { Typography } from '@ui-kit/Typography'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// hook | |
import { useDebugValue, useEffect, useState } from 'react'; | |
import { useUserListAccountMovementsInfinite } from '@api/account-movements/account-movements'; | |
import { AccountMovements } from '@api/fRQTALNFTsAPI.schemas'; | |
import i18n from '@helpers/i18n'; | |
import SETTINGS from '../../shared/constants/transactionOptions'; | |
type Transactions = Record<string, (AccountMovements | undefined)[]>; |