Type | Emoji | code |
---|---|---|
feat | ✨ | :sparkles: |
fix | 🐛 | :bug: |
docs | 📚 | :books: |
style | 💎 | :gem: |
refactor | 🔨 | :hammer: |
perf | 🚀 | :rocket: |
test | 🚨 | :rotating_light: |
build | 📦 | :package: |
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
h1 { | |
font-family: "Luckiest Guy", cursive; | |
font-size: 4em; | |
color: #fff; | |
text-shadow: 0 0.1em 20px rgba(0, 0, 0, 1), 0.05em -0.03em 0 rgba(0, 0, 0, 1), | |
0.05em 0.005em 0 rgba(0, 0, 0, 1), 0em 0.08em 0 rgba(0, 0, 0, 1), | |
0.05em 0.08em 0 rgba(0, 0, 0, 1), 0px -0.03em 0 rgba(0, 0, 0, 1), | |
-0.03em -0.03em 0 rgba(0, 0, 0, 1), -0.03em 0.08em 0 rgba(0, 0, 0, 1), -0.03em 0 0 rgba(0, 0, 0, 1) | |
} |
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 React, { createContext, useContext, useReducer} from 'react' | |
const AppContext = createContext() | |
export function useAppContext() { | |
return useContext(AppContext) | |
} | |
const initState = { | |
users: [] |
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 React, { createContext, useContext, useReducer } from 'react' | |
interface StateInterface { | |
data: string[] | |
} | |
interface Actions { | |
type: string | |
payload: any | |
} |
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
# PATH | |
export PATH=$HOME/bin:/usr/local/bin:$HOME/.npm-global/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="$HOME/.oh-my-zsh" | |
export DENO_INSTALL="/Users/destin/.deno" | |
export PATH="$DENO_INSTALL/bin:$PATH" | |
export PHP_CS_FIXER_IGNORE_ENV=1 |
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
// CHALK - coloring out put | |
import chalk from 'chalk' | |
console.log(chalk.redBright('Hello from chalk')) | |
// YARGS - parse argv | |
import yargs from 'yargs-parser' | |
const argv = yargs(process.argv.slice(2)) | |
console.log(argv) |
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
root = true | |
[*] | |
charset = utf-8 | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf | |
insert_final_newline = false | |
trim_trailing_whitespace = true |
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
:root { | |
--black: #111; | |
--gray: #555; | |
--gray-dark: #1c1d21; | |
--gray-light: #888; | |
--white: #f7f7f7; | |
--red: #e94a50; | |
--green: #7dbb5c; | |
--blue: #4fb3db; | |
--orange: #fe7c0d; |
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
/* HEX */ | |
--black: #111; | |
--gray: #555; | |
--gray-dark: #1c1d21; | |
--gray-light: #888; | |
--white: #f7f7f7; | |
--red: #e94a50; | |
--green: #7dbb5c; | |
--blue: #4fb3db; |
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
<!-- READ FIRST: https://babeljs.io/docs/en/babel-standalone --> | |
<!-- <script type="text/babel" src="https://unpkg.com/@babel/standalone/babel.min.js"></script> --> | |
<script src="https://unpkg.com/[email protected]/umd/react.development.js"></script> | |
<script src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script> |
OlderNewer