├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── avancado └── readme.md ├── badges-shields └── readme.md ├── cards-status └── readme.md ├── perfil ├── exemplo-01.md ├── exemplo-02.md ├── exemplo-03.md ├── exemplo-04.md ├── exemplo-05.md ├── exemplo-06.md └── exemplo-07.md └── repositorio ├── exemplo-01.md └── imagem.png /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Como contribuir? 2 | 3 | Este é um projeto totalmente livre que aceita contribuições via pull requests no GitHub. Este documento tem a responsabilidade de alinhar as contribuições de acordo com os padrões estabelecidos no mesmo. Em caso de dúvidas, [abra uma issue](https://github.com/iuricode/readme-template/issues/new). 4 | 5 | ## Passos 6 | 7 | 1. Crie um fork deste repositório. 8 | 2. Envie seus commits em português. 9 | 3. Insira um pequeno resumo sobre o que foi adicionado. 10 | 4. Solicite um pull request. 11 | 12 | ## Recomendação (opcional) 13 | 14 | Para uma melhor semântica nos commits, recomendamos nosso repositório sobre [padrões de commits](https://github.com/iuricode/padroes-de-commits). Assim ficará mais fácil para avaliar seu pull request. 15 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | #### Copyright © 2020 / [Iuri Silva](https://github.com/iuricode) 2 | 3 | A permissão é concedida, gratuitamente, a qualquer pessoa que obtenha uma cópia deste arquivo, sem restrição nos direitos de usar, copiar, modificar e mesclar. 4 | 5 | #### Referências 6 | 7 | - [GitHub readme stats](https://github.com/anuraghazra/github-readme-stats) 8 | - [Awesome profile readme templates](https://github.com/kautukkundan/Awesome-Profile-README-templates) 9 | - [Readme](https://github.com/guodongxiaren/README) 10 | - [Badges shields](https://github.com/badges/shields) 11 | - [Template readme](https://github.com/DiasEllen26/template-readme) 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Readme Template 📜 2 | 3 | Bem-vindo(a) ao **Readme Template**! Aqui você encontrará uma variedade de modelos de readme para usar em seus repositórios e perfil no GitHub. Explore nossa coleção de templates e encontre aquele que melhor se adequa ao seu projeto. Comece agora mesmo e deixe o seu readme brilhar! 4 | 5 | ## Templates de perfil ☕️ 6 | 7 | Diga adeus aos perfis sem graça. Com nossos **[templates de perfil](https://github.com/iuricode/readme-template/tree/main/perfil)**, você terá um readme de perfil incrível. Com cores vibrantes, imagens surpreendentes e outros elementos visuais cativantes. 8 | 9 | ## Templates de repositório 🎉 10 | 11 | Documente seus projetos com nossos exemplos de **[templates de repositório](https://github.com/iuricode/readme-template/tree/main/repositorio)** incríveis. Esses templates abrangem diversas seções essenciais, incluindo descrição, instalação, uso, contribuição e licença. 12 | 13 | ## Status e badges shields 🦄 14 | 15 | Aperfeiçoe o seu perfil e os seus repositórios adicionando **[cards de status](https://github.com/iuricode/readme-template/tree/main/cards-status/readme.md)** e **[badges shields](https://github.com/iuricode/readme-template/tree/main/badges-shields/readme.md)** ao seu readme. Esses cards proporcionam uma visão aprimorada e detalhada das informações relevantes, tornando o seu perfil e os seus projetos ainda mais impressionantes. 16 | 17 | ## Formatações avançadas 🔥 18 | 19 | Melhore seus readmes adicionando interações com as **[formatações avançadas.](https://github.com/iuricode/readme-template/tree/main/avancado/readme.md)** 20 | 21 | ## Contribuição ✨ 22 | 23 | Ajude a comunidade tornando este projeto ainda mais incrível. Leia como contribuir clicando **[aqui](https://github.com/iuricode/readme-template/blob/main/CONTRIBUTING.md)** e a **[licença](https://github.com/iuricode/readme-template/blob/main/LICENSE.md)**. Estou convencido de que juntos alcançaremos coisas incríveis! 24 | 25 | ## Aprenda programação ❤️ 26 | 27 | Este repositório é um projeto gratuito para a comunidade de desenvolvedores, mas você pode me ajudar comprando o meu curso "**[FrontCode](https://iuricode.com/frontcode)**" se estiver interessado em aprender ou melhorar suas habilidades na programação. A sua compra me ajuda a produzir e fornecer mais conteúdo gratuito para a comunidade. Adquira agora e comece sua jornada na programação. 28 | -------------------------------------------------------------------------------- /avancado/readme.md: -------------------------------------------------------------------------------- 1 | # 🐙 Formatações avançadas 2 | 3 | ## Alertas 4 | 5 | Alertas são uma extensão Markdown baseada na sintaxe blockquote que você pode usar para enfatizar informações críticas. Eles são exibidos com cores e ícones distintos para indicar a importância do conteúdo. 6 | 7 | > [!NOTE] 8 | > Useful information that users should know, even when skimming content. 9 | 10 | > [!TIP] 11 | > Helpful advice for doing things better or more easily. 12 | 13 | > [!IMPORTANT] 14 | > Key information users need to know to achieve their goal. 15 | 16 | > [!WARNING] 17 | > Urgent info that needs immediate user attention to avoid problems. 18 | 19 | > [!CAUTION] 20 | > Advises about risks or negative outcomes of certain actions. 21 | 22 | ## Seção recolhida 23 | 24 | Você pode recolher temporariamente seções do seu Markdown criando uma seção expandida que o leitor pode optar por expandir. Por exemplo, quando você deseja incluir detalhes técnicos em um comentário do problema que pode não ser relevante ou interessante para todos os leitores, você pode colocar esses detalhes em uma seção recolhida. 25 | 26 | Qualquer Markdown dentro do bloco `
` estará recolhido até que o leitor clique em para expandir os detalhes. 27 | 28 | No bloco `
`, use a marca `` para que os leitores saibam o que está dentro dele. O rótulo aparece à direita de . 29 | 30 |
31 | 32 | Tips for collapsed sections 33 | 34 | ### You can add a header 35 | 36 | You can add text within a collapsed section. 37 | 38 | You can add an image or a code block, too. 39 | 40 | ```ruby 41 | puts "Hello World" 42 | ``` 43 | 44 |
45 | 46 | ## Diagramas do Mermaid 47 | 48 | O Mermaid é uma ferramenta inspirada em Markdown que transforma texto em diagramas. Por exemplo, o Mermaid pode interpretar gráficos de fluxo, diagramas de sequência, gráficos de pizza e muito mais. 49 | 50 | Para criar um diagrama do Mermaid, adicione a sintaxe do Mermaid dentro de um bloco de código isolado com o identificador de linguagem mermaid. 51 | 52 | Por exemplo, você pode criar um fluxograma especificando valores e setas. 53 | 54 | Here is a simple flow chart: 55 | 56 | ```mermaid 57 | graph TD; 58 | A-->B; 59 | A-->C; 60 | B-->D; 61 | C-->D; 62 | ``` 63 | 64 | ## Mapas 65 | 66 | É possível usar a sintaxe GeoJSON ou TopoJSON para criar mapas interativos. Para criar um mapa, adicione GeoJSON ou TopoJSON em um bloco de código protegido com o identificador de sintaxe geojson ou topojson. 67 | 68 | ```geojson 69 | { 70 | "type": "FeatureCollection", 71 | "features": [ 72 | { 73 | "type": "Feature", 74 | "id": 1, 75 | "properties": { 76 | "ID": 0 77 | }, 78 | "geometry": { 79 | "type": "Polygon", 80 | "coordinates": [ 81 | [ 82 | [ 83 | -90, 84 | 35 85 | ], 86 | [ 87 | -90, 88 | 30 89 | ], 90 | [ 91 | -85, 92 | 30 93 | ], 94 | [ 95 | -85, 96 | 35 97 | ], 98 | [ 99 | -90, 100 | 35 101 | ] 102 | ] 103 | ] 104 | } 105 | } 106 | ] 107 | } 108 | ``` 109 | -------------------------------------------------------------------------------- /badges-shields/readme.md: -------------------------------------------------------------------------------- 1 | ## Como usar os badges shields? 2 | 3 | 1. Pegue a URL 4 | 2. Cria a tag img `` ou `![image](BadgeURLAqui)` 5 | 3. Copie e cole no seu readme 6 | 7 | ## Menu 8 | 9 | - [Como usar os badges shields?](#como-usar-os-badges-shields) 10 | - [Menu](#menu) 11 | - [Contato](#contato) 12 | - [Social](#social) 13 | - [Blog](#blog) 14 | - [Streaming](#streaming) 15 | - [IDES](#ides) 16 | - [Skills](#skills) 17 | - [Jogos](#jogos) 18 | 19 | ## Contato 20 | 21 | | Badge | URL 22 | ------------ | ------------- 23 | | `https://img.shields.io/badge/WhatsApp-25D366?style=for-the-badge&logo=whatsapp&logoColor=white` 24 | | `https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white` 25 | | `https://img.shields.io/badge/Gmail-D14836?style=for-the-badge&logo=gmail&logoColor=white` 26 | | `https://img.shields.io/badge/Messenger-00B2FF?style=for-the-badge&logo=messenger&logoColor=white` 27 | | `https://img.shields.io/badge/ProtonMail-8B89CC?style=for-the-badge&logo=protonmail&logoColor=white` 28 | | `https://img.shields.io/badge/Microsoft_Outlook-0078D4?style=for-the-badge&logo=microsoft-outlook&logoColor=white` 29 | 30 | ## Social 31 | 32 | Badge | URL 33 | ------------ | ------------- 34 | | `https://img.shields.io/badge/Facebook-1877F2?style=for-the-badge&logo=facebook&logoColor=white` 35 | | `https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white` 36 | | `https://img.shields.io/badge/Twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white` 37 | | `https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white` 38 | | `https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white` 39 | | `https://img.shields.io/badge/Reddit-FF4500?style=for-the-badge&logo=reddit&logoColor=white` 40 | | `https://img.shields.io/badge/TikTok-000000?style=for-the-badge&logo=tiktok&logoColor=white` 41 | | `https://img.shields.io/badge/GitLab-330F63?style=for-the-badge&logo=gitlab&logoColor=white` 42 | | `https://img.shields.io/badge/Bitbucket-330F63?style=for-the-badge&logo=bitbucket&logoColor=white` 43 | | `https://img.shields.io/badge/XDA_Developers-F59812?style=for-the-badge&logo=xda-developers&logoColor=white` 44 | | `https://img.shields.io/badge/Stack_Overflow-FE7A16?style=for-the-badge&logo=stack-overflow&logoColor=white` 45 | | `https://img.shields.io/badge/Slack-4A154B?style=for-the-badge&logo=slack&logoColor=white` 46 | | `https://img.shields.io/badge/Rocket.Chat-F5455C?style=for-the-badge&logo=rocket.chat&logoColor=white` 47 | 48 | ## Blog 49 | 50 | Badge | URL 51 | ------------ | ------------- 52 | | `https://img.shields.io/badge/Medium-12100E?style=for-the-badge&logo=medium&logoColor=white` 53 | | `https://img.shields.io/badge/dev.to-0A0A0A?style=for-the-badge&logo=dev.to&logoColor=white` 54 | | `https://img.shields.io/badge/Hashnode-2962FF?style=for-the-badge&logo=hashnode&logoColor=white` 55 | | `https://img.shields.io/badge/Blogger-FF5722?style=for-the-badge&logo=blogger&logoColor=white` 56 | | `https://img.shields.io/badge/RSS-FFA500?style=for-the-badge&logo=rss&logoColor=white` 57 | | `https://img.shields.io/badge/WordPress-006E93?style=for-the-badge&logo=wordpress&logoColor=white` 58 | 59 | ## Streaming 60 | 61 | Badge | URL 62 | ------------ | ------------- 63 | | `https://img.shields.io/badge/YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white` 64 | | `https://img.shields.io/badge/Twitch-9146FF?style=for-the-badge&logo=twitch&logoColor=white` 65 | | `https://img.shields.io/badge/YouTube_Gaming-FF0000?style=for-the-badge&logo=youtube-gaming&logoColor=white` 66 | | `https://img.shields.io/badge/Facebook_Gaming-005FED?style=for-the-badge&logo=facebook-gaming&logoColor=white` 67 | | `https://img.shields.io/badge/Crunchyroll-F47521?style=for-the-badge&logo=crunchyroll&logoColor=white` 68 | | `https://img.shields.io/badge/Netflix-E50914?style=for-the-badge&logo=netflix&logoColor=white` 69 | 70 | --- 71 | 72 | ## IDES 73 | 74 | Badge | URL 75 | ------------ | ------------- 76 | | `https://img.shields.io/badge/-Rider-333333?style=flat&logo=rider&logoColor=00000` 77 | | `https://img.shields.io/badge/-Intellij-333333?style=flat&logo=intellij-idea&logoColor=00000` 78 | | `https://img.shields.io/badge/-Visual%20Studio%20Code-333333?style=flat&logo=visual-studio-code&logoColor=007ACC` 79 | 80 | --- 81 | 82 | ## Skills 83 | 84 | Badge | URL 85 | ------------ | ------------- 86 | | `https://img.shields.io/badge/C%23-239120?style=for-the-badge&logo=c-sharp&logoColor=white` 87 | | `https://img.shields.io/badge/Xamarin-3498DB?style=for-the-badge&logo=xamarin&logoColor=white` 88 | | `https://img.shields.io/badge/Python-3776AB?style=for-the-badge&logo=python&logoColor=white` 89 | | `https://img.shields.io/badge/HTML-239120?style=for-the-badge&logo=html5&logoColor=white` 90 | | `https://img.shields.io/badge/CSS-239120?&style=for-the-badge&logo=css3&logoColor=white` 91 | | `https://img.shields.io/badge/.NET-5C2D91?style=for-the-badge&logo=.net&logoColor=white` 92 | | `https://img.shields.io/badge/JavaScript-F7DF1E?style=for-the-badge&logo=javascript&logoColor=black` 93 | | `https://img.shields.io/badge/Node.js-43853D?style=for-the-badge&logo=node.js&logoColor=white` 94 | | `https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E` 95 | | `https://img.shields.io/badge/TypeScript-007ACC?style=for-the-badge&logo=typescript&logoColor=white` 96 | | `https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white` 97 | | `https://img.shields.io/badge/CSS3-1572B6?style=for-the-badge&logo=css3&logoColor=white` 98 | | `https://img.shields.io/badge/Sass-CC6699?style=for-the-badge&logo=sass&logoColor=white` 99 | | `https://img.shields.io/badge/Python-14354C?style=for-the-badge&logo=python&logoColor=white` 100 | | `https://img.shields.io/badge/C-00599C?style=for-the-badge&logo=c&logoColor=white` 101 | | `https://img.shields.io/badge/C%2B%2B-00599C?style=for-the-badge&logo=c%2B%2B&logoColor=white` 102 | | `https://img.shields.io/badge/C%23-239120?style=for-the-badge&logo=c-sharp&logoColor=white` | 103 | | `https://img.shields.io/badge/Java-ED8B00?style=for-the-badge&logo=java&logoColor=white` | 104 | | `https://img.shields.io/badge/PHP-777BB4?style=for-the-badge&logo=php&logoColor=white` 105 | | `https://img.shields.io/badge/R-276DC3?style=for-the-badge&logo=r&logoColor=white` 106 | | `https://img.shields.io/badge/Swift-FA7343?style=for-the-badge&logo=swift&logoColor=white` 107 | | `https://img.shields.io/badge/Kotlin-0095D5?&style=for-the-badge&logo=kotlin&logoColor=white` 108 | | `https://img.shields.io/badge/Go-00ADD8?style=for-the-badge&logo=go&logoColor=white` 109 | | `https://img.shields.io/badge/Ruby-CC342D?style=for-the-badge&logo=ruby&logoColor=white` 110 | | `https://img.shields.io/badge/Scala-DC322F?style=for-the-badge&logo=scala&logoColor=white` 111 | | `https://img.shields.io/badge/Rust-000000?style=for-the-badge&logo=rust&logoColor=white` 112 | | `https://img.shields.io/badge/Dart-0175C2?style=for-the-badge&logo=dart&logoColor=white` 113 | | `https://img.shields.io/badge/Lua-2C2D72?style=for-the-badge&logo=lua&logoColor=white` 114 | | `https://img.shields.io/badge/Perl-39457E?style=for-the-badge&logo=perl&logoColor=white` 115 | | `https://img.shields.io/badge/Elixir-4B275F?style=for-the-badge&logo=elixir&logoColor=white` 116 | | `https://img.shields.io/badge/Markdown-000000?style=for-the-badge&logo=markdown&logoColor=white` 117 | | `https://img.shields.io/badge/Shell_Script-121011?style=for-the-badge&logo=gnu-bash&logoColor=white` 118 | | `https://img.shields.io/badge/Express.js-404D59?style=for-the-badge` 119 | | `https://img.shields.io/badge/Gatsby-663399?style=for-the-badge&logo=gatsby&logoColor=white` 120 | | `https://img.shields.io/badge/React-20232A?style=for-the-badge&logo=react&logoColor=61DAFB` 121 | | `https://img.shields.io/badge/React_Native-20232A?style=for-the-badge&logo=react&logoColor=61DAFB` 122 | | `https://img.shields.io/badge/Svelte-4A4A55?style=for-the-badge&logo=svelte&logoColor=FF3E00` 123 | | `https://img.shields.io/badge/Vue.js-35495E?style=for-the-badge&logo=vue.js&logoColor=4FC08D` 124 | | `https://img.shields.io/badge/Angular-DD0031?style=for-the-badge&logo=angular&logoColor=white` 125 | | `https://img.shields.io/badge/AngularJS-E23237?style=for-the-badge&logo=angularjs&logoColor=white` 126 | | `https://img.shields.io/badge/Tailwind_CSS-38B2AC?style=for-the-badge&logo=tailwind-css&logoColor=white` 127 | | `https://img.shields.io/badge/Bootstrap-563D7C?style=for-the-badge&logo=bootstrap&logoColor=white` 128 | | `https://img.shields.io/badge/styled--components-DB7093?style=for-the-badge&logo=styled-components&logoColor=white` 129 | | `https://img.shields.io/badge/Material--UI-0081CB?style=for-the-badge&logo=material-ui&logoColor=white` 130 | | `https://img.shields.io/badge/Redux-593D88?style=for-the-badge&logo=redux&logoColor=white` 131 | | `https://img.shields.io/badge/React_Router-CA4245?style=for-the-badge&logo=react-router&logoColor=white` 132 | | `https://img.shields.io/badge/jQuery-0769AD?style=for-the-badge&logo=jquery&logoColor=white` 133 | | `https://img.shields.io/badge/Django-092E20?style=for-the-badge&logo=django&logoColor=white` 134 | | `https://img.shields.io/badge/Opencv-8b1df2?style=for-the-badge&logo=Opencv&logoColor=white` 135 | | `https://img.shields.io/badge/Ruby_on_Rails-CC0000?style=for-the-badge&logo=ruby-on-rails&logoColor=white` 136 | | `https://img.shields.io/badge/Laravel-FF2D20?style=for-the-badge&logo=laravel&logoColor=white` 137 | | `https://img.shields.io/badge/Spring-6DB33F?style=for-the-badge&logo=spring&logoColor=white` 138 | | `https://img.shields.io/badge/Flask-000000?style=for-the-badge&logo=flask&logoColor=white` 139 | | `https://img.shields.io/badge/Flutter-02569B?style=for-the-badge&logo=flutter&logoColor=white` 140 | | `https://img.shields.io/badge/MySQL-00000F?style=for-the-badge&logo=mysql&logoColor=white` 141 | | `https://img.shields.io/badge/PostgreSQL-316192?style=for-the-badge&logo=postgresql&logoColor=white` 142 | | `https://img.shields.io/badge/MariaDB-01529E?style=for-the-badge&logo=mariadb&logoColor=white` 143 | | `https://img.shields.io/badge/MongoDB-4EA94B?style=for-the-badge&logo=mongodb&logoColor=white` 144 | | `https://img.shields.io/badge/SQLite-07405E?style=for-the-badge&logo=sqlite&logoColor=white` 145 | | `https://img.shields.io/badge/Firebase-F29D0C?style=for-the-badge&logo=firebase&logoColor=white` 146 | | `https://img.shields.io/badge/Redis-D9281A?style=for-the-badge&logo=redis&logoColor=white` 147 | | `https://img.shields.io/badge/Unity-100000?style=for-the-badge&logo=unity&logoColor=white` 148 | | `https://img.shields.io/badge/Digital Ocean-0080FF?style=for-the-badge&logo=digitalocean&logoColor=white` 149 | | `https://img.shields.io/badge/Netlify-00C7B7?style=for-the-badge&logo=netlify&logoColor=white` 150 | | `https://img.shields.io/badge/Heroku-430098?style=for-the-badge&logo=heroku&logoColor=white` 151 | | `https://img.shields.io/badge/Amazon_AWS-232F3E?style=for-the-badge&logo=amazon-aws&logoColor=white` 152 | | `https://img.shields.io/badge/Google_Cloud-4285F4?style=for-the-badge&logo=google-cloud&logoColor=white` 153 | | `https://img.shields.io/badge/Microsoft_Azure-0089D6?style=for-the-badge&logo=microsoft-azure&logoColor=white` 154 | | `https://img.shields.io/badge/Microsoft_Excel-217346?style=for-the-badge&logo=microsoft-excel&logoColor=white` 155 | | `https://img.shields.io/badge/Microsoft_PowerPoint-B7472A?style=for-the-badge&logo=microsoft-powerpoint&logoColor=white` 156 | | `https://img.shields.io/badge/Microsoft_Access-A4373A?style=for-the-badge&logo=microsoft-access&logoColor=white` 157 | | `https://img.shields.io/badge/Microsoft_SQL_Server-CC2927?style=for-the-badge&logo=microsoft-sql-server&logoColor=white` 158 | | `https://img.shields.io/badge/Microsoft_Office-D83B01?style=for-the-badge&logo=microsoft-office&logoColor=white` 159 | | `https://img.shields.io/badge/Microsoft_SharePoint-0078D4?style=for-the-badge&logo=microsoft-sharepoint&logoColor=white` 160 | | `https://img.shields.io/badge/Microsoft_Word-2B579A?style=for-the-badge&logo=microsoft-word&logoColor=white` 161 | | `https://img.shields.io/badge/Microsoft_Visio-3955A3?style=for-the-badgee&logo=microsoft-visio&logoColor=white` 162 | | `https://img.shields.io/badge/Microsoft-666666?style=for-the-badge&logo=microsoft&logoColor=white` 163 | | `https://img.shields.io/badge/SAP-0FAAFF?style=for-the-badge&logo=sap&logoColor=white` 164 | | `https://img.shields.io/badge/CircleCI-000000?style=for-the-badge&logo=circleci&logoColor=white` 165 | | `https://img.shields.io/badge/Apache-CA2136?style=for-the-badge&logo=apache&logoColor=white` 166 | | `https://img.shields.io/badge/Nginx-009639?style=for-the-badge&logo=nginx&logoColor=white` 167 | | `https://img.shields.io/badge/Travis-E4D766?style=for-the-badge&logo=travis&logoColor=white` 168 | | `https://img.shields.io/badge/Jenkins-D33833?style=for-the-badge&logo=jenkins&logoColor=white` 169 | | `https://img.shields.io/badge/Docker-2496ED?style=for-the-badge&logo=docker&logoColor=white` 170 | | `https://img.shields.io/badge/Podman-892CA0?style=for-the-badge&logo=podman&logoColor=white` 171 | | `https://img.shields.io/badge/Kubernetes-326DE6?style=for-the-badge&logo=kubernetes&logoColor=white` 172 | | `https://img.shields.io/badge/Vagrant-2966CE?style=for-the-badge&logo=vagrant&logoColor=white` 173 | | `https://img.shields.io/badge/Ansible-000000?style=for-the-badge&logo=Ansible&logoColor=white` 174 | | `https://img.shields.io/badge/Chef-EF9600?style=for-the-badge&logo=chef&logoColor=white` 175 | | `https://img.shields.io/badge/Puppet-FFAD19?style=for-the-badge&logo=puppet&logoColor=black` 176 | | `https://img.shields.io/badge/Terraform-7B42BC?style=for-the-badge&logo=terraform&logoColor=white` 177 | | `https://img.shields.io/badge/Packer-1DAEFF?style=for-the-badge&logo=packer&logoColor=white` 178 | | `https://img.shields.io/badge/OpenStack-EA2046?style=for-the-badge&logo=openstack&logoColor=white` 179 | | `https://img.shields.io/badge/Prometheus-E6522C?style=for-the-badge&logo=prometheus&logoColor=white` 180 | | `https://img.shields.io/badge/Elastic-FFFFFF?style=for-the-badge&logo=elastic&logoColor=black` 181 | | `https://img.shields.io/badge/Consul-FFFFFF?style=for-the-badge&logo=consul&logoColor=black` 182 | | `https://img.shields.io/badge/Istio-516BAA?style=for-the-badge&logo=istio&logoColor=white` 183 | | `https://img.shields.io/badge/Vault-FFFFFF?style=for-the-badge&logo=vault&logoColor=black` 184 | | `https://img.shields.io/badge/Git-E34F26?style=for-the-badge&logo=git&logoColor=white` 185 | | `https://img.shields.io/badge/Windows-017AD7?style=for-the-badge&logo=windows&logoColor=white` 186 | | `https://img.shields.io/badge/Linux-E34F26?style=for-the-badge&logo=linux&logoColor=black` 187 | 188 | ## Jogos 189 | 190 | Badge | URL 191 | ------------ | ------------- 192 | | `https://img.shields.io/badge/PlayStation-003791?style=for-the-badge&logo=playstation&logoColor=white` 193 | | `https://img.shields.io/badge/Xbox-107C10?style=for-the-badge&logo=xbox&logoColor=white` 194 | | `https://img.shields.io/badge/Nintendo_Switch-E60012?style=for-the-badge&logo=nintendo-switch&logoColor=white` 195 | | `https://img.shields.io/badge/Steam-000000?style=for-the-badge&logo=steam&logoColor=white` 196 | | `https://img.shields.io/badge/Counter_Strike-000000?style=for-the-badge&logo=counter-strike&logoColor=white` 197 | | `https://img.shields.io/badge/Itch.io-FA5C5C?style=for-the-badge&logo=itch.io&logoColor=white` 198 | | `https://img.shields.io/badge/Stadia-CD2640?style=for-the-badge&logo=stadia&logoColor=white` 199 | | `https://img.shields.io/badge/Nintendo_3DS-D12228?style=for-the-badge&logo=nintendo-3ds&logoColor=white` 200 | 201 | --- 202 | 203 | ## Outros tipos de Badges 204 | 205 | Definimos o estilo através do parâmetro *style=* seguido do estilo escolhido. Aqui tem uma lista dos estilos disponíveis: 206 | 207 | | Flat (padrão) 208 | 209 | | Flat square 210 | 211 | | Plastic 212 | 213 | 214 | | For the badge 215 | 216 | | Social 217 | 218 | --- 219 | 220 | 221 | - [Badges shields](https://github.com/badges/shields) 222 | 223 | [def]: #como-usar-os-badges-shields 224 | -------------------------------------------------------------------------------- /cards-status/readme.md: -------------------------------------------------------------------------------- 1 | ## Como usar os cards? 2 | 3 | Como usar? É simples: copie e cole em seu readme e pronto! 4 | 5 | Altere o `iuricode` para o nome de usuário do GitHub. 6 | 7 | ```md 8 | [![card](https://github-readme-stats.vercel.app/api?username=iuricode&theme=default)](https://github.com/anuraghazra/github-readme-stats) 9 | ``` 10 | 11 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=default)](https://github.com/anuraghazra/github-readme-stats) 12 | 13 | ### Adicionando ícones 14 | 15 | ```md 16 | [![card](https://github-readme-stats.vercel.app/api?username=iuricode&theme=default&show_icons=true)](https://github.com/anuraghazra/github-readme-stats) 17 | ``` 18 | 19 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=default&show_icons=true)](https://github.com/anuraghazra/github-readme-stats) 20 | 21 | ## Mostrar linguagens 22 | 23 | ```md 24 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=default)](https://github.com/anuraghazra/github-readme-stats) 25 | ``` 26 | 27 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=default)](https://github.com/anuraghazra/github-readme-stats) 28 | 29 | ## Ou 30 | 31 | ```md 32 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&layout=compact)](https://github.com/anuraghazra/github-readme-stats) 33 | ``` 34 | 35 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&layout=compact)](https://github.com/anuraghazra/github-readme-stats) 36 | 37 | --- 38 | 39 | ## Temas 40 | 41 | Altere o `default` para o nome do tema que deseja usar. 42 | 43 | Temas disponíveis: dark, radical, merko, gruvbox, tokyonight, onedark, cobalt, synthwave, highcontrast e dracula. 44 | 45 | ### Padrão 46 | 47 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=default)](https://github.com/anuraghazra/github-readme-stats) 48 | 49 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=default)](https://github.com/anuraghazra/github-readme-stats) 50 | 51 | ### Dark 52 | 53 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=dark)](https://github.com/anuraghazra/github-readme-stats) 54 | 55 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=dark)](https://github.com/anuraghazra/github-readme-stats) 56 | 57 | ### Radical 58 | 59 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=radical)](https://github.com/anuraghazra/github-readme-stats) 60 | 61 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=radical)](https://github.com/anuraghazra/github-readme-stats) 62 | 63 | ### Merko 64 | 65 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=merko)](https://github.com/anuraghazra/github-readme-stats) 66 | 67 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=merko)](<[https://github.com/iuricode/](https://github.com/anuraghazra/github-readme-stats)>) 68 | 69 | ### Gruvbox 70 | 71 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=gruvbox)](https://github.com/anuraghazra/github-readme-stats) 72 | 73 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=gruvbox)](https://github.com/anuraghazra/github-readme-stats) 74 | 75 | ### Tokyonight 76 | 77 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=tokyonight)](https://github.com/anuraghazra/github-readme-stats) 78 | 79 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=tokyonight)](https://github.com/anuraghazra/github-readme-stats) 80 | 81 | ### Onedark 82 | 83 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=onedark)](https://github.com/anuraghazra/github-readme-stats) 84 | 85 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=onedark)](https://github.com/anuraghazra/github-readme-stats) 86 | 87 | ### Cobalt 88 | 89 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=cobalt)](https://github.com/anuraghazra/github-readme-stats) 90 | 91 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=cobalt)](https://github.com/anuraghazra/github-readme-stats) 92 | 93 | ### Synthwave 94 | 95 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=synthwave)](https://github.com/anuraghazra/github-readme-stats) 96 | 97 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=synthwave)](https://github.com/anuraghazra/github-readme-stats) 98 | 99 | ### Highcontrast 100 | 101 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=highcontrast)](https://github.com/anuraghazra/github-readme-stats) 102 | 103 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=highcontrast)](https://github.com/anuraghazra/github-readme-stats) 104 | 105 | ### Dracula 106 | 107 | [![iuricode](https://github-readme-stats.vercel.app/api?username=iuricode&theme=dracula)](https://github.com/anuraghazra/github-readme-stats) 108 | 109 | [![iuricode](https://github-readme-stats.vercel.app/api/top-langs/?username=iuricode&hide=html&layout=compact&theme=dracula)](https://github.com/anuraghazra/github-readme-stats) 110 | 111 | --- 112 | 113 | - [GitHub readme stats](https://github.com/anuraghazra/github-readme-stats) 114 | -------------------------------------------------------------------------------- /perfil/exemplo-01.md: -------------------------------------------------------------------------------- 1 | ilustração de um computador 2 | 3 |

4 | Faça uma breve apresentação sua com o seu nome e não esqueça a sua stack.
5 | Diga o que você está fazendo no momento, se trabalha ou estuda. 6 |

7 | 8 |

9 | 🦄 Linguagens: **Coloque as linguagens que você desenvolve.** 10 |

11 | 12 |

13 | 💼 Ferramentas: **Coloque as suas ferramentas de trabalho.** 14 |

15 | 16 |

17 | 💌 Aqui vai uma mensagem para entrar em contato com você: ⤵️ 18 |

19 | 20 |

21 | 22 | Gmail 23 | 24 | LinkedIn 25 | 26 | WhatsApp 27 | 28 | Facebook 29 | 30 | Instagram 31 |

32 | -------------------------------------------------------------------------------- /perfil/exemplo-02.md: -------------------------------------------------------------------------------- 1 | ```js 2 | import Desenvolvedor from "SeuNick"; 3 | 4 | class SobreMim extends Desenvolvedor { 5 | nome = "Seu nome"; 6 | area = "Sua área"; 7 | trabalho = "Onde trabalha"; 8 | local = "Local"; 9 | } 10 | 11 | class Skills extends Desenvolvedor { 12 | linguagens = ["Suas linguagens"]; 13 | bibliotecas = ["Suas bibliotecas"]; 14 | frameworks = ["Seus frameworks"]; 15 | } 16 | ``` -------------------------------------------------------------------------------- /perfil/exemplo-03.md: -------------------------------------------------------------------------------- 1 | ilustração do status do github 2 | 3 | ### Olá, meu nome é {seu nome}! 4 | 5 | Static GitHub 6 | 7 |

Trabalhando na {nome da empresa}
Eu sou desenvolvedor {sua stack}

-------------------------------------------------------------------------------- /perfil/exemplo-04.md: -------------------------------------------------------------------------------- 1 | ### Experiência de trabalho 2 | 3 | Na visão geral abaixo você encontrará minha experiência de trabalho mais recente: 4 | 5 | [Warpnet](https://www.spacex.com/) 6 | 7 | **Software Engineer** \ 8 | [**SpaceX**](https://www.spacex.com/) • Full-time \ 9 | Linguagens & Tecnologias: `Python`, `Django`, `C++`, `JavaScript`, `GoLang`, `SaltStack`,\ 10 | Projetos em destaque: [Rocket](https://www.spacex.com/), [Marte]() 11 |
12 | 13 | [Rocketseat](https://rocketseat.com.br/) 14 | 15 | **Frot-end Developer (Jr)** \ 16 | [**Rocketseat**](https://rocketseat.com.br/) • Contract \ 17 | Linguagens & Tecnologias: `JavaScript`, `Node`, `React`\ 18 | Projetos em destaque: [Ignite](), [Bootcamp]() 19 |
20 | 21 | [Nubank](https://nubank.com.br/) 22 | 23 | **Software Engineer** \ 24 | [**Nubank**](https://nubank.com.br/) • Contract \ 25 | Linguagens & Tecnologias: `React Native`, `Node`, `Swift`, `Kotlin`, `OpenShift` \ 26 | Projetos em destaque: [App](https://nubank.com.br/) 27 |
28 |
29 | 30 | Por favor, encontre-me no [LinkedIn](https://www.linkedin.com/in/iuricode/) para uma descrição mais detalhada da minha experiência de trabalho, educação e certificação. 31 | -------------------------------------------------------------------------------- /perfil/exemplo-05.md: -------------------------------------------------------------------------------- 1 | ## 💜 Olá, meu nome é {seu nome}! 2 | 3 | Faça uma breve apresentação sobre você e a sua stack. 4 | 5 | 🔭 Escreva algum projeto que você desenvolveu ou que atualmente esteja trabalhando nele. 6 | 7 | 💬 Escreva uma mensagem para que as pessoas entrem em contato com você, ou te faça perguntas. 8 | 9 | --- 10 | 11 | ## 🚀 Minhas Skills 12 | 13 | c 14 | Javascript 15 | Typescript 16 | Nodejs 17 | HTML5 18 | CSS 19 | Bootstrap 20 | React 21 | Angular 22 | MySQL 23 | PostegreSQL 24 | MongoDB 25 | 26 | --- 27 | 28 | ## ⭐ GitHub Stats 29 | 30 | ![GitHub Stats](https://github-readme-stats.vercel.app/api?username=iuricode&show_icons=true) -------------------------------------------------------------------------------- /perfil/exemplo-06.md: -------------------------------------------------------------------------------- 1 | ![](https://komarev.com/ghpvc/?username=iuricode&color=006bed) 2 | 3 | ## Sobre mim 4 | 5 | - 🤔 Explorando novas tecnologias e desenvolvendo soluções de software. 6 | - 🎓 Estudando {seu curso} no {faculdade}. 7 | - 💼 Trabalhando como {stack em que você trabalhar} na {empresa}. 8 | - 🌱 Aprendendo mais sobre {tecnologias que você está aprendendo}. 9 | 10 | ## Minhas Skills 11 | 12 | **Aplicações e dados** 13 | 14 | ![C++](https://img.shields.io/badge/-C++-333333?style=flat&logo=C%2B%2B&logoColor=00599C) 15 | ![Java](https://img.shields.io/badge/-Java-333333?style=flat&logo=Java&logoColor=007396) 16 | ![JavaScript](https://img.shields.io/badge/-JavaScript-333333?style=flat&logo=javascript) 17 | ![HTML5](https://img.shields.io/badge/-HTML5-333333?style=flat&logo=HTML5) 18 | ![CSS](https://img.shields.io/badge/-CSS-333333?style=flat&logo=CSS3&logoColor=1572B6) 19 | ![Flutter](https://img.shields.io/badge/-Flutter-333333?style=flat&logo=Flutter) 20 | ![React](https://img.shields.io/badge/-React-333333?style=flat&logo=react) 21 | ![React Native](https://img.shields.io/badge/-React%20Native-333333?style=flat&logo=react) 22 | ![Jest](https://img.shields.io/badge/-Jest-333333?style=flat&logo=jest) 23 | ![MySQL](https://img.shields.io/badge/-MySQL-333333?style=flat&logo=mysql) 24 | 25 | **Utilidades** 26 | 27 | ![Insomnia](https://img.shields.io/badge/-Insomnia-333333?style=flat&logo=insomnia) 28 | ![Postman](https://img.shields.io/badge/-Postman-333333?style=flat&logo=postman) 29 | 30 | **DevOps** 31 | 32 | ![Git](https://img.shields.io/badge/-Git-333333?style=flat&logo=git) 33 | ![GitHub](https://img.shields.io/badge/-GitHub-333333?style=flat&logo=github) 34 | ![Bitbucket](https://img.shields.io/badge/-Bitbucket-333333?style=flat&logo=bitbucket) 35 | ![Docker](https://img.shields.io/badge/-Docker-333333?style=flat&logo=docker) 36 | ![Travis](https://img.shields.io/badge/-Travis-333333?style=flat&logo=travis) 37 | 38 | **Ferramentas de desenvolvimento** 39 | 40 | ![Visual Studio Code](https://img.shields.io/badge/-Visual%20Studio%20Code-333333?style=flat&logo=visual-studio-code&logoColor=007ACC) 41 | ![Eclipse](https://img.shields.io/badge/-Eclipse-333333?style=flat&logo=eclipse-ide&logoColor=2C2255) 42 | ![Trello](https://img.shields.io/badge/-Trello-333333?style=flat&logo=trello&logoColor=007ACC) 43 | ![Figma](https://img.shields.io/badge/-Figma-333333?style=flat&logo=figma&logoColor=007ACC) 44 | ![Adobe XD](https://img.shields.io/badge/-Adobe%20XD-333333?style=flat&logo=adobe-xd&logoColor=007ACC) 45 | 46 |
47 | 48 | 49 | 50 | 51 | 52 | ## Onde me encontrar 53 | 54 | [![Linkedin](https://img.shields.io/badge/-username-blue?style=flat-square&logo=Linkedin&logoColor=white&link=LINK-DO-SEU-LINKEDIN)](LINK-DO-SEU-LINKEDIN) 55 | [![Gmail Badge](https://img.shields.io/badge/-seuemail@email.com-006bed?style=flat-square&logo=Gmail&logoColor=white&link=mailto:SEU-EMAIL)](mailto:SEU-EMAIL) 56 | [![GitHub](https://img.shields.io/github/followers/iuricode?label=follow&style=social)](LINK-DO-SEU-GITHUB) 57 | -------------------------------------------------------------------------------- /perfil/exemplo-07.md: -------------------------------------------------------------------------------- 1 | ## Olá, meu nome é {seu nome}! 2 | 3 | ### ⚙️ GitHub Analytics 4 | 5 | 6 | 7 | 14 | 21 | 29 | 30 |
8 | Github Stats 13 | 15 | Github Stats 20 | 22 |
23 | Github Stats 28 |
31 | 32 | --- 33 | 34 | ### 🏆 GitHub Profile Trophy 35 | 36 |

37 | 41 | 45 | 46 |

47 | 48 | --- 49 | 50 |
51 |

📍 Profile Visitor Count

52 |
53 | 54 |

55 | Número de visitantes no perfil 59 |

60 | -------------------------------------------------------------------------------- /repositorio/exemplo-01.md: -------------------------------------------------------------------------------- 1 | # Nome do projeto 2 | 3 | ![GitHub repo size](https://img.shields.io/github/repo-size/iuricode/README-template?style=for-the-badge) 4 | ![GitHub language count](https://img.shields.io/github/languages/count/iuricode/README-template?style=for-the-badge) 5 | ![GitHub forks](https://img.shields.io/github/forks/iuricode/README-template?style=for-the-badge) 6 | ![Bitbucket open issues](https://img.shields.io/bitbucket/issues/iuricode/README-template?style=for-the-badge) 7 | ![Bitbucket open pull requests](https://img.shields.io/bitbucket/pr-raw/iuricode/README-template?style=for-the-badge) 8 | 9 | Exemplo imagem 10 | 11 | > Linha adicional de texto informativo sobre o que o projeto faz. Sua introdução deve ter cerca de 2 ou 3 linhas. Não exagere, as pessoas não vão ler. 12 | 13 | ### Ajustes e melhorias 14 | 15 | O projeto ainda está em desenvolvimento e as próximas atualizações serão voltadas para as seguintes tarefas: 16 | 17 | - [x] Tarefa 1 18 | - [x] Tarefa 2 19 | - [x] Tarefa 3 20 | - [ ] Tarefa 4 21 | - [ ] Tarefa 5 22 | 23 | ## 💻 Pré-requisitos 24 | 25 | Antes de começar, verifique se você atendeu aos seguintes requisitos: 26 | 27 | - Você instalou a versão mais recente de `` 28 | - Você tem uma máquina ``. Indique qual sistema operacional é compatível / não compatível. 29 | - Você leu ``. 30 | 31 | ## 🚀 Instalando 32 | 33 | Para instalar o , siga estas etapas: 34 | 35 | Linux e macOS: 36 | 37 | ``` 38 | 39 | ``` 40 | 41 | Windows: 42 | 43 | ``` 44 | 45 | ``` 46 | 47 | ## ☕ Usando 48 | 49 | Para usar , siga estas etapas: 50 | 51 | ``` 52 | 53 | ``` 54 | 55 | Adicione comandos de execução e exemplos que você acha que os usuários acharão úteis. Forneça uma referência de opções para pontos de bônus! 56 | 57 | ## 📫 Contribuindo para 58 | 59 | Para contribuir com , siga estas etapas: 60 | 61 | 1. Bifurque este repositório. 62 | 2. Crie um branch: `git checkout -b `. 63 | 3. Faça suas alterações e confirme-as: `git commit -m ''` 64 | 4. Envie para o branch original: `git push origin / ` 65 | 5. Crie a solicitação de pull. 66 | 67 | Como alternativa, consulte a documentação do GitHub em [como criar uma solicitação pull](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request). 68 | 69 | ## 🤝 Colaboradores 70 | 71 | Agradecemos às seguintes pessoas que contribuíram para este projeto: 72 | 73 | 74 | 75 | 83 | 91 | 99 | 100 |
76 | 77 | Foto do Iuri Silva no GitHub
78 | 79 | Iuri Silva 80 | 81 |
82 |
84 | 85 | Foto do Mark Zuckerberg
86 | 87 | Mark Zuckerberg 88 | 89 |
90 |
92 | 93 | Foto do Steve Jobs
94 | 95 | Steve Jobs 96 | 97 |
98 |
101 | 102 | ## 😄 Seja um dos contribuidores 103 | 104 | Quer fazer parte desse projeto? Clique [AQUI](CONTRIBUTING.md) e leia como contribuir. 105 | 106 | ## 📝 Licença 107 | 108 | Esse projeto está sob licença. Veja o arquivo [LICENÇA](LICENSE.md) para mais detalhes. 109 | -------------------------------------------------------------------------------- /repositorio/imagem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuricode/readme-template/4a80dc46518f186171aec0488dcb031902f6a003/repositorio/imagem.png --------------------------------------------------------------------------------