This file contains hidden or 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
-- ~/.config/nvim/init.lua | |
-- bootstrap lazy | |
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" | |
if not vim.loop.fs_stat(lazypath) then | |
vim.fn.system({ | |
"git", "clone", "--filter=blob:none", | |
"https://github.com/folke/lazy.nvim.git", | |
lazypath | |
}) |
This file contains hidden or 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 { useMemo, useCallback } from 'react' | |
import { | |
useWindowDimensions, | |
StyleSheet, | |
ViewStyle, | |
TextStyle, | |
ImageStyle | |
} from "react-native"; |
This file contains hidden or 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
# must run `npm run build` before building | |
# Once you go 'production' deployed, make sure to NEXTAUTH_URL and AUTH_TRUST_HOST | |
server { | |
server_name sub.example.com; | |
# no index file required | |
root /var/www/NEXTJS_ROOT; | |
# Serve static assets. Adjust cache as needed |
This file contains hidden or 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 React, { useMemo } from 'react' | |
import { Svg, Path } from 'react-native-svg' | |
import { View, StyleSheet, Text, TouchableOpacity, PixelRatio, StyleProp, ViewStyle } from 'react-native'; | |
type Props = { | |
checked: boolean | |
onChange: (checked: boolean) => void | |
label: string | |
disabled?: boolean | |
} |
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or 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
year,make,model,engine,code | |
1942,Buick,Century Series 60,5.2L 5248CC L8 Carb, 1486183 | |
1942,Buick,Limited Series 90,5.2L 5248CC L8 Carb, 1486184 | |
1942,Buick,Roadmaster Series 70,5.2L 5248CC L8 Carb, 1486185 | |
1942,Buick,Special Series 40-A,4.1L 4065CC L8 Carb, 1486186 | |
1942,Buick,Special Series 40-B,4.1L 4065CC L8 Carb, 1575176 | |
1942,Buick,Super Series 50,4.1L 4065CC L8 Carb, 1486187 | |
1942,Cadillac,Series 60,5.3L 5272CC V8 Carb, 1486188 | |
1942,Cadillac,Series 60,5.7L 5671CC V8 Carb, 1486189 |
This file contains hidden or 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
"filetype plugin indent on | |
set background=dark | |
syntax on | |
set encoding=utf-8 | |
set nocompatible | |
" put swap files here | |
set directory^=$HOME/.vim/tmp// |