├── DesafiosdeCodigo ├── DesafiosBasicos │ ├── 01-SomandoMultiplos.js │ ├── 02-FizzBuzz.js │ ├── 03-ChamadaRecursiva.js │ ├── 04-NumerosIguais.js │ └── 05-BuscaSequencial.js └── DesafiosIntermediarios │ ├── 01-Fatorialdesajeitado.js │ ├── 02-ChecagemPalindromos.js │ ├── 03-QuadradosPerfeitos.js │ ├── 04-MatrizParImpar.js │ └── 05-ValidacaoParenteses.js ├── DesafiosdeProjetos ├── desafio01-calculadora │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── index.html │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── Button │ │ │ │ ├── index.tsx │ │ │ │ └── styles.tsx │ │ │ └── Input │ │ │ │ ├── index.tsx │ │ │ │ └── styles.tsx │ │ ├── global.tsx │ │ ├── index.tsx │ │ └── styles.tsx │ └── tsconfig.json ├── desafio02-gitwiki │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── index.html │ ├── src │ │ ├── @types │ │ │ └── image.d.ts │ │ ├── assets │ │ │ └── github.png │ │ ├── componentes │ │ │ ├── Button │ │ │ │ ├── index.tsx │ │ │ │ └── styles.tsx │ │ │ ├── Input │ │ │ │ ├── index.tsx │ │ │ │ └── styles.tsx │ │ │ └── ItemRepo │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.tsx │ │ │ │ └── types.tsx │ │ ├── index.tsx │ │ ├── pages │ │ │ ├── App.tsx │ │ │ └── styles.tsx │ │ ├── services │ │ │ └── api.tsx │ │ └── styles.tsx │ └── tsconfig.json ├── desafio03-dioclone │ ├── .gitignore │ ├── README.md │ ├── db.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── @types │ │ │ └── image.d.ts │ │ ├── App.tsx │ │ ├── assets │ │ │ ├── banner.png │ │ │ └── logo-dio.png │ │ ├── componentes │ │ │ ├── Button │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ │ ├── Card │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── Header │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ │ ├── Input │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ │ └── UserInfo │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ ├── fonts │ │ │ ├── OpenSans-Italic-VariableFont_wdth,wght.ttf │ │ │ └── OpenSans-VariableFont_wdth,wght.ttf │ │ ├── index.tsx │ │ ├── pages │ │ │ ├── cadastro │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── feed │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ │ ├── home │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ └── login │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ ├── services │ │ │ └── api.ts │ │ └── styles │ │ │ └── global.ts │ └── tsconfig.json └── desafio04-loginvalidacao │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── components │ │ ├── Button │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ └── Input │ │ │ ├── index.tsx │ │ │ └── styles.ts │ ├── global.ts │ ├── index.tsx │ ├── pages │ │ └── Login │ │ │ ├── index.tsx │ │ │ ├── styles.ts │ │ │ └── types.ts │ └── react-app-env.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── FormacaoComplementar ├── Desafiosdecodigo │ ├── Patinhos.js │ ├── Tuitando.js │ └── ValidacaoNota.js └── README.md ├── ProjetosDeAula ├── dioclone │ ├── .gitignore │ ├── README.md │ ├── db.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── @types │ │ │ └── image.d.ts │ │ ├── App.tsx │ │ ├── assets │ │ │ ├── banner.png │ │ │ └── logo-dio.png │ │ ├── componentes │ │ │ ├── Button │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ │ ├── Card │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── Header │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ │ ├── Input │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ │ └── UserInfo │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ ├── index.tsx │ │ ├── pages │ │ │ ├── feed │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.ts │ │ │ │ └── types.ts │ │ │ ├── home │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ └── login │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ ├── services │ │ │ └── api.ts │ │ └── styles │ │ │ └── global.ts │ └── tsconfig.json └── gitfind │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ └── index.html │ ├── src │ ├── @types │ │ └── image.d.ts │ ├── assets │ │ └── background.png │ ├── componentes │ │ ├── Header │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ └── ItemList │ │ │ ├── index.tsx │ │ │ └── styles.css │ ├── index.tsx │ ├── pages │ │ └── Home │ │ │ ├── index.tsx │ │ │ └── styles.css │ └── styles.css │ └── tsconfig.json └── README.md /DesafiosdeCodigo/DesafiosBasicos/01-SomandoMultiplos.js: -------------------------------------------------------------------------------- 1 | var a = parseInt(gets()); 2 | var N = parseInt(gets()); 3 | let soma = 0; 4 | 5 | for(let i = 0; i <= N; i++){ 6 | if(i % a === 0) { 7 | soma += i; 8 | } 9 | } 10 | 11 | print(soma); -------------------------------------------------------------------------------- /DesafiosdeCodigo/DesafiosBasicos/02-FizzBuzz.js: -------------------------------------------------------------------------------- 1 | let resultado = gets(); 2 | print(fizzBuzz(resultado)); 3 | 4 | function fizzBuzz(resultado){ 5 | if (resultado % 3 == 0 && resultado % 5 == 0) { 6 | return "FizzBuzz"; 7 | } else if (resultado % 3 == 0 || resultado % 5 == 0) { 8 | if (resultado % 3 == 0){ 9 | return "Fizz"; 10 | } else { 11 | return "Buzz"; 12 | } 13 | } else { 14 | return resultado; 15 | } 16 | } -------------------------------------------------------------------------------- /DesafiosdeCodigo/DesafiosBasicos/03-ChamadaRecursiva.js: -------------------------------------------------------------------------------- 1 | let n = parseInt(gets()); 2 | 3 | print (somatorio(n)) 4 | 5 | function somatorio(n){ 6 | if (n > 0) 7 | return n + somatorio(n-1) 8 | else 9 | return 0 10 | } -------------------------------------------------------------------------------- /DesafiosdeCodigo/DesafiosBasicos/04-NumerosIguais.js: -------------------------------------------------------------------------------- 1 | let A = gets(); 2 | let B = gets(); 3 | 4 | if (A == B) { 5 | print("Sao iguais!"); 6 | } else { 7 | print("Nao sao iguais!"); 8 | } -------------------------------------------------------------------------------- /DesafiosdeCodigo/DesafiosBasicos/05-BuscaSequencial.js: -------------------------------------------------------------------------------- 1 | let elementos = [64, 137, -16, 43, 67, 81, -90, 212, 10, 75]; 2 | 3 | let valor = parseInt(gets()); 4 | 5 | let encontrado = elementos.find(elemento => elemento === valor); 6 | 7 | if (encontrado !== undefined){ 8 | let index = elementos.indexOf(encontrado) 9 | print(`Achei ${encontrado} na posicao ${index}`) 10 | } else { 11 | print(`Numero ${valor} nao encontrado!`) 12 | } -------------------------------------------------------------------------------- /DesafiosdeCodigo/DesafiosIntermediarios/01-Fatorialdesajeitado.js: -------------------------------------------------------------------------------- 1 | let lines = gets().split("\n"); 2 | let n = parseInt(lines.shift()); 3 | 4 | if (n <= 2) { 5 | 6 | print(n); 7 | 8 | } 9 | 10 | let i = n; 11 | let arr = [] 12 | let total = 0 13 | 14 | 15 | while (i >= 1) { 16 | arr[i] = i 17 | i-- 18 | } 19 | arr.shift() 20 | let array = arr.reverse() 21 | let a = array.length 22 | 23 | 24 | while (array.length > 0) { 25 | if (array.length >= 4) { 26 | total += parseInt((array[0] * array[1]) / (array[2])) + array[3] 27 | array.splice(0, 4) 28 | while (array.length >= 4) { 29 | total = total - parseInt((array[0] * array[1]) / array[2]) + array[3] 30 | array.splice(0, 4) 31 | } 32 | if (array.lengh == 3) { 33 | total = total - parseInt((array[0] * array[1]) / array[2]) 34 | array.splice(0, 3) 35 | } 36 | if (array.length == 2) { 37 | total = total - (array[0] * array[1]) 38 | array.splice(0, 2) 39 | } 40 | if (array.length == 1) { 41 | total = total - array[0] 42 | array.splice(0, 1) 43 | } 44 | } 45 | if (array.lengh == 3) { 46 | total = total + parseInt((array[0] * array[1]) / array[2]) 47 | array.splice(0, 3) 48 | if (array.length == 2) { 49 | total = total - (array[0] * array[1]) 50 | array.splice(0, 2) 51 | } 52 | if (array.length == 1) { 53 | total = total - array[0] 54 | array.splice(0, 1) 55 | } 56 | } 57 | if (array.length == 2) { 58 | total = total - (array[0] * array[1]) 59 | array.splice(0, 2) 60 | } 61 | } 62 | console.log(parseInt(total)) -------------------------------------------------------------------------------- /DesafiosdeCodigo/DesafiosIntermediarios/02-ChecagemPalindromos.js: -------------------------------------------------------------------------------- 1 | let resultado = gets(); 2 | print(checaPalindromo(resultado)); 3 | 4 | function checaPalindromo(entrada){ 5 | const letras = entrada.split('').reverse().join('') 6 | if(entrada === letras){ 7 | return "TRUE" 8 | } else { 9 | return "FALSE" 10 | } 11 | } -------------------------------------------------------------------------------- /DesafiosdeCodigo/DesafiosIntermediarios/03-QuadradosPerfeitos.js: -------------------------------------------------------------------------------- 1 | let lines = gets().split("\n"); 2 | let n = parseInt(lines.shift()); 3 | let res; 4 | let count; 5 | let countTotal; 6 | 7 | const dp = new Array(n + 1).fill(Infinity); 8 | 9 | for (let i = 1; i < dp.length; i++) { 10 | if (i * i <= n) { 11 | dp[i] = i * i; 12 | } else { 13 | i = dp.length - 1; 14 | } 15 | } 16 | 17 | countTotal = 1000; 18 | 19 | for (let i = dp.length - 1; i > 0 && i <= n; i--) { 20 | 21 | if ((i > 0) && (dp[i] > 0)) { 22 | 23 | res = n; 24 | count = 0; 25 | 26 | for (let j = i; j > 0; j--) { 27 | 28 | while (res > 0) { 29 | if (res >= dp[j]) { 30 | res = res - dp[j]; 31 | count++; 32 | } else { 33 | j--; 34 | } 35 | } 36 | } 37 | 38 | if (countTotal > count) { 39 | countTotal = count; 40 | } 41 | 42 | } 43 | } 44 | 45 | print(countTotal); -------------------------------------------------------------------------------- /DesafiosdeCodigo/DesafiosIntermediarios/04-MatrizParImpar.js: -------------------------------------------------------------------------------- 1 | let arr = gets().split(''); 2 | let arrVazio = []; 3 | 4 | for (let i = 0; i < arr.length; i++){ 5 | if(arr[i] % 2 === 0){ 6 | arrVazio.unshift(arr[i]) 7 | } else { 8 | arrVazio.push(arr[i]) 9 | } 10 | } 11 | 12 | print(arrVazio) -------------------------------------------------------------------------------- /DesafiosdeCodigo/DesafiosIntermediarios/05-ValidacaoParenteses.js: -------------------------------------------------------------------------------- 1 | let valor = gets() 2 | 3 | print(isValid(valor)) 4 | 5 | function isValid(s) { 6 | 7 | let letras = s.split('') 8 | const stack = ["(",")","{","}","[","]"]; 9 | let b = false 10 | 11 | for(let i = 0; i < stack.length; i++){ 12 | if ((letras[0] === stack[i]) && (letras[1] === stack [i + 1])){ 13 | b = true; 14 | } 15 | } 16 | return b; 17 | } -------------------------------------------------------------------------------- /DesafiosdeProjetos/desafio01-calculadora/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /DesafiosdeProjetos/desafio01-calculadora/README.md: -------------------------------------------------------------------------------- 1 | # Getting Started with Create React App 2 | 3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 4 | 5 | ## Available Scripts 6 | 7 | In the project directory, you can run: 8 | 9 | ### `npm start` 10 | 11 | Runs the app in the development mode.\ 12 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 13 | 14 | The page will reload if you make edits.\ 15 | You will also see any lint errors in the console. 16 | 17 | ### `npm test` 18 | 19 | Launches the test runner in the interactive watch mode.\ 20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 21 | 22 | ### `npm run build` 23 | 24 | Builds the app for production to the `build` folder.\ 25 | It correctly bundles React in production mode and optimizes the build for the best performance. 26 | 27 | The build is minified and the filenames include the hashes.\ 28 | Your app is ready to be deployed! 29 | 30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 31 | 32 | ### `npm run eject` 33 | 34 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 35 | 36 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 37 | 38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. 39 | 40 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. 41 | 42 | ## Learn More 43 | 44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 45 | 46 | To learn React, check out the [React documentation](https://reactjs.org/). 47 | -------------------------------------------------------------------------------- /DesafiosdeProjetos/desafio01-calculadora/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "desafio01-calculadora", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^5.16.5", 7 | "@testing-library/react": "^13.4.0", 8 | "@testing-library/user-event": "^13.5.0", 9 | "@types/jest": "^27.5.2", 10 | "@types/node": "^16.18.3", 11 | "@types/react": "^18.0.25", 12 | "@types/react-dom": "^18.0.9", 13 | "react": "^18.2.0", 14 | "react-dom": "^18.2.0", 15 | "react-scripts": "5.0.1", 16 | "styled-components": "^5.3.6", 17 | "typescript": "^4.8.4", 18 | "web-vitals": "^2.1.4" 19 | }, 20 | "scripts": { 21 | "start": "react-scripts start", 22 | "build": "react-scripts build", 23 | "test": "react-scripts test", 24 | "eject": "react-scripts eject" 25 | }, 26 | "eslintConfig": { 27 | "extends": [ 28 | "react-app", 29 | "react-app/jest" 30 | ] 31 | }, 32 | "browserslist": { 33 | "production": [ 34 | ">0.2%", 35 | "not dead", 36 | "not op_mini all" 37 | ], 38 | "development": [ 39 | "last 1 chrome version", 40 | "last 1 firefox version", 41 | "last 1 safari version" 42 | ] 43 | }, 44 | "devDependencies": { 45 | "@types/styled-components": "^5.1.26" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /DesafiosdeProjetos/desafio01-calculadora/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 14 | Calculadora 15 | 16 | 17 | 18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /DesafiosdeProjetos/desafio01-calculadora/src/App.tsx: -------------------------------------------------------------------------------- 1 | import { useState } from "react"; 2 | import Button from "./components/Button"; 3 | import Input from "./components/Input"; 4 | import { Container, Content, Row } from "./styles"; 5 | 6 | const App = () => { 7 | const [currentNumber, setCurrentNumber] = useState('0'); 8 | const [firstNumber, setfirstNumber] = useState('0'); 9 | const [operation, setOperation] = useState(''); 10 | 11 | const handleAddNumber = (number: string) => { 12 | if(operation !== '' && currentNumber !== '0'){ 13 | setCurrentNumber('0') 14 | } 15 | setCurrentNumber(prev => `${prev === '0' ? '' : prev}${number}`) 16 | } 17 | 18 | const handleOnClear = () => { 19 | setCurrentNumber('0') 20 | setfirstNumber('0') 21 | setOperation('') 22 | } 23 | 24 | const handleEquals = () => { 25 | if (firstNumber !== '0' && operation !== '' && currentNumber !== '0') { 26 | switch (operation) { 27 | case '+': 28 | handSumNumber(); 29 | setfirstNumber('0') 30 | setOperation('') 31 | break; 32 | case '-': 33 | handMinusNumber(); 34 | setfirstNumber('0') 35 | setOperation('') 36 | break; 37 | case 'x': 38 | handMultiplicarNumber(); 39 | setfirstNumber('0') 40 | setOperation('') 41 | break; 42 | case '/': 43 | handDividirNumber(); 44 | setfirstNumber('0') 45 | setOperation('') 46 | break; 47 | default: 48 | break; 49 | } 50 | } 51 | } 52 | 53 | const handSumNumber = () => { 54 | if (firstNumber === '0') { 55 | setfirstNumber(currentNumber) 56 | setCurrentNumber('0') 57 | setOperation('+') 58 | } else { 59 | const sum = Number(firstNumber) + Number(currentNumber) 60 | setCurrentNumber(sum.toString()) 61 | setfirstNumber(sum.toString()) 62 | setOperation('+') 63 | } 64 | 65 | } 66 | 67 | const handMinusNumber = () => { 68 | if (firstNumber === '0') { 69 | setfirstNumber(currentNumber) 70 | setCurrentNumber('0') 71 | setOperation('-') 72 | } else { 73 | const minus = Number(firstNumber) - Number(currentNumber) 74 | setCurrentNumber(minus.toString()) 75 | setfirstNumber(currentNumber) 76 | setOperation('-') 77 | } 78 | } 79 | 80 | const handMultiplicarNumber = () => { 81 | if (firstNumber === '0') { 82 | setfirstNumber(currentNumber) 83 | setCurrentNumber('0') 84 | setOperation('x') 85 | } else { 86 | const minus = Number(firstNumber) * Number(currentNumber) 87 | setCurrentNumber(minus.toString()) 88 | setfirstNumber(currentNumber) 89 | setOperation('x') 90 | } 91 | } 92 | 93 | const handDividirNumber = () => { 94 | if (firstNumber === '0') { 95 | setfirstNumber(currentNumber) 96 | setCurrentNumber('0') 97 | setOperation('/') 98 | } else { 99 | const minus = Number(firstNumber) / Number(currentNumber) 100 | setCurrentNumber(minus.toString()) 101 | setfirstNumber(currentNumber) 102 | setOperation('/') 103 | } 104 | } 105 | 106 | return ( 107 | 108 | 109 | 110 | 111 | 51 | 52 | {currentUser?.name ? ( 53 | <> 54 |
55 | Imagem de perfil 56 |
57 |

