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 styled, { css } from 'styled-components'; | |
| interface ContainerProps { | |
| isFocused: boolean; | |
| isFilled: boolean; | |
| isErrored: boolean; | |
| isFullWidth?: boolean; | |
| } | |
| export const Container = styled.div<ContainerProps>` |
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
| { | |
| "notifications": [ | |
| { | |
| "id": 1, | |
| "message": "Message", | |
| "date": "2020-02-03T14:09:52.587Z" | |
| }, | |
| { | |
| "id": 2, | |
| "message": "Message 2", |
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, { useState, useEffect, useRef } from "react"; | |
| import { | |
| View, | |
| Image, | |
| StyleSheet, | |
| TextInput, | |
| Text, | |
| StatusBar, | |
| TouchableOpacity, | |
| AsyncStorage, |
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
| yarn add prop-types react-navigation reactotron-react-native --save | |
| yarn add eslint-import-resolver-babel-module babel-plugin-module-resolver babel-eslint eslint eslint-config-airbnb eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react eslint-plugin-react-native --dev |
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
| // | |
| // Default | |
| // Usage: $triangle(width, height, direction, color) | |
| // ------------------------------------------------------------ | |
| $triangle($width = 10px, $height = 10px, $direction = 'bottom', $color = $gray-darker) | |
| background none | |
| border-style solid | |
| height 0 | |
| width 0 |
I hereby claim:
- I am ribeiroevandro on github.
- I am ribeiroevandro (https://keybase.io/ribeiroevandro) on keybase.
- I have a public key whose fingerprint is FF9F F8BF BC40 42F9 8DE3 C1E7 E300 833E E9FB 41A7
To claim this, I am signing this object:
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/bash | |
| clear | |
| echo "Please enter your e-mail:" | |
| read email | |
| # install google chrome | |
| sudo apt-get install libcurl3 libnspr4-0d libxss1 -y | |
| wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
| sudo dpkg -i google-chrome*; rm google-chrome* |
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
| dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\ )-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | xargs s udo apt-get -y purge |