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
| declare enum HttpStatusCode { | |
| CONTINUE = 100, | |
| SWITCHING_PROTOCOLS = 101, | |
| PROCESSING = 102, | |
| OK = 200, | |
| CREATED = 201, | |
| ACCEPTED = 202, | |
| NON_AUTHORITATIVE_INFORMATION = 203, | |
| NO_CONTENT = 204, | |
| RESET_CONTENT = 205, |
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
| declare enum HttpStatusCode { | |
| CONTINUE = 100, | |
| SWITCHING_PROTOCOLS = 101, | |
| PROCESSING = 102, | |
| OK = 200, | |
| CREATED = 201, | |
| ACCEPTED = 202, | |
| NON_AUTHORITATIVE_INFORMATION = 203, | |
| NO_CONTENT = 204, |
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
| declare enum HttpStatusCode { | |
| CONTINUE = 100, | |
| SWITCHING_PROTOCOLS = 101, | |
| PROCESSING = 102, | |
| OK = 200, | |
| CREATED = 201, | |
| ACCEPTED = 202, | |
| NON_AUTHORITATIVE_INFORMATION = 203, | |
| NO_CONTENT = 204, |
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
| interface ITheme { | |
| font: string; | |
| colors: IColors; | |
| fontWeights: IFontWeights; | |
| space: string[]; | |
| breakpoints: string[]; | |
| fontSize: IFontSize; | |
| } | |
| interface IColors { |
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
| export default { | |
| font: `Avenir, -apple-system, ".SFNSText-Regular", "San Francisco", Roboto, "Segoe UI", | |
| "Helvetica Neue", "Lucida Grande", sans-serif`, | |
| colors: { | |
| black: '#333', | |
| jetBlack: '#050002', | |
| offWhite: 'rgb(245, 249, 250)', | |
| primeWhite: 'rgb(250, 252, 251)', | |
| grey1: '#E7E7E7', | |
| grey2: '#ccc', |
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
| #!/bin/sh | |
| docker kill $(docker ps -q) |
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
| #### Alises ##### | |
| ################## | |
| export PS1="👻 --> " | |
| alias up='cd .. && ls' | |
| alias down='cd ' | |
| alias gp='git push' | |
| alias gpu='git pull' | |
| alias gpf='git push --force' | |
| alias gf='git fetch' |
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
Show hidden characters
| { | |
| "extends": [ | |
| "last", | |
| "prettier/react", | |
| "plugin:react/recommended" | |
| ] | |
| } |
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 Container from '' | |
| export default () => ( | |
| <Container> | |
| <div>Quisque finibus elit quis turpis elementum tempor at id dolor. Nam scelerisque, libero a elementum condimentum, nulla lorem auctor nulla, a mattis diam sapien quis metus.</div> | |
| <div>Quisque finibus elit quis turpis elementum tempor at id dolor. Nam scelerisque, libero a elementum condimentum, nulla lorem auctor nulla, a mattis diam sapien quis metus.</div> | |
| <div>Quisque finibus elit quis turpis elementum tempor at id dolor. Nam scelerisque, libero a elementum condimentum, nulla lorem auctor nulla, a mattis diam sapien quis metus.</div> | |
| <div>Quisque finibus elit quis turpis elementum tempor at id dolor. Nam scelerisque, libero a elementum condimentum, nulla lorem auctor nulla, a mattis diam sapien quis metus.</div> | |
| </Container> | |
| ); |
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 { Children } from "react"; | |
| import styled, { keyframes } from "styled-components"; | |
| const fadeIn = keyframes` | |
| from { opacity: 0; } | |
| `; | |
| export default styled.div` | |
| > * { | |
| animation: ${fadeIn} 500ms ease-out backwards; |