{currentUser.name}

58 | @{currentUser.login} 59 |

{currentUser.bio}

60 |
61 |
62 |
63 | 64 | ) : null} 65 | {repos.length ? ( 66 |
67 |

Repositórios

68 | {repos.map(repo => ( 69 | 70 | ))} 71 |
72 | ) : null} 73 | 74 | 75 | 76 | ); 77 | } 78 | 79 | export default App; 80 | -------------------------------------------------------------------------------- /ProjetosDeAula/gitfind/src/pages/Home/styles.css: -------------------------------------------------------------------------------- 1 | .conteudo { 2 | position: relative; 3 | display: flex; 4 | align-items: flex-start; 5 | justify-content: flex-end; 6 | } 7 | 8 | .background { 9 | height: 100vh; 10 | position: absolute; 11 | left: 0; 12 | } 13 | 14 | .info { 15 | width: 60%; 16 | margin-right: 90px; 17 | margin-top: 40px; 18 | color: #FFFFFF 19 | } 20 | 21 | input { 22 | border: 1px solid #999999; 23 | border-radius: 22px; 24 | min-width:250px; 25 | width: 85%; 26 | margin-right: 12px; 27 | background: transparent; 28 | font-size: 18px; 29 | padding: 10px; 30 | color: #FFFFFF 31 | } 32 | 33 | button { 34 | border: 1px solid #999999; 35 | border-radius: 22px; 36 | margin-right: 12px; 37 | background: #2D333B; 38 | color: #FFFFFF; 39 | font-size: 18px; 40 | padding: 10px; 41 | } 42 | 43 | .perfil { 44 | display: flex; 45 | margin: 40px 0; 46 | } 47 | 48 | .profile { 49 | width: 120px; 50 | height: 120px; 51 | border-radius: 60px; 52 | border: 2px solid #E5E5E5; 53 | margin-right: 32px; 54 | } 55 | 56 | .perfil h3{ 57 | color: #999999; 58 | font-size: 24px; 59 | margin: 0; 60 | } 61 | 62 | .perfil span { 63 | display: block; 64 | color: #999999; 65 | font-size: 12px; 66 | margin: 0; 67 | } 68 | 69 | .perfil p { 70 | color: #999999; 71 | font-size: 12px; 72 | margin: 20px 0 0 0; 73 | } 74 | 75 | .repositorio { 76 | font-size: 32px; 77 | color: #FFFFFF; 78 | margin: 12px 0; 79 | text-align: center; 80 | } -------------------------------------------------------------------------------- /ProjetosDeAula/gitfind/src/styles.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | 6 | body { 7 | background-color: #102128; 8 | } 9 | 10 | hr { 11 | background-color: rgba(229, 229, 229, 0.2); 12 | border: 1px solid rgba(229, 229, 229, 0.2); 13 | } -------------------------------------------------------------------------------- /ProjetosDeAula/gitfind/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": [ 5 | "dom", 6 | "dom.iterable", 7 | "esnext" 8 | ], 9 | "allowJs": true, 10 | "skipLibCheck": true, 11 | "esModuleInterop": true, 12 | "allowSyntheticDefaultImports": true, 13 | "strict": true, 14 | "forceConsistentCasingInFileNames": true, 15 | "noFallthroughCasesInSwitch": true, 16 | "module": "esnext", 17 | "moduleResolution": "node", 18 | "resolveJsonModule": true, 19 | "isolatedModules": true, 20 | "noEmit": true, 21 | "jsx": "react-jsx" 22 | }, 23 | "include": [ 24 | "src" 25 | ] 26 | } 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DIO Bootcamp Inter Javascript 2 | Repositório Criado para inserir os desafios de códigos realizados no Bootcamp Orange Tech + com foco em Javascript realizado na DIO em parceria com a Inter 3 | 4 | ![image](https://user-images.githubusercontent.com/24790794/207695058-99af6fe1-58e4-44af-a33d-3847e2bbe235.png) 5 | 6 | ## Autor 7 | 8 | 9 | 10 |
11 | Thamyres Magalães
12 | 13 | Feito por Thamyres Magalhães 👋🏽 Entre em contato! 14 | 15 | [![Linkedin Badge](https://img.shields.io/badge/-Thamyres-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/thamyres-magalhaes/)](https://www.linkedin.com/in/thamyres-magalhaes/) 16 | [![Gmail Badge](https://img.shields.io/badge/-pink.thamyres@gmail.com-c14438?style=flat-square&logo=Gmail&logoColor=white&link=mailto:pink.thamyres@gmail.com)](mailto:pink.thamyres@gmail.com) 17 | --------------------------------------------------------------------------------