├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── Pull_request_template.md └── workflows │ └── main.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Translation Bahasa Indonesia └── Readme-ID.md ├── Translation Bahasa Melayu └── README-bm.md ├── Translation Bulgarian └── README-bg.md ├── Translation French └── README-fr.md ├── Translation Hindi └── README-hindi.md ├── Translation Polish └── README-pl.md ├── Translation Portuguese └── README-ptbr.md ├── Translation Russian └── README-ru.md ├── Translation Spanish └── README-es.md └── translation └── README.de.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/Pull_request_template.md: -------------------------------------------------------------------------------- 1 | # 🤔 This is a 2 | - [ ] Feature 3 | - [ ] Bug 4 | - [ ] Documentation Update 5 | - [X] Translation 6 | 7 | # ✍ Description 8 | - Write a short description 9 | Completed Portuguese translation of readme file 10 | 11 | 12 | # Added to documentation 13 | - [ ] readme file 14 | - [X] No documentation needed 15 | 16 | # 🐱‍💻 Use a meme/gif to describe how you feel for contributing (optional) 17 | 18 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | on: [push, pull_request] 2 | 3 | jobs: 4 | contrib-readme-job: 5 | runs-on: ubuntu-latest 6 | name: Target README.md 7 | steps: 8 | - name: Contribute List 9 | uses: akhilmhdh/contributors-readme-action@v2.0 10 | env: 11 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 12 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | 2 | # Contributor Covenant Code of Conduct 3 | 4 | ## Our Pledge 5 | 6 | We as members, contributors, and leaders pledge to make participation in our 7 | community a harassment-free experience for everyone, regardless of age, body 8 | size, visible or invisible disability, ethnicity, sex characteristics, gender 9 | identity and expression, level of experience, education, socio-economic status, 10 | nationality, personal appearance, race, religion, or sexual identity 11 | and orientation. 12 | 13 | We pledge to act and interact in ways that contribute to an open, welcoming, 14 | diverse, inclusive, and healthy community. 15 | 16 | ## Our Standards 17 | 18 | Examples of behavior that contributes to a positive environment for our 19 | community include: 20 | 21 | * Demonstrating empathy and kindness toward other people 22 | * Being respectful of differing opinions, viewpoints, and experiences 23 | * Giving and gracefully accepting constructive feedback 24 | * Accepting responsibility and apologizing to those affected by our mistakes, 25 | and learning from the experience 26 | * Focusing on what is best not just for us as individuals, but for the 27 | overall community 28 | 29 | Examples of unacceptable behavior include: 30 | 31 | * The use of sexualized language or imagery, and sexual attention or 32 | advances of any kind 33 | * Trolling, insulting or derogatory comments, and personal or political attacks 34 | * Public or private harassment 35 | * Publishing others' private information, such as a physical or email 36 | address, without their explicit permission 37 | * Other conduct which could reasonably be considered inappropriate in a 38 | professional setting 39 | 40 | ## Enforcement Responsibilities 41 | 42 | Community leaders are responsible for clarifying and enforcing our standards of 43 | acceptable behavior and will take appropriate and fair corrective action in 44 | response to any behavior that they deem inappropriate, threatening, offensive, 45 | or harmful. 46 | 47 | Community leaders have the right and responsibility to remove, edit, or reject 48 | comments, commits, code, wiki edits, issues, and other contributions that are 49 | not aligned to this Code of Conduct, and will communicate reasons for moderation 50 | decisions when appropriate. 51 | 52 | ## Scope 53 | 54 | This Code of Conduct applies within all community spaces, and also applies when 55 | an individual is officially representing the community in public spaces. 56 | Examples of representing our community include using an official e-mail address, 57 | posting via an official social media account, or acting as an appointed 58 | representative at an online or offline event. 59 | 60 | ## Enforcement 61 | 62 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 63 | reported to the community leaders responsible for enforcement at 64 | muchirijane@outlook.com. 65 | All complaints will be reviewed and investigated promptly and fairly. 66 | 67 | All community leaders are obligated to respect the privacy and security of the 68 | reporter of any incident. 69 | 70 | ## Enforcement Guidelines 71 | 72 | Community leaders will follow these Community Impact Guidelines in determining 73 | the consequences for any action they deem in violation of this Code of Conduct: 74 | 75 | ### 1. Correction 76 | 77 | **Community Impact**: Use of inappropriate language or other behavior deemed 78 | unprofessional or unwelcome in the community. 79 | 80 | **Consequence**: A private, written warning from community leaders, providing 81 | clarity around the nature of the violation and an explanation of why the 82 | behavior was inappropriate. A public apology may be requested. 83 | 84 | ### 2. Warning 85 | 86 | **Community Impact**: A violation through a single incident or series 87 | of actions. 88 | 89 | **Consequence**: A warning with consequences for continued behavior. No 90 | interaction with the people involved, including unsolicited interaction with 91 | those enforcing the Code of Conduct, for a specified period of time. This 92 | includes avoiding interactions in community spaces as well as external channels 93 | like social media. Violating these terms may lead to a temporary or 94 | permanent ban. 95 | 96 | ### 3. Temporary Ban 97 | 98 | **Community Impact**: A serious violation of community standards, including 99 | sustained inappropriate behavior. 100 | 101 | **Consequence**: A temporary ban from any sort of interaction or public 102 | communication with the community for a specified period of time. No public or 103 | private interaction with the people involved, including unsolicited interaction 104 | with those enforcing the Code of Conduct, is allowed during this period. 105 | Violating these terms may lead to a permanent ban. 106 | 107 | ### 4. Permanent Ban 108 | 109 | **Community Impact**: Demonstrating a pattern of violation of community 110 | standards, including sustained inappropriate behavior, harassment of an 111 | individual, or aggression toward or disparagement of classes of individuals. 112 | 113 | **Consequence**: A permanent ban from any sort of public interaction within 114 | the community. 115 | 116 | ## Attribution 117 | 118 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 119 | version 2.0, available at 120 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 121 | 122 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 123 | enforcement ladder](https://github.com/mozilla/diversity). 124 | 125 | [homepage]: https://www.contributor-covenant.org 126 | 127 | For answers to common questions about this code of conduct, see the FAQ at 128 | https://www.contributor-covenant.org/faq. Translations are available at 129 | https://www.contributor-covenant.org/translations. 130 | 131 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | #### Please note that this project has a [Contributor Code of Conduct](https://github.com/muchirijane/learning-code-through-github-repos/blob/main/CODE_OF_CONDUCT.md). By contributing in this project you agree to abide by its terms. 2 | 3 | ## Before creating a pull request read this document 4 | 5 | - create a useful title for your pull request. Don't use 'Updated readme file'. 6 | - Check the other resources in the readme list to avoid duplication. 7 | - Use a Captial letter at the beginning of your title or description and use a period at the end of your description. 8 | - Check your spelling and grammar before submitting any request. 9 | - Make individual request for every github repo you want to add. 10 | - This list is limited to web development resources. 11 | - You can add github repos for different JS frameworks like repos with react matterial only. 12 | - Use the folllowing format [title](link of the repo) - Description of what the repository contains in one or two sentences. 13 | - Be respectful in your commit messages. 14 | - List should be addedalphabetically. 15 | 16 | ## Steps to take to contribute to the project 17 | 1. Fork the repo and clone the forked repo on your local development environment. 18 | 1. Create a branch using 19 | * `git checkout -b feature/` 20 | * `git checkout -b feature/` 21 | * `git checkout -b bug/` 22 | 1. Name the branch according to what it does (e.g.: feature/added-react-resource) 23 | 1. Add the Github repository with the resources in the readme file. 24 | 1. Use the folllowing format `[title](link of the repo) - Description` - Description of what the repository contains in one or two sentences.. 25 | 1. * Stage all the changes using - `git add .` 26 | * Commit the staged changes using - `git commit -m "your commit message"`. Make sure to write meaningful commit messages. 27 | * Before you push the commit make sure to pull the changes in the remote branch using `git pull origin develop`, in case of conflicts, please resolve them. 28 | * After pulling the changes, push the all the changes using `git push origin branch-name` 29 | 1. Create your PR into the `Develop branch` (not main branch) 30 | 31 | 1. Go to [this current Repository](https://github.com/muchirijane/learning-code-through-github-repos). 32 | 1. Create a Pull Request against the `develop` branch, make sure you don't make PR against the `main` branch. 33 | 1. Write the Issue Number in the description if the pull request is related to some issue. 34 | 1. Leave a short message in the PR explaining in slightly more detail what the PR accomplishes. 35 | 1. If your PR touches multiple parts, consider adding a bullet list of accomplishments. 36 | 1. Amazing you just made your first successful Pull request. Just wait a few minutes for me to merge it. 37 | 38 | #### Example of how your Pr should look like 39 | Screenshot-257 40 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Jane Tracy Muthoni 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![hacktoberfest badge](https://img.shields.io/badge/%F0%9F%94%A5-hacktoberfest-blue) ![license badge](https://img.shields.io/badge/%E2%9C%94%20license-MIT-green) ![open-source badge](https://img.shields.io/badge/%F0%9F%90%B1%E2%80%8D%F0%9F%92%BB-Open--Source-orange) 2 | 3 | # learning-code-through-github-repo 4 | 5 | There are amazing resources that are available for code newbies to learn and develop their skills. But I would like to share some Github repos that you can add to get more resources in your coding journey. 6 | 7 | Git-Hub-Pic 8 |
9 |
10 | 11 | #### Html resources 12 | 13 | - [Awesome Html5 resources](https://github.com/diegocard/awesome-html5) - This a GitHub repo created to put all the Html5 resources you would need. You will get to learn about accessibility, Semantics, DOM Management, Progressive web apps, Html books, and more. 14 | 15 | - [Html list resources](https://github.com/gloparco/Master-List-of-HTML5-JS-CSS-Resources/blob/master/html.md) - This repo has awesome HTML resources where you can also get links to helpful Html5 books. 16 | 17 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - The repository has amazing resources on HTML & CSS. You can learn things like HTML semantics and front-end architecture, Create a Contact Form in HTML5, What is HTML5 Capable of, Features, and Resources and more resources. 18 | 19 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - If you want to learn or get started with Html and CSS, this repo will be helpful. It has resources that will help you improve your skills on the basics. 20 | 21 | - [HTML5 Boilerplate](https://github.com/h5bp/html5-boilerplate) - HTML5 Boilerplate is a professional front-end template for building fast, robust, and adaptable web apps or sites. 22 | 23 | #### CSS resources 24 | 25 | - [Airbnb CSS / Sass Styleguide](https://github.com/airbnb/css) - The ultimate style guide from Airbnd on how to format your CSS and Sass. 26 | 27 | - [Awesome CSS learning](https://github.com/micromata/awesome-css-learning) - Have a look at CSS resources to help you in your coding journey. Get to know all about animations, CSS variables, layout, CSS unit, and more. 28 | 29 | - [Awesome CSS Grid](https://github.com/valentinogagliardi/awesome-css-grid) - Learn about the CSS grid and how you can improve with amazing free resources. 30 | 31 | - [Awesome Tailwind Css](https://github.com/aniftyco/awesome-tailwindcss) - Get to learn view and use amazing Tailwind CSS resources, tools, IDE extensions, Templates, Themes, and more. 32 | 33 | - [Design resources for developers](https://github.com/bradtraversy/design-resources-for-developers) - This is a great GitHub repo to get all the resources you need to make your website look good. A collection of sites that you can get colors, fonts, UI graphics, icons, React UI, Vue UI, and more. 34 | 35 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - The repository has amazing resources on CSS but also on HTML too. The repository has resources like: What the Heck Is CSS Specificity? , CSS Architectures: New Best Practices, The worst Css practices, CSS techniques you couldn't live without, and more. 36 | 37 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - As I mentioned above. It has great resources for Html5 but you can learn sass, flexbox, grid, and more. 38 | 39 | - [Learning Resource Roadmap - (Front-End Development)](https://github.com/devcenter-square/Learning-Resource-Path-Front-End) - A roadmap filled with HTML, CSS, and Javascript resources and fun projects to help you learn. 40 | 41 | - [Web Dev Resources](https://github.com/mpara0/webdev-resources/blob/master/README.md) - This is a super comprehensive repository to learn all about the best resources in web development and design! 42 | 43 | [100 Days of Code - Front End](https://github.com/nas5w/100-days-of-code-frontend) - A repository filled with resources to guide you through the 100 Days of code challenge- front end edition! 44 | 45 | #### Javascript repos 46 | 47 | - [Airbnb Javscript Style Guide](https://github.com/airbnb/javascript) - The ultimate comprehensive guide to learning and properly styling Javascript. 48 | 49 | - [Awesome JS](https://github.com/serhiisol/awesome-js) - With this repo, you can get resources and tutorials for Javascript frameworks like Node Js, Angular Js, React Js, and also vanilla Javascript resources. 50 | 51 | - [Awesome Javascript](https://github.com/sorrycc/awesome-javascript) - Get to know about Templating Engines, Data Visualization, Reactive Programming, RegExp, API, and more. 52 | 53 | - [Awesome Javascript Learning](https://github.com/micromata/awesome-javascript-learning) - This repo has a list of only Javascript resources that includes: free Js ebooks, blogs, videos, DOM related resources, Node Js resources, and more. 54 | 55 | - [Javascript Stuff](https://github.com/ahfarmer/javascriptstuff-db) - This repo has amazing resources for React resources with a website to easily get them in one place. You can get React starter projects, static site generators, react tutorials, developer tools, and more. 56 | 57 | - [You Don't Know JS](https://github.com/getify/You-Dont-Know-JS) - In-depth crash course into the world of Javascript. 58 | 59 | - [30 days of JavaScript](https://github.com/Asabeneh/30-Days-Of-JavaScript) - 30 days of JavaScript programming challenge is a step-by-step guide to learn JavaScript programming language in 30 days. This challenge may take more than 100 days, please just follow your own pace. 60 | 61 | - [JavaScript algorithms](https://github.com/trekhleb/javascript-algorithms)- 📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings. 62 | 63 | - [The AirBnB style guides](https://github.com/airbnb/javascript) - This is a great resource for styling your code. This can be one of the most difficult parts organizing developers around a project. 64 | 65 | - [JavaScript Interview Questions and Answers](https://github.com/sudheerj/javascript-interview-questions) - List of 1000 JavaScript Interview Questions that will help you get ready for your interview questions. 66 | 67 | #### Vue JS repos 68 | 69 | - [Awesome Vue Resources](https://github.com/vuejs/awesome-vue) - This widely popular Github repository is jam-packed with awesome vue.js resources. It has everything and more for someone who wants to master vue.js. From tutorials, podcasts, documentations to full projects, code snippets, etc. 70 | 71 | - [Vuejs Resources](https://github.com/gliterd/vuejs-resources) - This Github repository is has valuable vue.js resources. It has tutorials, documentation, libraries & plugins to development tools. 72 | 73 | #### React JS repos 74 | 75 | - [Awesome React Resources](https://github.com/brillout/awesome-react-components) - This amazing Github repository has great resources that include the React ecosystem. You can fork or star it will be useful in your next project. The repo includes: React tools, React General Resources, React Community, React Online Playgrounds, and React tutorials. 76 | 77 | - [Bulletproof React](https://github.com/alan2207/bulletproof-react) - This repo is a collection of resources and best practices to use when developing React applications. It includes real-world examples while learning about State Management, Testing, Error Handling, and more. 78 | 79 | - [30-Days-of-React](https://github.com/Asabeneh/30-Days-Of-React) - 30 Days of React is step-by-step guide to learn React through projects. These projects are made for both beginner and advanced JS and React developers. 80 | 81 | -[Reactjs-interview-questions](https://github.com/sudheerj/reactjs-interview-questions) - With over 300 questions, this repo helps prepare React developers for interviews. 82 | 83 | #### Node Js repos 84 | 85 | - [Node JS resources](https://github.com/sindresorhus/awesome-nodejs) - Get more Node Js resources from Command-line utilities, Build tools, Templating, Control flow, Network, Data validation, Tutorials, and more. 86 | 87 | - [ Intro to JavaScript (Node.js) ](https://github.com/microsoft/beginners-intro-javascript-node) - A beginner's guide to Node.js from Microsoft! 88 | 89 | - [ Node.js Best Practices](https://github.com/goldbergyoni/nodebestpractices) - A repository full of the best practices to keep in mind when writing Node.js. 90 | 91 | #### Deno repos 92 | 93 | - [DBirb simple API](https://github.com/dergyitheron/dbirb-sqlite-deno) - This is really simple API for SQLite, which is local, file-based database. It's straightforward in usage and for modifications, really simple in understanding how that works. Written in Typescript in Deno (NodeJS alternative) 94 | 95 | #### All in one repos 96 | 97 | These are repos that have various resources for multiple programming languages. 98 | 99 | - [Awesome Awesomeness](https://github.com/bayandin/awesome-awesomeness) - Get resources for all programming languages and get to know about vim, Linux resources, style-guides, Serverless Security, Internet of Things (IoT), DevOps, Design Patterns and more. The list is endless, go check out the repo. 100 | 101 | - [Awesome Learning Resources](https://github.com/lauragift21/awesome-learning-resources) - If you want to get resources on Twilio, TensorFlow, TypeScript, Machine learning, Ruby on Rails, Javascript, and more. This repository will help you. 102 | 103 | - [Algo Wiki](https://github.com/vicky002/AlgoWiki) - This is like a Wikipedia repo for nearly all programming languages such as c++, python, Javascript, Rust, PHP, Java, and more. You can also get algorithms, machine learning, competitive programming, and more. 104 | 105 | - [Front-end checklist](https://github.com/thedaviddias/Front-End-Checklist) - This repository has is a checklist for steps you should take before you launch your website. It includes resources to check your website performance, accessibility, SEO, and more. 106 | 107 | - [Free for devs](https://github.com/ripienaar/free-for-dev) - You will get amazing resources to help you build websites from the ground up. Examples: Tools for Teams and Collaboration, CI and CD, Testing, Security and PKI, Management System, and more. 108 | 109 | - [Front-end resources](https://github.com/RitikPatni/Front-End-Web-Development-Resources#table-of-contents) - This amazing repo has amazing CSS resources, platforms to learning code, youtube channels you should follow, blogs to follow, and VsCode extension to install to make your life easier. 110 | 111 | - [Fullstackopen](https://github.com/fullstack-hy2020/fullstack-hy2020.github.io) - A wonderful free course that serves as an introduction to modern web application development with JavaScript. Participants are expected to have good programming skills, basic knowledge of web programming and databases, and to know the basics of working with the Git version-control system. It contains guided exercises that are to be submitted to github. 112 | 113 | - [List](https://github.com/jnv/lists) - A great repository for learning web development on a deeper level. It has a wide list of resources of front-end developer interviews, companies you can easily apply to, BEM resources, ES6 learning resources, Blockchain & cryptocurrency resources, and more. 114 | 115 | - [The Odin Project](https://github.com/TheOdinProject) - This repo will provide you a meticulously guided path to learning full stack with several projects that will help you build a strong portfolio of work on Github and stay connected to other students taking the course. This website and the curriculum it hosts are completely open source, so anyone can work on new features or fix existing bugs on the website. 116 | 117 | - [Ultimate Coding Resources List](https://github.com/PizzaPokerGuy/ultimate-coding-resources) - This is a collection of the best resources for programming, web development, computer science and more. 118 | 119 | ### Flask Repos 120 | 121 | - [Awesome Flask](https://github.com/humiaozuzu/awesome-flask) - A curated list of awesome Flask resources and plugins. 122 | 123 | ### React Native Resources Repos 124 | 125 | - [NativeBase component library for React & React Native](https://github.com/GeekyAnts/nativebase)- NativeBase is a mobile-first, accessible component library for building a consistent design system across android, iOS & web. 126 | 127 | - [React Native UI Kitten](https://github.com/akveo/react-native-ui-kitten)- React Native UI Kitten allows you to boost the development of a mobile app. There is a huge variety of customizable layouts, use “as is” or add new blocks. Over 40 screens in dark and light themes give you the possibility to create a bright and exclusive app while saving your time on compiling numerous details. 128 | 129 | - [React Native Extended StyleSheet](https://github.com/vitalets/react-native-extended-stylesheet)- Drop-in replacement of React Native StyleSheet with media-queries, variables, dynamic themes, relative units, percents, math operations, scaling and other styling stuff. 130 | 131 | - [React Native TailwindCss](https://github.com/TVke/react-native-tailwindcss) - Easily apply styles to react native components in a tailwindCSS-like fashion. The utility classes are transformed to valid object names and are all children of an object ( t, tw, theme or tailwind). 132 | 133 | - [React Native Css](https://github.com/thabti/react-native-css) - React-native-css turns valid CSS into the Facebook subset of CSS. 134 | 135 | - [React Native Developer Roadmap](https://github.com/hayanisaid/React-Native-developer-roadmap) - React Native resources that will introduce you to React Native and give you some insights about the React Native ecosystem. 136 | 137 | - [Awesome React Native ](https://github.com/jondot/awesome-react-native) - Awesome React Native is an awesome style list that curates the best React Native libraries, tools, tutorials, articles and more. 138 | 139 | - [React Native Resources ](https://github.com/chefk5/react-native-resources) - A curated list of React Native resources to help you build your next app with ease. 140 | 141 | - [React Native Learnings Resources ](https://github.com/shubhnik/react-native-learning-resources) - A dedicated repository for learning React Native, packed with valuable resources to accelerate your journey. 142 | 143 | 144 | - [React Native for Absolute Beginners](https://github.com/hiteshchoudhary/React-native-projects) - A Beginner friendly Respository, with various projects to practice and helpful articles. 145 | 146 | - [React Native Boilerplate](https://github.com/robertwt7/rn-boilerplate) - A curated list of most needed Packages for building React-native projects 147 | 148 | - [React-Native-TypeScript-Starter](https://github.com/tarikfp/react-native-typescript-starter) - Create scalable, robust and enterprise-level React Native Typescript applications. 149 | 150 | - [React-Native-Apps](https://github.com/ReactNativeNews/React-Native-Apps) - Curated List of Open Source React Native Apps. The best way to learn is by doing, these lists of repositories would guide both beginners and advanced React native developers to level up their skills. 151 | 152 | ### Data structures and Algorithms Repos 153 | 154 | #### Python 155 | - [Pythonic Data Structures and Algorithms ](https://github.com/keon/algorithms) - Minimal and clean example implementations of data structures and algorithms in Python 3. 156 | 157 | ### Javascript 158 | - [Pretty algorithms](https://github.com/jiayihu/pretty-algorithms) - Common useful algorithms written in modern, pretty and easy-to-understand Javascript along with real-world usage examples. Implementations are in standard ES6 Javascript with the addition of Typescript type annotations for better clarity. All the algorithms are also tested using Jest with the help of custom, beautiful snapshots. 159 | 160 | 161 | 162 | 163 | 164 | ### How to contribute 165 | 166 | All contributions to add useful Github repositories with important and useful resources are welcome. Please read the [Contribution guidelines for steps to take](https://github.com/muchirijane/learning-code-through-github-repos/blob/main/CONTRIBUTING.md) to accomplish a successful Pull request. 167 | 168 | ## Thank you for your contribution 169 | 170 | 171 | 172 | 173 | 180 | 187 | 194 | 201 | 208 | 215 | 216 | 223 | 230 |
174 | 175 | muchirijane 176 |
177 | Jane Tracy Muthoni 178 |
179 |
181 | 182 | Hackerbone 183 |
184 | Sitaraman S 185 |
186 |
188 | 189 | trivedidhruvil9 190 |
191 | Dhruvil Trivedi 192 |
193 |
195 | 196 | MicheleMarschner 197 |
198 | Michele Marschner 199 |
200 |
202 | 203 | viraldevpb 204 |
205 | Prathamesh Borse 206 |
207 |
209 | 210 | d02d33pak 211 |
212 | Deepak Talan 213 |
214 |
217 | 218 | leaggg 219 |
220 | Lea 221 |
222 |
224 | 225 | GriffinMLN 226 |
227 | GriffinMLN 228 |
229 |
231 | 232 | -------------------------------------------------------------------------------- /Translation Bahasa Indonesia/Readme-ID.md: -------------------------------------------------------------------------------- 1 | ![hacktoberfest badge](https://img.shields.io/badge/%F0%9F%94%A5-hacktoberfest-blue) ![license badge](https://img.shields.io/badge/%E2%9C%94%20license-MIT-green) ![open-source badge](https://img.shields.io/badge/%F0%9F%90%B1%E2%80%8D%F0%9F%92%BB-Open--Source-orange) 2 | 3 | # Belajar-Kode-Melalui-Github-Repositori 4 | 5 | Ada banyak sumber luar biasa yang tersedia bagi para koder pemula untuk belajar dan mengembangkan skil mereka. Tetapi saya ingin membagikan beberapa repo Github yang dapat Anda tambahkan untuk mendapatkan lebih banyak sumber daya dalam perjalanan pengkodeanmu. 6 | 7 | Gambar-Git-Hub 8 |
9 |
10 | 11 | #### HTML 12 | 13 | - [Awesome Html5 resources](https://github.com/diegocard/awesome-html5) - Repositori GitHub ini dibuat untuk meletakkan semua sumber daya Html5 yang kamu perlukan. kamu akan belajar tentang aksesibilitas, Semantik, Manajemen DOM, Aplikasi web progresif, buku HTML, dan banyak lagi. 14 | 15 | - [Html list resources](https://github.com/gloparco/Master-List-of-HTML5-JS-CSS-Resources/blob/master/html.md) - Repositori ini memiliki sumber daya HTML yang luar biasa di mana kamu juga bisa mendapatkan tautan ke buku elektronik Html5 yang bermanfaat. 16 | 17 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - Repositori ini memiliki sumber daya yang luar biasa pada HTML & CSS. Kamu dapat mempelajari hal-hal seperti semantik HTML dan arsitektur front-end, membuat formulir kontak dalam HTML5, apa saja kemampuan HTML5, fiturnya, dan lebih banyak lagi sumber daya lainnya. 18 | 19 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Jika kamu ingin belajar atau pertama kali belajar dengan Html dan CSS, repositori ini akan sangat membantu. Ini memiliki sumber daya yang akan membantu kamu meningkatkan kemampuan dasarmu. 20 | 21 | - [HTML5 Boilerplate](https://github.com/h5bp/html5-boilerplate) - REKOMENDASI PENERJEMAH - HTML5 Boilerplate adalah template front-end profesional untuk membangun aplikasi web atau situs yang cepat, tangguh, dan mudah beradaptasi. Jadi, ini merupakan kerangka kerja HTML5 siap pakai untuk segala medan. 22 | 23 | #### CSS 24 | 25 | - [Awesome CSS learning](https://github.com/micromata/awesome-css-learning) - Coba lihat sumber daya CSS yang satu ini untuk membantu kamu dalam perjalanan codingmu. Ketahui semua tentang animasi, variabel CSS, tata letak, unit CSS, dan banyak lagi. 26 | 27 | - [Awesome CSS Grid](https://github.com/valentinogagliardi/awesome-css-grid) - Belajar dan mengenal CSS grid dan lihat bagaimana kamu berkembang dengan Sumber daya gratis yang luar biasa ini. 28 | 29 | - [Awesome Tailwind Css](https://github.com/aniftyco/awesome-tailwindcss) - Pelajari dengan cara melihat dan menggunakan sumber daya CSS Tailwind, tools, ekstensi IDE, Template, Tema, dan lainnya yang menakjubkan. 30 | 31 | - [Design resources for developers](https://github.com/bradtraversy/design-resources-for-developers) - REKOMENDASI PENERJEMAH - Ini adalah repositori GitHub yang bagus untuk mendapatkan semua sumber daya yang kamu butuhkan agar situs webmu terlihat menarik. Kumpulan situs yang bisa kamu dapatkan warna, font, grafik UI, ikon, React UI, Vue UI, dan banyak lagi. 32 | 33 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - Repositori memiliki sumber daya seperti: What the Heck Is CSS Specificity? , Arsitektur CSS: Praktik Terbaik dan Terbaru, Praktik CSS terburuk, teknik CSS yang tidak dapat kamu jalani tanpanya, dan banyak lagi. 34 | 35 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Seperti yang saya sebutkan di atas. Repositori ini memiliki sumber daya yang bagus untuk HTML5 tetapi kamu juga dapat mempelajari sass, flexbox, grid, dan banyak lagi. 36 | 37 | #### Javascript 38 | 39 | - [Awesome JS](https://github.com/serhiisol/awesome-js) - Dengan repositori ini, kamu bisa mendapatkan resource dan tutorial untuk framework Javascript seperti Node Js, Angular Js, React Js, dan juga resource vanilla Javascript(JavaScript Murni). 40 | 41 | - [Awesome Javascript](https://github.com/sorrycc/awesome-javascript) - Cari tahu tentang Mesin Templating, Visualisasi Data, Pemrograman Reaktif, RegExp, API, dan banyak lagi. 42 | 43 | - [Awesome Javascript Learning](https://github.com/micromata/awesome-javascript-learning) - This repo has a list of only Javascript resources that includes: free Js ebooks, blogs, videos, DOM related resources, Node Js resources, and more. 44 | 45 | - [Javascript Stuff](https://github.com/ahfarmer/javascriptstuff-db) - Repositori ini hanya memiliki daftar sumber Javascript yang mencakup: eBook Js gratis, blog, video, sumber daya terkait DOM, sumber daya Node Js, dan banyak lagi. 46 | 47 | #### Vue JS 48 | 49 | - [Awesome Vue Resources](https://github.com/vuejs/awesome-vue) - Repositori Github yang sangat populer ini penuh dengan sumber daya vue.js yang mengagumkan. Repositori ini memiliki segalanya dan lebih untuk seseorang yang ingin menguasai vue.js. Dari tutorial, podcast, dokumentasi hingga proyek lengkap, cuplikan kode, dll. 50 | 51 | - [Vuejs Resources](https://github.com/gliterd/vuejs-resources) - Repositori Github ini memiliki sumber daya vue.js yang berharga. Seperti tutorial, dokumentasi, perpustakaan & plugin untuk alat pengembangan. 52 | 53 | #### React JS 54 | 55 | - [Awesome React Resources](https://github.com/brillout/awesome-react-components) - Repositori Github yang luar biasa ini memiliki sumber daya hebat yang mencakup ekosistem React. Kamu dapat melakukan fork atau memberi bintang itu akan berguna dalam proyekmu berikutnya. Repo tersebut meliputi: alat React, React General Resources, React Community, React Online Playgrounds, dan tutorial React. 56 | 57 | - [Sumber Daya React yang Berguna] () - Repositori Github yang luar biasa ini memiliki sumber daya hebat yang mencakup ekosistem React. Kamu dapat melakukan fork atau memberi bintang itu akan berguna dalam proyekmu berikutnya. Repo tersebut meliputi: alat React, React General Resources, React Community, React Online Playgrounds, dan tutorial React. 58 | 59 | #### NodeJs 60 | 61 | - [NodeJS resources](https://github.com/sindresorhus/awesome-nodejs) - Dapatkan lebih banyak resource Node Js dari utilitas Command-line, Build tools, Templating, Control flow, Network, Data validation, Tutorials, dan banyak lagi. 62 | 63 | #### Deno (Alternatif NodeJS) 64 | 65 | - [DBirb simple API](https://github.com/dergyitheron/dbirb-sqlite-deno) - Ini adalah API yang sangat sederhana untuk SQLite, yang merupakan database lokal berbasis file. Ini sangat mudah dalam penggunaan dan untuk modifikasi, sangat sederhana dalam memahami cara kerjanya. Ditulis dengan TypeScript dalam Deno (alternatif NodeJS). 66 | 67 | #### All in one Repositori 68 | 69 | Ini adalah repositori dengan berbagai sumber daya untuk berbagai bahasa pemrograman. 70 | 71 | - [Awesome Awesomeness](https://github.com/bayandin/awesome-awesomeness) - Dapatkan sumber daya untuk semua bahasa pemrograman dan ketahui tentang vim, sumber daya Linux, panduan gaya, Keamanan Tanpa Server, Internet of Things (IoT), DevOps, Pola Desain, dan lainnya. Daftarnya tidak terbatas, cek repositori. 72 | 73 | - [Awesome Learning Resources](https://github.com/lauragift21/awesome-learning-resources) - Jika kamu ingin mendapatkan resource tentang Twilio, TensorFlow, TypeScript, Machine learning, Ruby on Rails, Javascript, dan lainnya. Repositori ini akan membantumu. 74 | 75 | - [Algo Wiki](https://github.com/vicky002/AlgoWiki) - Ini seperti repositor Wikipedia untuk hampir semua bahasa pemrograman seperti c ++, python, Javascript, Rust, PHP, Java, dan banyak lagi. Kamu juga bisa mendapatkan algoritma, pembelajaran mesin, pemrograman kompetitif, dan banyak lagi. 76 | 77 | - [Front-end checklist](https://github.com/thedaviddias/Front-End-Checklist) - Repositori ini memiliki daftar langkah-langkah yang harus kamu ambil sebelum meluncurkan situs web. Mencakup sumber daya untuk memeriksa kinerja situs web Anda, aksesibilitas, SEO, dan lainnya. 78 | 79 | - [Free for devs](https://github.com/ripienaar/free-for-dev) - Kamu akan mendapatkan sumber daya yang luar biasa untuk membantu membangun situs web dari nol. Contoh: Alat untuk Tim dan Kolaborasi, CI dan CD, Pengujian, Keamanan dan PKI, Sistem Manajemen, dan lainnya. 80 | 81 | - [Front-end resources](https://github.com/RitikPatni/Front-End-Web-Development-Resources#table-of-contents) - Repositori luar biasa ini memiliki sumber daya CSS yang luar biasa, platform untuk mempelajari kode, saluran youtube yang bisa kamu ikuti, blog untuk diikuti, dan ekstensi Visual Studio Code untuk dipasang untuk membuat hidupmu lebih mudah. 82 | 83 | - [List](https://github.com/jnv/lists) - Repositori yang bagus untuk mempelajari pengembangan web di level yang lebih dalam. Memiliki banyak daftar sumber daya untuk wawancara pengembang front-end, perusahaan yang dapat kamu lamar dengan mudah, sumber daya BEM, sumber belajar ES6, sumber daya Blockchain & cryptocurrency, dan banyak lagi. 84 | 85 | ### Flask (Kerangka Kerja Web pada Python) 86 | 87 | - [Awesome Flask](https://github.com/humiaozuzu/awesome-flask) - Daftar sumber daya dan plugin Flask yang mengagumkan. 88 | 89 | ### Bagaimana Cara Berkontribusi 90 | 91 | Semua kontribusi untuk menambahkan repositori Github yang berguna dengan sumber daya yang penting dan berguna sangat kami harapkan. Harap baca [Panduan kontribusi untuk langkah-langkah yang harus diambil](https://github.com/muchirijane/learning-code-through-github-repos/blob/main/CONTRIBUTING.md) supaya dapat menyelesaikan Pull request hingga berhasil. 92 | 93 | ## Terimakasih Atas Kontribusimu 94 | 95 | 96 | 97 | 98 | 105 | 112 | 119 | 126 | 133 | 140 | 141 | 148 | 155 | 162 |
99 | 100 | muchirijane 101 |
102 | Jane Tracy Muthoni 103 |
104 |
106 | 107 | Hackerbone 108 |
109 | Sitaraman S 110 |
111 |
113 | 114 | trivedidhruvil9 115 |
116 | Dhruvil Trivedi 117 |
118 |
120 | 121 | MicheleMarschner 122 |
123 | Michele Marschner 124 |
125 |
127 | 128 | viraldevpb 129 |
130 | Prathamesh Borse 131 |
132 |
134 | 135 | d02d33pak 136 |
137 | Deepak Talan 138 |
139 |
142 | 143 | leaggg 144 |
145 | Lea 146 |
147 |
149 | 150 | GriffinMLN 151 |
152 | GriffinMLN 153 |
154 |
156 | 157 | OnyetApp 158 |
159 | Dian Mukti Wibowo 160 |
161 |
163 | 164 | 165 | 166 | 167 | -------------------------------------------------------------------------------- /Translation Bahasa Melayu/README-bm.md: -------------------------------------------------------------------------------- 1 | ![hacktoberfest badge](https://img.shields.io/badge/%F0%9F%94%A5-hacktoberfest-blue) ![license badge](https://img.shields.io/badge/%E2%9C%94%20license-MIT-green) ![open-source badge](https://img.shields.io/badge/%F0%9F%90%B1%E2%80%8D%F0%9F%92%BB-Open--Source-orange) 2 | 3 | # Pembelajaran-kod-melalui-github-repo 4 | 5 | Terdapat pelbagai sumber yang berguna yang tersedia untuk pelajar untuk belajar dan mengembangkan kemahiran mereka. Tetapi saya ingin berkongsi beberapa repositori Github yang boleh anda tambahkan untuk mendapatkan lebih banyak sumber dalam perjalanan pengekodan anda. 6 | 7 | Git-Hub-Pic 8 |
9 |
10 | 11 | #### Sumber Html 12 | 13 | - [Awesome Html5 resources](https://github.com/diegocard/awesome-html5) - Ini adalah repositori GitHub yang direka untuk meletakkan semua sumber Html5 yang anda perlukan. Anda akan belajar mengenai kebolehaksesan, Semantik, Pengurusan DOM, aplikasi web Progresif, buku HTML, dan banyak lagi. 14 | 15 | - [Html list resources](https://github.com/gloparco/Master-List-of-HTML5-JS-CSS-Resources/blob/master/html.md) - Repositori ini mempunyai sumber HTML yang hebat di mana anda juga boleh mendapatkan pautan ke buku Html5 yang bermanfaat. 16 | 17 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - Repositori ini mempunyai sumber luar biasa pada HTML & CSS. Anda boleh mempelajari perkara-perkara seperti semantik HTML dan seni bina front-end, membuat borang hubungi dalam HTML5, Apakah kemampuan HTML5, ciri-ciri, dan sumbernya dan lebih banyak lagi sumber. 18 | 19 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Sekiranya anda ingin belajar atau memulakan dengan Html dan CSS, repositori ini akan sangat membantu. Ia mempunyai sumber yang akan membantu meningkatkan kemahiran anda mengenai asas-asasnya. 20 | 21 | - [HTML5 Boilerplate](https://github.com/h5bp/html5-boilerplate) - HTML5 Boilerplate adalah templat front-end profesional untuk membina aplikasi atau laman web yang pantas, mantap dan mudah disesuaikan. 22 | 23 | #### Sumber CSS 24 | 25 | - [Awesome CSS learning](https://github.com/micromata/awesome-css-learning) - Lihat sumber CSS ini untuk membantu anda dalam perjalanan pengekodan anda. Kenali semua tentang animasi, pemboleh ubah CSS, susun atur, unit CSS, dan banyak lagi. 26 | 27 | - [Awesome CSS Grid](https://github.com/valentinogagliardi/awesome-css-grid) - Ketahui mengenai grid CSS dan bagaimana anda boleh memajukan diri dengan sumber percuma yang luar biasa. 28 | 29 | - [Awesome Tailwind Css](https://github.com/aniftyco/awesome-tailwindcss) - Belajar dengan melihat dan menggunakan sumber Tailwind CSS, alat, sambungan IDE, Templat, Tema, dan banyak lagi. 30 | 31 | - [Design resources for developers](https://github.com/bradtraversy/design-resources-for-developers) - Ini adalah repositori GitHub yang hebat untuk mendapatkan semua sumber yang anda perlukan untuk menjadikan laman web anda kelihatan baik. Sekumpulan laman web yang boleh anda dapatkan warna, fon, grafik UI, ikon, UI React, UI Vue, dan banyak lagi. 32 | 33 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - Repositori ini mempunyai sumber yang luar biasa pada CSS tetapi juga pada HTML. Repositori ini mempunyai sumber seperti: Apakah itu Kekhususan CSS? , Senibina CSS: amalan terbaik baru, amalan CSS terburuk, teknik CSS yang tidak dapat anda tidak dapat hidup tanpanya, dan banyak lagi. 34 | 35 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Seperti yang saya nyatakan di atas. Ia mempunyai sumber yang hebat untuk Html5 tetapi anda boleh belajar sass, flexbox, grid dan banyak lagi. 36 | 37 | #### Repositori Javascript 38 | 39 | - [Awesome JS](https://github.com/serhiisol/awesome-js) - Dengan repositori ini, anda boleh mendapatkan sumber dan tutorial untuk rangka kerja Javascript seperti Node Js, Angular Js, React Js, dan juga sumber vanila Javascript. 40 | 41 | - [Awesome Javascript](https://github.com/sorrycc/awesome-javascript) - Ketahui mengenai Templating Engines, Data Visualization, Reactive Programming, RegExp, API, dan banyak lagi. 42 | 43 | - [Awesome Javascript Learning](https://github.com/micromata/awesome-javascript-learning) - Repositori ini mempunyai senarai sumber Javascript sahaja yang merangkumi: ebooks percuma, blog, video, sumber berkaitan DOM, sumber Node Js, dan banyak lagi. 44 | 45 | - [Javascript Stuff](https://github.com/ahfarmer/javascriptstuff-db) - Repositori ini mempunyai sumber yang luar biasa untuk sumber React dengan laman web untuk mendapatkannya dengan mudah di satu tempat. Anda boleh mendapatkan projek pemula React, penjana laman web statik, tutorial React, alat pembangunan dan banyak lagi. 46 | 47 | #### Repositori Vue JS 48 | 49 | - [Awesome Vue Resources](https://github.com/vuejs/awesome-vue) - Repositori Github yang sangat popular ini dipenuhi dengan sumber vue.js yang hebat. Ia mempunyai segalanya dan lebih kepada seseorang yang ingin menguasai vue.js. Dari tutorial, podcast, dokumentasi hingga projek penuh, coretan kod, dll. 50 | 51 | - [Vuejs Resources](https://github.com/gliterd/vuejs-resources) - Repositori Github ini mempunyai sumber vue.js yang berharga. Ia mempunyai tutorial, dokumentasi, libraries & plugin untuk alat pembangunan. 52 | 53 | #### Repositori React JS 54 | 55 | - [Awesome React Resources](https://github.com/brillout/awesome-react-components) - Repositori Github yang menakjubkan ini mempunyai sumber yang hebat yang merangkumi ekosistem React. Anda boleh membuat fork atau membintangi keran ia akan berguna dalam projek anda yang seterusnya. Repo ini merangkumi: React tools, Sumber Am React, Komuniti React, React Online Playgrounds, dan tutorial React. 56 | - [Useful React Resources]() - Repositori Github yang menakjubkan ini mempunyai sumber yang hebat yang merangkumi ekosistem React. Anda boleh membuat fork atau membintangi keran ia akan berguna dalam projek anda yang seterusnya. Repo ini merangkumi: React tools, Sumber Am React, Komuniti React, React Online Playgrounds, dan tutorial React. 57 | 58 | #### Repositori Node Js 59 | 60 | - [Node JS resources](https://github.com/sindresorhus/awesome-nodejs) - Dapatkan lebih banyak sumber Node Js dari utiliti Baris Perintah, alat Binaan, Templating, Aliran kawalan, Rangkaian, Pengesahan data, Tutorial, dan banyak lagi. 61 | 62 | #### Repositori semua dalam satu 63 | 64 | Ini adalah repositori yang mempunyai pelbagai sumber untuk berbilang bahasa pengaturcaraan. 65 | 66 | - [Awesome Awesomeness](https://github.com/bayandin/awesome-awesomeness) - Dapatkan sumber untuk semua bahasa pengaturcaraan dan ketahui mengenai vim, sumber Linux, panduan gaya, Keselamatan Tanpa Server, Internet Barangan (IoT), DevOps, Corak Reka Bentuk dan banyak lagi. Senarainya tidak berkesudahan, sila lihat repositori ini. 67 | 68 | - [Awesome Learning Resources](https://github.com/lauragift21/awesome-learning-resources) - Sekiranya anda ingin mendapatkan sumber mengenai Twilio, TensorFlow, TypeScript, Machine learning, Ruby on Rails, Javascript, dan banyak lagi. Repositori ini akan membantu anda. 69 | 70 | - [Algo Wiki](https://github.com/vicky002/AlgoWiki) - Ini seperti repositori Wikipedia untuk hampir semua bahasa pengaturcaraan seperti c ++, python, Javascript, Rust, PHP, Java, dan banyak lagi. Anda juga boleh mendapatkan algoritma, pembelajaran mesin, pengaturcaraan kompetitif, dan banyak lagi. 71 | 72 | - [Front-end checklist](https://github.com/thedaviddias/Front-End-Checklist) - Repositori ini mempunyai senarai semak untuk langkah-langkah yang harus anda ambil sebelum melancarkan laman web anda. Ini merangkumi sumber untuk memeriksa prestasi laman web anda, kebolehaksesan, SEO dan banyak lagi. 73 | 74 | - [Free for devs](https://github.com/ripienaar/free-for-dev) - Anda akan mendapat sumber yang luar biasa untuk membantu anda membina laman web dari awal. Contoh: Alat untuk Pasukan dan Kerjasama, CI dan CD, Ujian, Keselamatan dan PKI, Sistem Pengurusan dan banyak lagi. 75 | 76 | - [Front-end resources](https://github.com/RitikPatni/Front-End-Web-Development-Resources#table-of-contents) - Repositori yang luar biasa ini mempunyai sumber CSS yang luar biasa, platform untuk belajar kod, saluran youtube yang harus anda ikuti, blog untuk diikuti, dan sambungan VsCode untuk dipasang untuk menjadikan hidup anda lebih mudah. 77 | 78 | - [List](https://github.com/jnv/lists) - Repositori yang bagus untuk belajar pebangunan web pada tahap yang lebih mendalam. Ia mempunyai banyak senarai sumber wawancara pembangun front-end, syarikat yang boleh anda mohon dengan mudah, sumber BEM, sumber pembelajaran ES6, sumber blockchain & cryptocurrency, dan banyak lagi. 79 | 80 | ### Repositori Flask 81 | 82 | - [Awesome Flask](https://github.com/humiaozuzu/awesome-flask) - Senarai sumber dan plugins Flask yang disusun. 83 | 84 | ### Cara menyumbang 85 | 86 | Semua sumbangan untuk menambahkan repositori Github yang berguna dengan sumber yang penting dan berguna amatlah dialu-alukan. Sila baca [Garis panduan sumbangan untuk langkah yang perlu diambil](https://github.com/muchirijane/learning-code-through-github-repos/blob/main/CONTRIBUTING.md) untuk memenuhi kelayakan pull request. 87 | 88 | ## Terima kasih di atas sumbangan anda 89 | 90 | 91 | 92 | 93 | 100 | 107 | 114 | 121 | 128 | 135 | 136 | 143 | 150 | 157 |
94 | 95 | muchirijane 96 |
97 | Jane Tracy Muthoni 98 |
99 |
101 | 102 | Hackerbone 103 |
104 | Sitaraman S 105 |
106 |
108 | 109 | trivedidhruvil9 110 |
111 | Dhruvil Trivedi 112 |
113 |
115 | 116 | MicheleMarschner 117 |
118 | Michele Marschner 119 |
120 |
122 | 123 | viraldevpb 124 |
125 | Prathamesh Borse 126 |
127 |
129 | 130 | d02d33pak 131 |
132 | Deepak Talan 133 |
134 |
137 | 138 | leaggg 139 |
140 | Lea 141 |
142 |
144 | 145 | GriffinMLN 146 |
147 | GriffinMLN 148 |
149 |
151 | 152 | TeeVenDick 153 |
154 | TeeVenDick 155 |
156 |
158 | 159 | 160 | 161 | 162 | -------------------------------------------------------------------------------- /Translation Bulgarian/README-bg.md: -------------------------------------------------------------------------------- 1 | ![hacktoberfest badge](https://img.shields.io/badge/%F0%9F%94%A5-hacktoberfest-blue) ![license badge](https://img.shields.io/badge/%E2%9C%94%20license-MIT-green) ![open-source badge](https://img.shields.io/badge/%F0%9F%90%B1%E2%80%8D%F0%9F%92%BB-Open--Source-orange) 2 | 3 | # learning-code-through-github-repo 4 | 5 | Има невероятни ресурси, които са на разположение за да могат да помогнат за развитието на уменията на начинаещи програмисти. Но бих искал да споделя някои репозитории на Github, които можете да добавите, за да улесните вашето пътуване в кодирането. 6 | 7 | Git-Hub-Pic 8 |
9 |
10 | 11 | #### Html ресурси 12 | 13 | - [Awesome Html5 resources](https://github.com/diegocard/awesome-html5) - Това Github repo е създадено за да съдържа всички HTML5 ресурси, които може да ви потрябват. Тук ще научите за accessibility, Semantics, DOM Management, Progressive web apps, HTML books и други. 14 | 15 | - [Html list resources](https://github.com/gloparco/Master-List-of-HTML5-JS-CSS-Resources/blob/master/html.md) - Това repo има невероятни HTML ресурси, както и полезни връзки до HTML books. 16 | 17 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - Тази репозитория разполага с невероятни ресурси за HTML и CSS. Можете да научите подобни неща като HTML semantics и front-end архитектура, да създадете Contact Form в HTML5, какво е възможно с HTML5, функции и ресурси и още ресурси. 18 | 19 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Ако искате да научите или да започнете с Html и CSS, това репо ще бъде полезно. То разполага с ресурси, които ще ви помогнат да подобрите уменията си по основите. 20 | 21 | #### CSS ресурси 22 | 23 | - [Awesome CSS learning](https://github.com/micromata/awesome-css-learning) - Разгледайте тези CSS ресурси, които ще ви помогнат в пътуването ви по кодиране. Опознайте всичко за анимациите, CSS променливите, оформлението, CSS единицата и много други. 24 | 25 | - [Awesome CSS Grid](https://github.com/valentinogagliardi/awesome-css-grid) - Научете за CSS мрежата и как можете да подобрите уменията си с невероятни безплатни ресурси. 26 | 27 | - [Awesome Tailwind Css](https://github.com/aniftyco/awesome-tailwindcss) - Научете се да разглеждате и използвате невероятни Tailwind CSS ресурси, инструменти, разширения за IDE, шаблони, теми и други. 28 | 29 | - [Design resources for developers](https://github.com/bradtraversy/design-resources-for-developers) - Това е страхотно GitHub репо, за набавяне на всички необходими ресурси, които да направят уебсайтът ви да изглежда добре. Колекция от сайтове, в които можете да получите цветове, шрифтове, графики на потребителския интерфейс, икони, React UI, Vue UI и др. 30 | 31 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - Тази репозитория разполага с невероятни ресурси за CSS, но също така и за HTML. Тук ще намерите ресурси като: Какво, по дяволите, е спецификата на CSS? CSS архитектури: Нови най-добри практики, Най-лошите Css практики, CSS техники, без които не бихте могли да живеете, и други. 32 | 33 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Както споменах по-горе. Той разполага със страхотни ресурси за HTML5, но можете да научите sass, flexbox, grid и други. 34 | 35 | #### Javascript repos 36 | 37 | - [Awesome JS](https://github.com/serhiisol/awesome-js) - С това репо можете да получите ресурси и уроци за Javascript frameworks като Node JS, Angular JS, React JS, както и vanilla Javascript ресурси. 38 | 39 | - [Awesome Javascript](https://github.com/sorrycc/awesome-javascript) - Запознайте се с механизмите за шаблониране, визуализация на данни, реактивно програмиране, RegExp, API и други. 40 | 41 | - [Awesome Javascript Learning](https://github.com/micromata/awesome-javascript-learning) - Това репо има списък само с ресурси на Javascript, който включва: безплатни JS електронни книги, блогове, видеоклипове, ресурси свързани с DOM, Node JS ресурси и други. 42 | 43 | - [Javascript Stuff](https://github.com/ahfarmer/javascriptstuff-db) - Това репо разполага с невероятни ресурси за React ресурси с уебсайт, за да ги получите лесно на едно място. Можете да получите начални проекти на React, генератори на статични сайтове, React уроци, developer tools и други. 44 | 45 | #### Vue JS repos 46 | 47 | - [Awesome Vue Resources](https://github.com/vuejs/awesome-vue) - Тази широко популярна репозитория на Github е претъпкана със страхотни ресурси за vue.js. Има всичко, че и още за някой, който иска да овладее vue.js. От уроци, подкасти, документации до пълни проекти, кодови фрагменти и т.н. 48 | 49 | - [Vuejs Resources](https://github.com/gliterd/vuejs-resources) - Тази репозитория на Github има ценни ресурси за vue.js. Тя има уроци, документация, библиотеки и plugins за development tools. 50 | 51 | #### React JS repos 52 | 53 | - [Awesome React Resources](https://github.com/brillout/awesome-react-components) - Тази невероятна репозитория на Github разполага със страхотни ресурси, които включват екосистемата на React. Можете да я fork-нете или да я маркирате със звезда, за да ви бъде полезна в следващия ви проект. Репото включва: React инструменти, React General Resources, React Community, React Online Playgrounds и React уроци. 54 | 55 | - [Useful React Resources]() - Тази невероятна репозитория на Github разполага със страхотни ресурси, които включват екосистемата на React. Можете да я fork-нете или да я маркирате със звезда, за да ви бъде полезна в следващия ви проект. Репото включва: React инструменти, React General Resources, React Community, React Online Playgrounds и React уроци. 56 | 57 | #### Node Js repos 58 | 59 | - [Node JS resources](https://github.com/sindresorhus/awesome-nodejs) - Получете повече ресурси за Node JS от помощни програми за командния ред, инструменти за изграждане, шаблони, контрол на потока, мрежа, проверка на данни, уроци и други. 60 | 61 | #### Всичко в едно repos 62 | 63 | Това са репозитории, които имат различни ресурси за множество езици за програмиране. 64 | 65 | - [Awesome Awesomeness](https://github.com/bayandin/awesome-awesomeness) - Вземете ресурси за всички езици за програмиране и се запознайте с vim, Linux ресурси, ръководства за стилове, безсървърна сигурност, Internet of Things (IoT), DevOps, Design Patterns и други. Списъкът е безкраен, разгледайте репото. 66 | 67 | - [Awesome Learning Resources](https://github.com/lauragift21/awesome-learning-resources) - Ако искате да получите ресурси за Twilio, TensorFlow, TypeScript, машинно обучение, Ruby on Rails, Javascript и др. Тази репозитория ще ви помогне. 68 | 69 | - [Algo Wiki](https://github.com/vicky002/AlgoWiki) - Това репо е като Wikipedia за почти всички езици за програмиране като C++, Python, Javascript, Rust, PHP, Java и други. Можете също така да получите алгоритми, машинно обучение, състезателно програмиране и други. 70 | 71 | - [Front-end checklist](https://github.com/thedaviddias/Front-End-Checklist) - Това репо има контролен списък за стъпките, които трябва да предприемете, преди да стартирате уебсайта си. Включва ресурси за проверка на ефективността на вашия уебсайт, accessibility, SEO и други. 72 | 73 | - [Free for devs](https://github.com/ripienaar/free-for-dev) - Ще получите невероятни ресурси, които да ви помогнат да създавате уебсайтове от нулата. Примери: Инструменти за екипи и сътрудничество, CI и CD, тестване, сигурност и PKI, система за управление и други. 74 | 75 | - [Front-end resources](https://github.com/RitikPatni/Front-End-Web-Development-Resources#table-of-contents) - Това невероятно репо има страхотни CSS ресурси, платформи за учене на код, youtube канали, които трябва да следвате, блогове, които да следвате, и разширение VsCode за инсталиране, за да улесни живота ви. 76 | 77 | - [List](https://github.com/jnv/lists) - Страхотна репозитория за обучение на уеб разработки на по-дълбоко ниво. Тя разполага с широк списък от ресурси за интервюта за разработчици на front-end, компании, за които можете лесно да кандидатствате, ресурси за BEM, учебни ресурси за ES6, ресурси за Blockchain и криптовалута и други. 78 | 79 | ### Flask Repos 80 | 81 | - [Awesome Flask](https://github.com/humiaozuzu/awesome-flask) - Подготвен списък от страхотни ресурси и Flask plugins. 82 | 83 | ### Как да допринесете 84 | 85 | Всички приноси за добавяне на полезни репозитории на Github с важни и полезни ресурси са добре дошли. Моля, прочетете [Насоките за принос за стъпките, които трябва да предприемете](https://github.com/muchirijane/learning-code-through-github-repos/blob/main/CONTRIBUTING.md) за изпълнение на успешен Pull request. 86 | 87 | ## Благодаря ви за вашия принос 88 | 89 | 90 | 91 | 92 | 99 | 106 | 113 | 120 | 127 | 134 | 135 | 142 | 149 |
93 | 94 | muchirijane 95 |
96 | Jane Tracy Muthoni 97 |
98 |
100 | 101 | Hackerbone 102 |
103 | Sitaraman S 104 |
105 |
107 | 108 | trivedidhruvil9 109 |
110 | Dhruvil Trivedi 111 |
112 |
114 | 115 | MicheleMarschner 116 |
117 | Michele Marschner 118 |
119 |
121 | 122 | viraldevpb 123 |
124 | Prathamesh Borse 125 |
126 |
128 | 129 | d02d33pak 130 |
131 | Deepak Talan 132 |
133 |
136 | 137 | leaggg 138 |
139 | Lea 140 |
141 |
143 | 144 | GriffinMLN 145 |
146 | GriffinMLN 147 |
148 |
150 | 151 | 152 | 153 | 154 | -------------------------------------------------------------------------------- /Translation French/README-fr.md: -------------------------------------------------------------------------------- 1 | ![hacktoberfest badge](https://img.shields.io/badge/%F0%9F%94%A5-hacktoberfest-blue) ![license badge](https://img.shields.io/badge/%E2%9C%94%20license-MIT-green) ![open-source badge](https://img.shields.io/badge/%F0%9F%90%B1%E2%80%8D%F0%9F%92%BB-Open--Source-orange) 2 | 3 | # learning-code-through-github-repo 4 | 5 | Il existe des ressources formidables pour que les débutants en code apprennent et développent leurs compétences. Mais j'aimerais partager quelques référentiels githubs (appelés repos) que vous pouvez ajouter pour obtenir des ressources qui vous serviront dans votre voyage dans le monde de la programmation. 6 | 7 | Git-Hub-Pic 8 |
9 |
10 | 11 | #### Ressources HTML 12 | 13 | - [Awesome Html5 resources](https://github.com/diegocard/awesome-html5) - C'est un repo github créé pour rassembler toutes les ressources en HTML5 dont vous pourriez avoir besoin. Vous y apprendrez sur l'accessibilité, la sémantique, le DOM (Modèle d'Objets de Document), les applications web progressives, les livres HTML, etc. 14 | 15 | - [Html list resources](https://github.com/gloparco/Master-List-of-HTML5-JS-CSS-Resources/blob/master/html.md) - Ce repo contient des ressources html impressionnantes où vous pouvez également obtenir des liens vers des livres HTML5 utiles. 16 | 17 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - Ce repo dispose de ressources formidables sur HTML et CSS. Vous pouvez y apprendre la sémantique HTML et l'architecture front-end, à créer un formulaire de contact en HTML5, de quoi HTML5 est capable, ses fonctionnalités et de nombreuses autres ressources. 18 | 19 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Si vous voulez découvrir ou commencer avec HTML et CSS, ce repo vous sera utile. Il dispose de ressources qui vous aideront à améliorer vos compétences sur les bases. 20 | 21 | #### Resources CSS 22 | 23 | - [Awesome CSS learning](https://github.com/micromata/awesome-css-learning) - Ces ressources CSS peuvent vous aider dans votre aventure de programmation. Ce repo peut vous apprendre tout ce qu'il faut savoir sur les animations, les variables CSS, la mise en page, l'unité CSS, etc. 24 | 25 | - [Awesome CSS Grid](https://github.com/valentinogagliardi/awesome-css-grid) - Apprenez-en sur les grilles CSS et comment vous pouvez vous améliorer avec ces ressources gratuites. 26 | 27 | - [Awesome Tailwind Css](https://github.com/aniftyco/awesome-tailwindcss) - Apprenez à visualiser et à utiliser les ressources, outils, extensions IDE, modèles, thèmes et plus encore de Tailwind Css. 28 | 29 | - [Design resources for developers](https://github.com/bradtraversy/design-resources-for-developers) - C'est un excellent repo github pour obtenir toutes les ressources dont vous avez besoin pour rendre votre site web attrayant. Une collection de sites sur lesquels vous pouvez obtenir des couleurs, des polices, des graphiques d'interface utilisateur, des icônes, une interface utilisateur React, une interface utilisateur Vue et plus encore. 30 | 31 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - Ce référentiel a des ressources incroyables sur CSS mais aussi sur HTML. Ce repo a des ressources telles que "Quelle est la spécificité CSS ?", "Architectures CSS: nouvelles bonnes pratiques", "Les pires pratiques en CSS", "Les techniques CSS sont vous ne pourrez pas vous passer", etc. 32 | 33 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Comme je l'ai mentionné ci-dessus, il contient d'excellentes ressources pour HTML5, mais vous pouvez aussi y apprendre sass, flexbox, grid et plus encore. 34 | 35 | #### Référentiels pour Javascript 36 | 37 | - [Awesome JS](https://github.com/serhiisol/awesome-js) - Avec ce repo, vous pouvez obtenir des ressources et des didacticiels pour les frameworks Javascript tels que Node Js, Angular Js, React Js ainsi que des ressources sur JavaScript vanilla. 38 | 39 | - [Awesome Javascript](https://github.com/sorrycc/awesome-javascript) - Apprenez à connaître les moteurs de création de modèles, la visualisation de données, la programmation réactive, RegExp, Api et plus encore. 40 | 41 | - [Awesome Javascript Learning](https://github.com/micromata/awesome-javascript-learning) - Ce référentiel contient une liste de ressources Javascript qui comprend : des ebooks Js gratuits, des blogs, des vidéos, des ressources liées au DOM, des ressources Node Js, etc. 42 | 43 | - [Javascript Stuff](https://github.com/ahfarmer/javascriptstuff-db) - Ce repo rassemble des ressources précieuses en un seul endroit. Vous pouvez obtenir des projets de démarrage de réaction, des générateurs de site statiques, des didacticiels de réaction, des outils de développement, etc. 44 | 45 | #### Référentiels pour Vue JS 46 | 47 | - [Awesome Vue Resources](https://github.com/vuejs/awesome-vue) - Ce repo Github extrêmement populaire est plein à craquer de ressources sur vue.js. Il contient tout ce qu'il faut pour maîtriser parfaitement vue.js. Des tutoriels, des podcasts, de la documentation et même des projets entiers, etc. 48 | 49 | - [Vuejs Resources](https://github.com/gliterd/vuejs-resources) - Le référentiel Github contient de précieuses ressources sur vue.js. Il contient des tutoriels, des documentations, des bibliothèques et des plugins pour les outils de développement. 50 | 51 | #### Référentiels pour React JS 52 | 53 | - [Awesome React Resources](https://github.com/brillout/awesome-react-components) - Cet incroyable repo Github possède d'excellentes ressources qui incluent l'écosystème React. Vous pouvez le fork ou l'ajouter à vos favoris, il sera utile dans votre prochain projet. Ce repo contient : des outils React, des ressources générales React, des tutoriels... 54 | 55 | - [Useful React Resources]() - Ce référentiel Github possède d'excellentes ressources qui incluent l'écosystème React. Vous pouvez le fork ou l'ajouter à vos favoris, il sera utile dans votre prochain projet. Ce repo contient : des outils React, des ressources générales React, des tutoriels... 56 | 57 | #### Référentiels pour Node Js 58 | 59 | - [Node JS resources](https://github.com/sindresorhus/awesome-nodejs) - Get more Node Js resources from Command-line utilities, Build tools, Templating, Control flow, Network, Data validation, Tutorials and more. 60 | 61 | #### Référentiels tout-en-un 62 | 63 | Ce sont des repos contenant des ressources pour plusieurs langages de programmation. 64 | 65 | - [Awesome Awesomeness](https://github.com/bayandin/awesome-awesomeness) - Obtenez des ressources pour tous les langages de programmation. Découvrez aussi vim, des ressources sur Linux, des guides de style, la sécurité sans serveur, Internet of Things (IoT), DevOps, Design Patterns, etc. La liste est infinie, allez jeter un oeil au repo. 66 | 67 | - [Awesome Learning Resources](https://github.com/lauragift21/awesome-learning-resources) - Si vous souhaitez obtenir des ressources sur Twilio, TensorFlow, TypeScript, Machine learning, Ruby on Rails, Javascript, etc. Ce référentiel vous aidera. 68 | 69 | - [Algo Wiki](https://github.com/vicky002/AlgoWiki) - C'est comme un référentiel wikipedia repo pour presque tous les langages de programmation, tels que c++, python, Javascript, Rust, PHP, Java, et plus encore. Vous pouvez aussi obtenir des algorithmes, du machine learning, de la programmation compétitive, etc. 70 | 71 | - [Front-end checklist](https://github.com/thedaviddias/Front-End-Checklist) - Ce repo est une checklist des étapes à suivre avant de lancer votre site internet. Il inclut des ressources poiur vérifier la performance de votre site, son accessibilité, SEO, etc. 72 | 73 | - [Free for devs](https://github.com/ripienaar/free-for-dev) - Vous obtiendrez des ressources formidables pour vous aider à construire des sites internet à partir de rien. Par exemple, des outils pour travailler en équipe, CI and CD, pour tester, la sécurité et PKI, les méthodes de management, etc. 74 | 75 | - [Front-end resources](https://github.com/RitikPatni/Front-End-Web-Development-Resources#table-of-contents) - Ce repo dispose de ressources CSS incroyables, des plateformes d'apprentissage du code, des chaînes youtube que vous devriez suivre, des blogs à suivre et une extension VsCode extension à installer pour vous faciliter la vie. 76 | 77 | - [List](https://github.com/jnv/lists) - Un formidable référentiel pour apprendre la programmation web à un niveau plus important. Il a une large liste de ressources : des des interviews de développeurs front-end, des entreprises ou vous pouvez facilement postuler, des ressources BEM, des ressources sur le Blockchain et les crypto-monnaies, etc. 78 | 79 | ### Comment contribuer 80 | 81 | Toutes les contributions pour ajouter des référentiels Github contenant des ressources utiles sont les bienvenues. Merci de lire les [intructions pour contribuer](https://github.com/muchirijane/learning-code-through-github-repos/blob/main/CONTRIBUTING.md) afin de réaliser une Pull request valide. 82 | 83 | ## Merci pour votre contribution 84 | 85 | 86 | 87 | 88 | 95 | 102 |
89 | 90 | muchirijane 91 |
92 | Jane Tracy Muthoni 93 |
94 |
96 | 97 | trivedidhruvil9 98 |
99 | Dhruvil Trivedi 100 |
101 |
103 | 104 | -------------------------------------------------------------------------------- /Translation Hindi/README-hindi.md: -------------------------------------------------------------------------------- 1 | ![hacktoberfest badge](https://img.shields.io/badge/%F0%9F%94%A5-hacktoberfest-blue) ![license badge](https://img.shields.io/badge/%E2%9C%94%20license-MIT-green) ![open-source badge](https://img.shields.io/badge/%F0%9F%90%B1%E2%80%8D%F0%9F%92%BB-Open--Source-orange) 2 | 3 | # learning-code-through-github-repo 4 | 5 | ऐसे अद्भुत संसाधन हैं जो कोडन्यूब के लिए अपने कौशल को सीखने और विकसित करने के लिए उपलब्ध हैं। लेकिन मैं कुछ Github रेपो साझा करना चाहूंगा जिन्हें आप अपनी कोडिंग यात्रा में बहुत अधिक संसाधन जोड़ सकते हैं। 6 | 7 | Git-Hub-Pic 8 |
9 |
10 | 11 | #### Html resources 12 | 13 | - [Awesome Html5 resources](https://github.com/diegocard/awesome-html5) - यह एक Github रेपो है जिसे आपको सभी HTML 5 संसाधनों की आवश्यकता होगी। आपको अभिगम्यता, शब्दार्थ, DOM प्रबंधन, प्रगतिशील वेब ऐप, HTML पुस्तकें और बहुत कुछ के बारे में जानने को मिलेगा। 14 | 15 | - [Html list resources](https://github.com/gloparco/Master-List-of-HTML5-JS-CSS-Resources/blob/master/html.md) - इस रेपो में कमाल के HTML संसाधन हैं जहाँ आप मददगार Html5 पुस्तकों के लिंक भी प्राप्त कर सकते हैं। 16 | 17 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - HTML और css पर रिपॉजिटरी के अद्भुत संसाधन हैं। आप HTML शब्दार्थ और फ्रंट-एंड आर्किटेक्चर, HTML 5 में एक संपर्क फ़ॉर्म बनाएँ, HTML 5 क्या है, विशेषताएँ, और संसाधन और अधिक संसाधन जैसी चीजें सीख सकते हैं। 18 | 19 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - यदि आप HTML और CSS के साथ सीखना या शुरू करना चाहते हैं, तो यह रेपो सहायक होगा। इसके पास संसाधन हैं जो आपको मूल कौशल पर अपने कौशल को बेहतर बनाने में मदद करेंगे। 20 | #### CSS resources 21 | 22 | - [Awesome CSS learning](https://github.com/micromata/awesome-css-learning) - अपनी कोडिंग यात्रा में सहायता के लिए CSS संसाधनों पर एक नज़र डालें। एनिमेशन, CSS चर, लेआउट, CSS इकाई और बहुत कुछ के बारे में जानें। 23 | 24 | - [Awesome CSS Grid](https://github.com/valentinogagliardi/awesome-css-grid) - CSS ग्रिड के बारे में जानें और आप अद्भुत मुफ्त संसाधनों के साथ कैसे सुधार कर सकते हैं। 25 | 26 | - [Awesome Tailwind Css](https://github.com/aniftyco/awesome-tailwindcss) - अद्भुत Tailwind CSS संसाधन, उपकरण, आईडीई एक्सटेंशन, टेम्प्लेट, थीम और अधिक देखने और उपयोग करने के लिए जानें। 27 | 28 | - [Design resources for developers](https://github.com/bradtraversy/design-resources-for-developers) - यह आपकी वेबसाइट को अच्छा बनाने के लिए आवश्यक सभी संसाधनों को प्राप्त करने के लिए एक बढ़िया Github रेपो है। उन साइटों का संग्रह जिन्हें आप रंग, फ़ॉन्ट, UI ग्राफिक्स, आइकन, रिएक्ट UI, Vue UI और बहुत कुछ प्राप्त कर सकते हैं। 29 | 30 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - रिपॉजिटरी में सीएसएस पर अद्भुत संसाधन हैं लेकिन HTML पर भी। रेपो के पास संसाधन हैं जैसे हेक क्या सीएसएस विशिष्टता है? , सीएसएस आर्किटेक्चर: नई सर्वश्रेष्ठ प्रैक्टिस, सबसे खराब सीएसएस प्रथाएं, सीएसएस तकनीक आप बिना और अधिक नहीं रह सकते। 31 | 32 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - जैसा कि मैंने ऊपर बताया है। इसमें Html5 के लिए शानदार संसाधन हैं लेकिन आप sass, flexbox, grid और बहुत कुछ सीख सकते हैं। 33 | 34 | #### Javascript repos 35 | 36 | - [Awesome JS](https://github.com/serhiisol/awesome-js) - इस रेपो के साथ आप जावास्क्रिप्ट जेसेस्क्रिप्ट फ्रेमवर्क के लिए संसाधन और ट्यूटोरियल प्राप्त कर सकते हैं जैसे Node JS, Angular JS, React JS और Vanilla Javascriptसंसाधन। 37 | 38 | - [Awesome Javascript](https://github.com/sorrycc/awesome-javascript) - टेंपलेटिंग इंजन, डेटा विज़ुअलाइज़ेशन, रिएक्टिव प्रोग्रामिंग, RegExp, Api और अधिक के बारे में जानने के लिए। 39 | 40 | - [Awesome Javascript Learning](https://github.com/micromata/awesome-javascript-learning) - इस रेपो में केवल जावास्क्रिप्ट संसाधनों की एक सूची है जिसमें शामिल हैं: मुफ्त जेएस ईबुक, ब्लॉग, वीडियो, डोम संबंधित संसाधन, नोड जेएस संसाधन और बहुत कुछ। 41 | 42 | - [Javascript Stuff](https://github.com/ahfarmer/javascriptstuff-db) - इस रेपो में एक स्थान पर आसानी से प्राप्त करने के लिए एक वेबसाइट के साथ प्रतिक्रिया संसाधनों के लिए एक अद्भुत संसाधन है। आप रिएक्टर स्टार्टर प्रोजेक्ट्स, स्टैटिक साइट जनरेटर, रिएक्ट ट्यूटोरियल्स, डेवलपर टूल्स और बहुत कुछ प्राप्त कर सकते हैं। 43 | 44 | #### Vue JS repos 45 | 46 | - [Awesome Vue Resources](https://github.com/vuejs/awesome-vue) - यह व्यापक रूप से लोकप्रिय Github रिपॉजिटरी है, जो भयानक v..ss रिसोर्स के साथ पैक किया गया है। यह सब कुछ और जो vue.js. गुरु करना चाहता है के लिए और अधिक है ट्यूटोरियल, पॉडकास्ट, डॉक्यूमेंटेशन से लेकर फुल प्रोजेक्ट्स, कोड स्निपेट आदि। 47 | 48 | - [Vuejs Resources](https://github.com/gliterd/vuejs-resources) - इस इस Github भंडार में बहुमूल्य vue.js संसाधन हैं। इसमें ट्यूटोरियल, डॉक्यूमेंटेशन, लाइब्रेरी और प्लग इन डेवलपमेंट टूल्स हैं। 49 | 50 | #### React JS repos 51 | 52 | - [Awesome React Resources](https://github.com/brillout/awesome-react-components) - इस अद्भुत Github भंडार में महान संसाधन हैं जो रिएक्ट पारिस्थितिक तंत्र को शामिल करते हैं। आप अपने अगले प्रोजेक्ट में कांटा या स्टार लगा सकते हैं। रेपो में शामिल हैं: रिएक्ट टूल, रिएक्ट जनरल रिसोर्स, रिएक्ट कम्युनिटी, रिएक्ट ऑनलाइन प्लेग्राउंड्स और रिएक्ट ट्यूटोरियल। 53 | 54 | - [Useful React Resources]() - इस अद्भुत Github भंडार में महान संसाधन हैं जो रिएक्ट पारिस्थितिक तंत्र को शामिल करते हैं। आप अपने अगले प्रोजेक्ट में कांटा या स्टार लगा सकते हैं। रेपो में शामिल हैं: रिएक्ट टूल, रिएक्ट जनरल रिसोर्स, रिएक्ट कम्युनिटी, रिएक्ट ऑनलाइन प्लेग्राउंड्स और रिएक्ट ट्यूटोरियल। 55 | 56 | #### Node Js repos 57 | 58 | - [Node JS resources](https://github.com/sindresorhus/awesome-nodejs) - आदेश-पंक्ति उपयोगिताओं, बिल्ड उपकरण, अस्थायी, नियंत्रण प्रवाह, नेटवर्क, डेटा सत्यापन, ट्यूटोरियल और अधिक से अधिक नोड जेएस संसाधन प्राप्त करें। 59 | 60 | #### All in one repos 61 | 62 | ये ऐसे रिपोज हैं जिनमें कई प्रोग्रामिंग भाषाओं के लिए विभिन्न संसाधन हैं। 63 | 64 | - [Awesome Awesomeness](https://github.com/bayandin/awesome-awesomeness) - सभी प्रोग्रामिंग भाषाओं के लिए संसाधन प्राप्त करें और विम, लिनक्स संसाधनों, शैली-मार्गदर्शकों, सर्वर रहित सुरक्षा, इंटरनेट ऑफ थिंग्स (IoT), DevOps, डिज़ाइन पैटर्न और बहुत कुछ के बारे में जानें। सूची अंतहीन है, रेपो की जांच करें। 65 | 66 | - [Awesome Learning Resources](https://github.com/lauragift21/awesome-learning-resources) - यदि आप Twilio, TensorFlow, TypeScript, Machine Learning, Ruby on Rails, Javascript और बहुत कुछ पर संसाधन प्राप्त करना चाहते हैं। यह भंडार आपकी मदद करेगा। 67 | 68 | - [Algo Wiki](https://github.com/vicky002/AlgoWiki) - यह लगभग सभी प्रोग्रामिंग भाषाओं जैसे कि C ++, Python, Javascript, Rust, PHP, Java आदि के लिए विकिपीडिया रेपो की तरह है। आप एल्गोरिदम, मशीन लर्निंग, प्रतिस्पर्धी प्रोग्रामिंग, आदि भी प्राप्त कर सकते हैं। 69 | 70 | - [Front-end checklist](https://github.com/thedaviddias/Front-End-Checklist) - इस रिपॉजिटरी में उन चरणों के लिए एक चेकलिस्ट है जो आपको अपनी वेबसाइट लॉन्च करने से पहले लेनी चाहिए। इसमें आपकी वेबसाइट के प्रदर्शन, पहुंच, SEO और अधिक की जांच करने के लिए संसाधन शामिल हैं। 71 | 72 | - [Free for devs](https://github.com/ripienaar/free-for-dev) - जमीन से ऊपर तक वेबसाइट बनाने में मदद करने के लिए आपको अद्भुत संसाधन मिलेंगे। उदाहरण: टीमें और सहयोग के उपकरण, CI और CD, परीक्षण, सुरक्षा और PKI, प्रबंधन प्रणाली, और बहुत कुछ। 73 | 74 | - [Front-end resources](https://github.com/RitikPatni/Front-End-Web-Development-Resources#table-of-contents) - इस अद्भुत रेपो में अद्भुत सीएसएस संसाधन हैं, सीखने के कोड के लिए प्लेटफ़ॉर्म, यूट्यूब चैनल जिन्हें आपको अनुसरण करना चाहिए, ब्लॉगों का अनुसरण करना चाहिए और आपको जीवन को आसान बनाने के लिए स्थापित करने के लिए VsCode एक्सटेंशन। 75 | 76 | - [List](https://github.com/jnv/lists) - गहन स्तर पर वेब विकास सीखने के लिए एक महान भंडार। इसमें फ्रंट-एंड डेवलपर साक्षात्कारों के संसाधनों की एक विस्तृत सूची है, जिन कंपनियों को आप आसानी से, BEM संसाधन, ES6 शिक्षण संसाधन, ब्लॉकचेन और क्रिप्टोक्यूरेंसी संसाधनों, और अधिक पर लागू कर सकते हैं। 77 | 78 | ### Flask Repos 79 | 80 | - [Awesome Flask](https://github.com/humiaozuzu/awesome-flask) - भयानक Flask संसाधनों और प्लगइन्स की एक क्यूरेटेड सूची। 81 | ### योगदान कैसे करें? 82 | 83 | महत्वपूर्ण और उपयोगी संसाधनों के साथ उपयोगी जीथूब रिपोजिटरी को जोड़ने के लिए सभी योगदानों का स्वागत किया जाता है। कृपया पढ़ें [Contribution guidelines for steps to take](https://github.com/muchirijane/learning-code-through-github-repos/blob/main/CONTRIBUTING.md) एक सफल पुल अनुरोध को पूरा करने के लिए। 84 | 85 | ## Thank you for your contribution 86 | 87 | 88 | 89 | 90 | 97 | 104 | 111 | 118 |
91 | 92 | muchirijane 93 |
94 | Jane Tracy Muthoni 95 |
96 |
98 | 99 | trivedidhruvil9 100 |
101 | Dhruvil Trivedi 102 |
103 |
105 | 106 | viraldevpb 107 |
108 | Prathamesh Borse 109 |
110 |
112 | 113 | d02d33pak 114 |
115 | Deepak Talan 116 |
117 |
119 | 120 | -------------------------------------------------------------------------------- /Translation Polish/README-pl.md: -------------------------------------------------------------------------------- 1 | ![hacktoberfest badge](https://img.shields.io/badge/%F0%9F%94%A5-hacktoberfest-blue) ![license badge](https://img.shields.io/badge/%E2%9C%94%20license-MIT-green) ![open-source badge](https://img.shields.io/badge/%F0%9F%90%B1%E2%80%8D%F0%9F%92%BB-Open--Source-orange) 2 | 3 | # Ucz się kodu razem z repozytoriami GitHub 4 | 5 | Znajdziesz tu niesamowite zasoby które przeznaczone są dla świeżaków, przy czym pomogą ci nauczyć się pisania i poprawiania swoim umiejętności kodowania. Ale chcielibyśmy udostępnić ci przydatne repozytoria które urozmaicą twoja przygodę z programowaniem. 6 | 7 | Git-Hub-Pic 8 |
9 |
10 | 11 | #### Zasoby HTML 12 | 13 | - [Awesome Html5 resources](https://github.com/diegocard/awesome-html5) - To jest repozytorium GitHub stworzone na potrzeby nauki znajdziesz w nim wszystko czego potrzebujesz. Nauczysz się z niego dostępności, Semantycznością, zarządzaniem DOM, Progresywnymi aplikacjami webowymi, książki o HTMLu, i wiele więcej. 14 | 15 | - [Html list resources](https://github.com/gloparco/Master-List-of-HTML5-JS-CSS-Resources/blob/master/html.md) - Te repozytorium ma fantastyczne zasoby HTM, w którym znajdziesz link do aż 15 książek o tematyce HTML. 16 | 17 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - W tym repozytorium znajdziesz zasoby zarówno do HTML jak i CSS. Możesz nauczyć się z niego o semantyczności HTML i architekturze Front-end, Stworz formularz kontaktowy w HTML5, Dowiedz się czym jest HTML5 i jakie ma możliwości wykorzystując jego zasoby. 18 | 19 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Jeśli chcesz zacząć naukę HTML i CSS , to te repozytorium jest dla ciebie. Znajdziesz w nim pliki, które pomogą ci w ulepszeniu swoich umiejętności jak i poznaniu podstaw. 20 | 21 | - [HTML5 Boilerplate](https://github.com/h5bp/html5-boilerplate) - HTML5 Boilerplate to profesjonalny front-end'owy szablon do szybkiego tworzenia, przebudowywania, oraz adaptowania aplikacji webowych oraz witryn internetowych. 22 | 23 | #### Zasoby CSS 24 | 25 | 26 | - [Airbnb CSS / Sass Styleguide](https://github.com/airbnb/css) - Kompletny przewodnik po stylach od Airbnb na temat formatowania CSS i Sass. 27 | 28 | - [Awesome CSS learning](https://github.com/micromata/awesome-css-learning) - Zernkij na zasoby CSS , pomogą ci one w twojej przygodzie z programowaniem. Dowiedz się więcej o o animacjach, zmiennych CSS, układzie strony, jednostce CSS i nie tylko. 29 | 30 | - [Awesome CSS Grid](https://github.com/valentinogagliardi/awesome-css-grid) - Dowiedz się o gridzie (siatce) CSS i o tym, jak możesz ją ulepszyć dzięki niesamowitym darmowym zasobom. 31 | 32 | - [Awesome Tailwind Css](https://github.com/aniftyco/awesome-tailwindcss) - Dowiedz się więcej, przeglądaj i korzystaj z niesamowitych zasobów CSS Tailwind, narzędzi, rozszerzeń IDE, szablonów, motywów i nie tylko. 33 | 34 | - [Design resources for developers](https://github.com/bradtraversy/design-resources-for-developers) - To świetne repozytorium GitHub, aby uzyskać wszystkie zasoby potrzebne do dobrego wyglądu witryny. Zbiór witryn, w których można pobrać kolory, czcionki, grafikę interfejsu użytkownika, ikony, interfejs użytkownika React, interfejs Vue i nie tylko. 35 | 36 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - Repozytorium zawiera niesamowite zasoby na temat CSS, ale także HTML. Repozytorium zawiera zasoby takie jak: What the Heck Is CSS Specificity? , Architektury CSS: nowe najlepsze praktyki, najgorsze praktyki CSS, techniki CSS, bez których nie możesz żyć i nie tylko, w skrócie wsyzstko o CSS. 37 | 38 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Jak wspomniałem wyżej. Repozytorium ma świetne zasoby dla Html5, dlatego możesz również nauczyć się technologii sass, flexbox, grid i nie tylko. 39 | 40 | - [Learning Resource Roadmap - (Front-End Development)](https://github.com/devcenter-square/Learning-Resource-Path-Front-End) - Droga wypełniona zasobami HTML, CSS i Javascript oraz zabawnymi projektami, które pomogą Ci się uczyć. 41 | 42 | - [Web Dev Resources](https://github.com/mpara0/webdev-resources/blob/master/README.md) - To jest bardzo obszerne repozytorium, w którym można dowiedzieć się wszystkiego o najlepszych zasobach w tworzeniu i projektowaniu stron internetowych! 43 | 44 | [100 Days of Code - Front End](https://github.com/nas5w/100-days-of-code-frontend) - Repozytorium wypełnione zasobami przeprowadzającymi cię przez słynny "100 Days of code challenge- front end edition"! 45 | 46 | 47 | #### Repozytoria Javascript 48 | 49 | [Airbnb Javscript Style Guide](https://github.com/airbnb/javascript) - Kompletny kompleksowy przewodnik po nauce i prawidłowym stylizowaniu Javascript. 50 | 51 | - [Awesome JS](https://github.com/serhiisol/awesome-js) - Dzięki temu repozytorium możesz uzyskać zasoby i samouczki dla frameworków JavaScript, takich jak Node Js, Angular Js, React Js, a także podstawowe zasoby JavaScript. 52 | 53 | - [Awesome Javascript](https://github.com/sorrycc/awesome-javascript) - Dowiedz się o silnikach tworzenia szablonów, wizualizacji danych, programowaniu reaktywnym, RegExp, API i nie tylko. 54 | 55 | - [Awesome Javascript Learning](https://github.com/micromata/awesome-javascript-learning) - To repozytorium zawiera listę tylko zasobów JavaScript, która obejmuje: bezpłatne ebooki Js, blogi, filmy, zasoby związane z DOM, zasoby Node Js i nie tylko. 56 | 57 | - [Javascript Stuff](https://github.com/ahfarmer/javascriptstuff-db) - To repozytorium ma niesamowite zasoby dla zasobów React z witryną internetową, aby łatwo uzyskać je w jednym miejscu. Możesz uzyskać projekty startowe React, generatory witryn statycznych, samouczki dotyczące reagowania, narzędzia programistyczne i nie tylko. 58 | 59 | - [You Don't Know JS](https://github.com/getify/You-Dont-Know-JS) - Dogłębny kurs w świecie Javascript. 60 | 61 | 62 | #### Repozytoria Vue JS 63 | 64 | - [Awesome Vue Resources](https://github.com/vuejs/awesome-vue) - To bardzo popularne repozytorium Github jest pełne niesamowitych zasobów vue.js. Ma wszystko i więcej dla kogoś, kto chce opanować vue.js. Od samouczków, podcastów, dokumentacji po pełne projekty, fragmenty kodu itp. 65 | 66 | - [Vuejs Resources](https://github.com/gliterd/vuejs-resources) - To repozytorium Github zawiera cenne zasoby vue.js. Zawiera samouczki, dokumentację, biblioteki i wtyczki do narzędzi programistycznych. 67 | 68 | #### Repozytoria React JS 69 | 70 | - [Awesome React Resources](https://github.com/brillout/awesome-react-components) - To niesamowite repozytorium Github ma świetne zasoby, które obejmują ekosystem React. Możesz rozwidlić lub oznaczyć gwiazdą, przyda się to w następnym projekcie. Repozytorium obejmuje: narzędzia do reagowania, zasoby ogólne reagowania, społeczność reagowania, place zabaw online w reakcji i samouczki dotyczące reakcji. 71 | 72 | - [Useful React Resources]() - To niesamowite repozytorium Github ma świetne zasoby, które obejmują ekosystem React. Możesz rozwidlić lub oznaczyć gwiazdą, przyda się to w następnym projekcie. Repozytorium obejmuje: narzędzia do reagowania, zasoby ogólne reagowania, społeczność reagowania, place zabaw online w reakcji i samouczki dotyczące reakcji. 73 | 74 | #### Repozytoria Node JS 75 | 76 | - [Node JS resources](https://github.com/sindresorhus/awesome-nodejs) - Uzyskaj więcej zasobów Node Js z narzędzi wiersza polecenia, narzędzi do tworzenia, tworzenia szablonów, przepływu sterowania, sieci, sprawdzania poprawności danych, samouczków i nie tylko. 77 | 78 | - [ Intro to JavaScript (Node.js) ](https://github.com/microsoft/beginners-intro-javascript-node) - Przewodnik dla początkujących po Node.js od Microsoft! 79 | 80 | - [ Node.js Best Practices](https://github.com/goldbergyoni/nodebestpractices) - Repozytorium pełne najlepszych praktyk, o których należy pamiętać podczas pisania Node.js. 81 | 82 | 83 | 84 | #### Repozytoria Deno 85 | - [DBirb simple API](https://github.com/dergyitheron/dbirb-sqlite-deno) - To jest naprawdę proste API dla SQLite, które jest lokalną bazą danych opartą na plikach. Jest prosty w użyciu i do modyfikacji, naprawdę prosty w zrozumieniu, jak to działa. Napisane na maszynie w Deno (alternatywa dla NodeJS) 86 | 87 | 88 | #### Pozostałe repozytoria 89 | 90 | Poniżej znajdują się repozytoria, które mają różne zasoby dla wielu języków programowania. 91 | 92 | - [Awesome Awesomeness](https://github.com/bayandin/awesome-awesomeness) - Uzyskaj zasoby dla wszystkich języków programowania i poznaj vim, zasoby Linuksa, przewodniki po stylach, zabezpieczenia bezserwerowe, Internet rzeczy (IoT), DevOps, wzorce projektowe i nie tylko. Lista jest nieskończona, sprawdź repozytorium. 93 | 94 | - [Awesome Learning Resources](https://github.com/lauragift21/awesome-learning-resources) - Jeśli chcesz uzyskać zasoby dotyczące Twilio, TensorFlow, TypeScript, uczenia maszynowego, Ruby on Rails, JavaScript i nie tylko. To te repozytorium pomoże ci w tym. 95 | 96 | - [Algo Wiki](https://github.com/vicky002/AlgoWiki) - To jest jak repozytorium Wikipedii dla prawie wszystkich języków programowania, takich jak c ++, python, Javascript, Rust, PHP, Java i nie tylko. Możesz także uzyskać algorytmy, uczenie maszynowe, programowanie konkurencyjne i nie tylko. 97 | 98 | - [Front-end checklist](https://github.com/thedaviddias/Front-End-Checklist) - To repozytorium zawiera listę kontrolną czynności, które należy wykonać przed uruchomieniem witryny. Obejmuje zasoby do sprawdzania wydajności witryny, dostępności, SEO i nie tylko. 99 | 100 | - [Free for devs](https://github.com/ripienaar/free-for-dev) - Otrzymasz niesamowite zasoby, które pomogą Ci tworzyć witryny internetowe od podstaw. Przykłady: narzędzia dla zespołów i współpracy, CI i CD, testowanie, bezpieczeństwo i PKI, system zarządzania i inne. 101 | 102 | - [Front-end resources](https://github.com/RitikPatni/Front-End-Web-Development-Resources#table-of-contents) - To niesamowite repozytorium ma niesamowite zasoby CSS, platformy do nauki kodu, kanały YouTube, które należy obserwować, blogi do obserwowania i rozszerzenie VsCode, które można zainstalować, aby ułatwić sobie życie. 103 | 104 | - [List](https://github.com/jnv/lists) - Świetne repozytorium do nauki tworzenia stron internetowych na głębszym poziomie. Zawiera szeroką listę zasobów dotyczących wywiadów z programistami front-end, firm, do których można łatwo się ubiegać, zasobów BEM, zasobów edukacyjnych ES6, zasobów Blockchain i kryptowalut i nie tylko. 105 | 106 | ### Repozytoria Flask 107 | 108 | - [Awesome Flask](https://github.com/humiaozuzu/awesome-flask) - Wyselekcjonowana lista niesamowitych zasobów i wtyczek Flask. 109 | 110 | ### Jak pomóć i być częścią ekipy 111 | 112 | Zatwierdzamy wszystkie pożyteczne zmiany. Prosze przeczytaj to [Contribution guidelines for steps to take](https://github.com/muchirijane/learning-code-through-github-repos/blob/main/CONTRIBUTING.md) aby przejść pomyślnie Pull request. 113 | 114 | ## Dziękujemy za twój wkład w ten projekt 115 | 116 | 117 | 118 | 119 | 126 | 133 | 140 | 147 | 154 | 161 | 162 | 169 | 176 |
120 | 121 | muchirijane 122 |
123 | Jane Tracy Muthoni 124 |
125 |
127 | 128 | Hackerbone 129 |
130 | Sitaraman S 131 |
132 |
134 | 135 | trivedidhruvil9 136 |
137 | Dhruvil Trivedi 138 |
139 |
141 | 142 | MicheleMarschner 143 |
144 | Michele Marschner 145 |
146 |
148 | 149 | viraldevpb 150 |
151 | Prathamesh Borse 152 |
153 |
155 | 156 | d02d33pak 157 |
158 | Deepak Talan 159 |
160 |
163 | 164 | leaggg 165 |
166 | Lea 167 |
168 |
170 | 171 | GriffinMLN 172 |
173 | GriffinMLN 174 |
175 |
177 | 178 | -------------------------------------------------------------------------------- /Translation Portuguese/README-ptbr.md: -------------------------------------------------------------------------------- 1 | ![hacktoberfest badge](https://img.shields.io/badge/%F0%9F%94%A5-hacktoberfest-blue) ![license badge](https://img.shields.io/badge/%E2%9C%94%20license-MIT-green) ![open-source badge](https://img.shields.io/badge/%F0%9F%90%B1%E2%80%8D%F0%9F%92%BB-Open--Source-orange) 2 | 3 | # Aprendendo a codar através de repositórios no GitHub 4 | 5 | Há incríveis recursos que estão disponíveis para novatos na codificação para aprenderem e desenvolverem suas habilidades. Mas eu gostaria de compartilhar alguns repositórios do GitHub que você pode adicionar para ter mais recursos na sua jornada de código. 6 | 7 | Git-Hub-Pic 8 |
9 |
10 | 11 | #### Ferramentas HTML 12 | 13 | - [Awesome Html5 resources](https://github.com/diegocard/awesome-html5) - Esse é um repositório criado com todas as ferramentas do HTML5 que você precisa. Você vai aprender sobre acessibilidade, semântica, gerenciamento DOM, aplicativos da web progressivos, livros de HTML e mais. 14 | 15 | - [Html list resources](https://github.com/gloparco/Master-List-of-HTML5-JS-CSS-Resources/blob/master/html.md) - Esse repositório tem incríveis ferramentas HTML onde você pode achar links de livros sobre HTML5 para te ajudarem. 16 | 17 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - O repositório tem incríveis ferramentas HTML e CSS. Você pode aprender coisas como semântica HTML e arquitetura front-end, criar um formulário em HTML5, o que o HTML5 é capaz, ferramenta, e recursos e ainda mais recursos. 18 | 19 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Se você está aprendendo ou no começo com HTML e CSS, esse repositório será útil. Tem recursos que vão te ajudar a alavancar suas habilidades desde o básico. 20 | 21 | #### Ferramentas CSS 22 | 23 | - [Awesome CSS learning](https://github.com/micromata/awesome-css-learning) - Dar uma olhada nessas ferramentas CSS vão te ajudar na sua jornada de codificação. Você saberá tudo sobre animações, variáveis CSS, layouts, CSS unit, e mais. 24 | 25 | - [Awesome CSS Grid](https://github.com/valentinogagliardi/awesome-css-grid) - Aprenda mais sobre CSS grid e como você pode aproveitar ferramentas incríveis e gratuitas. 26 | 27 | - [Awesome Tailwind Css](https://github.com/aniftyco/awesome-tailwindcss) - Aprenda como visualizar e usar incríveis ferramentas com o Tailwind CSS, recursos, extensões para IDE, templates, temas e muito mais... 28 | 29 | - [Design resources for developers](https://github.com/bradtraversy/design-resources-for-developers) - Esse é um ótimo repositório para todas as ferramentas que você precisar para que seu website fique ótimo. Uma coleção de sites onde você pode ter cores, fontes, gráficos UI, ícones, React UI, Vue UI e mais... 30 | 31 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - Esse repositório tem incríveis ferramentas CSS, e HTML também. O repositório tem ferramentas como: O que raios é especificidade em CSS? Arquiteturas CSS; Novas Boas Práticas, As piores práticas CSS, Técnicas CSS que você não pode mais viver sem... 32 | 33 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Como eu mencionei anteriormente, tem incríveis recursos para HTML5, onde você pode aprender sobre SASS, flexbox, grid e mais... 34 | 35 | #### Repositórios Javascript 36 | 37 | - [Awesome JS](https://github.com/serhiisol/awesome-js) - Com esse repositório, você pode ter recursos e tutoriais para frameworks Javascript como o Node JS, Angular JS, Angular JS e também para o Javascript tradicional. 38 | 39 | - [Awesome Javascript](https://github.com/sorrycc/awesome-javascript) - Saiba mais sobre Engenharia de Templates, Visualização de dados, Programação Reativa, RegExp, API e mais... 40 | 41 | - [Awesome Javascript Learning](https://github.com/micromata/awesome-javascript-learning) - Esse repositório tem uma lista apenas com recursos Javascript que inclui: Ebooks JS gratuitos, blogs, vídeos, recursos relacionados a DOM, recursos Node JS, e mais. 42 | 43 | - [Javascript Stuff](https://github.com/ahfarmer/javascriptstuff-db) - Esse repositório tem incríveis recursos para React, através de um website super simples de usar. Você pode encontrar projetos iniciantes de React, geradores de sites estáticos, tutoriais de react, ferramentas de desenvolvedores e mais. 44 | 45 | #### Repositórios Vue JS 46 | 47 | - [Awesome Vue Resources](https://github.com/vuejs/awesome-vue) - Esse conhecido repositório é um pacote com incríveis ferramentas para vue.js. Tem tudo e muito mais para alguém que precisar ser master em vue.js. Desde tutoriais, podcasts, documentações para projetos completos, code snippets, etc.. 48 | 49 | - [Vuejs Resources](https://github.com/gliterd/vuejs-resources) - Esse repositório tem válidos recursos de vue.js. Tem tutoriais, documentações, bibliotecas e plugins para ferramentas de desenvolvedores. 50 | 51 | #### Repositórios React JS 52 | 53 | - [Awesome React Resources](https://github.com/brillout/awesome-react-components) - Esse repositório tem recursos incriveís que incluem o ecossistema react. Você pode dar um fork ou estrela pois ele será útil no seu próximo projeto. Esse repositório inclui: ferramentas react, Recursos gerais de react, comunidade, playgrounds online e tutoriais. 54 | 55 | - [Useful React Resources](https://github.com/muchirijane/learning-code-through-github-repos/blob/main) - Esse repositório tem recursos incriveís que incluem o ecossistema react. Você pode dar um fork ou estrela pois ele será útil no seu próximo projeto. Esse repositório inclui: ferramentas react, Recursos gerais de react, comunidade, playgrounds online e tutoriais. 56 | 57 | #### Repositórios Node Js 58 | 59 | - [Node JS resources](https://github.com/sindresorhus/awesome-nodejs) - Tenha mais recursos para o Node Js, desde utilitários de linhas de comando, ferramentas de construção, templates, controle de versão, network, validação de dados, tutoriais, e mais. 60 | 61 | #### Repositórios para todas 62 | 63 | Esses são repositórios que possuem vários recursos para múltiplas linguagens de programação. 64 | 65 | - [Awesome Awesomeness](https://github.com/bayandin/awesome-awesomeness) - Tenha recursos para todas as linguagens de programação e saiba mais sobre vim, ferramentas para Linux, guias de estilo, Segurança Serverless, Internet das Coisas (IoT), DevOps, Design Patterns e mais. A lista é infinita, cheque o repositório! 66 | 67 | - [Awesome Learning Resources](https://github.com/lauragift21/awesome-learning-resources) - Se você quer ferramentas para Twilio, TensorFlow, TypeScript, Machine Learning, Ruby on Rails, Javascript e mais, esse repositório vai te ajudar. 68 | 69 | - [Algo Wiki](https://github.com/vicky002/AlgoWiki) - Esse respositório é como uma enciclopédia com todas as linguagens de programação, como C++, Python, Javascript, Rust, PHP, Java, e mais. Você também pode encontrar sobre algoritmos, machine learning, competições de programação e mais. 70 | 71 | - [Front-end checklist](https://github.com/thedaviddias/Front-End-Checklist) - Esse repositório tem uma checklist com passos que você deve seguir para ter uma boa performance no seu webiste. Isso inclui ferramentas que podem checar sua acessibilidade, SEO e mais. 72 | 73 | - [Free for devs](https://github.com/ripienaar/free-for-dev) - Você pode ter incríveis ferramentas para te ajudar a construir seus websites do começo. Exemplos: Ferramentas para Teams e Colaboradores, CI and CD, Testes, Segurança e PKI, Gerenciamento de sistema, e mais... 74 | 75 | - [Front-end resources](https://github.com/RitikPatni/Front-End-Web-Development-Resources#table-of-contents) - Esse incrível repositório tem ferramentas de CSS, plataformas para aprender códigos, canais do Youtube que você deve seguir, blogs para acompanhar, e extensões VSCode para instalar e tornar sua vida mais fácil. 76 | 77 | - [List](https://github.com/jnv/lists) - Um ótimo repositório para aprender a desenvolver aplicações web de alto nível. Tem uma extensa lista com recursos de desenvolvimento front-end, companias que você pode aplicar facilmente, recursos BEM, ferramentas de aprendizado de ES6, Blockchain e ferramentas de cryptocurrency e mais... 78 | 79 | ### Repositórios Flask 80 | 81 | - [Aweosme Flaks](https://github.com/humiaozuzu/awesome-flask) - Uma lista com incríveis recursos Flask e plugins. 82 | 83 | ### Como contribuir 84 | Todas as contruibuições que adicionam repositórios, são importantes e úteis, e muito bem-vindas. Por favor, leia o [Contribution guidelines for steps to take](https://github.com/muchirijane/learning-code-through-github-repos/blob/main/CONTRIBUTING.md) para tem um Pull Request bem sucedido. 85 | 86 | ## Obrigada pela sua contribuição 87 | 88 | 89 | 90 | 97 | 104 | 111 | 112 |
91 | 92 | muchirijane 93 |
94 | Jane Tracy Muthoni 95 |
96 |
98 | 99 | trivedidhruvil9 100 |
101 | Dhruvil Trivedi 102 |
103 |
105 | 106 | trivedidhruvil9 107 |
108 | Ana Carolina D. Goulart 109 |
110 |
113 | 114 | 115 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /Translation Russian/README-ru.md: -------------------------------------------------------------------------------- 1 | ![hacktoberfest badge](https://img.shields.io/badge/%F0%9F%94%A5-hacktoberfest-blue) ![license badge](https://img.shields.io/badge/%E2%9C%94%20license-MIT-green) ![open-source badge](https://img.shields.io/badge/%F0%9F%90%B1%E2%80%8D%F0%9F%92%BB-Open--Source-orange) 2 | 3 | # учиться-программировать-через-github-repo 4 | 5 | Для новичков в программировании доступны удивительные ресурсы, позволяющие изучать и развивать свои навыки. Но я хотел бы поделиться некоторыми репозиториями Github, которые вы можете добавить, чтобы получить больше ресурсов в своем путешествии по программированию. 6 | 7 | Git-Hub-Pic 8 |
9 |
10 | 11 | #### Html ресурсы 12 | 13 | - [Awesome Html5 resources](https://github.com/diegocard/awesome-html5) - Этот репозиторий GitHub, создан для размещения всех необходимых ресурсов Html5. Вы узнаете о специальных возможностях, семантике, управлении DOM, прогрессивных веб-приложениях, книгах Html и многом другом. 14 | 15 | - [Html list resources](https://github.com/gloparco/Master-List-of-HTML5-JS-CSS-Resources/blob/master/html.md) - В этом репозитории есть отличные ресурсы HTML, где вы также можете получить ссылки на полезные книги по Html5. 16 | 17 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - В репозитории есть потрясающие ресурсы по HTML и CSS. Вы можете изучить такие вещи, как семантика HTML и интерфейсная архитектура, создание контактной формы в HTML5, возможности HTML5, функции и ресурсы, а также другие ресурсы. 18 | 19 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Если вы хотите изучить или начать работу с Html и CSS, этот репозиторий будет полезен. В нем есть ресурсы, которые помогут вам улучшить свои навыки по основам. 20 | 21 | - [HTML5 Boilerplate](https://github.com/h5bp/html5-boilerplate) - HTML5 Boilerplate - это профессиональный интерфейсный шаблон для создания быстрых, надежных и адаптируемых веб-приложений или сайтов. 22 | 23 | #### CSS ресурсы 24 | 25 | - [Awesome CSS learning](https://github.com/micromata/awesome-css-learning) - Ознакомьтесь с ресурсами CSS, которые помогут вам в вашем пути кодирования. Узнайте все об анимации, переменных CSS, макете, модуле CSS и многом другом. 26 | 27 | - [Awesome CSS Grid](https://github.com/valentinogagliardi/awesome-css-grid) - Узнайте о сетке CSS и о том, как можно улучшить ее с помощью потрясающих бесплатных ресурсов. 28 | 29 | - [Awesome Tailwind Css](https://github.com/aniftyco/awesome-tailwindcss) - Научитесь просматривать и использовать удивительные Tailwind CSS ресурсы, инструменты, расширения IDE, шаблоны, темы и многое другое. 30 | 31 | - [Design resources for developers](https://github.com/bradtraversy/design-resources-for-developers) - Этот отличный репозиторий на GitHub, где собраны все ресурсы, необходимые для того, чтобы ваш сайт выглядел хорошо. Коллекция сайтов, на которых вы можете получить цвета, шрифты, графику пользовательского интерфейса, значки, пользовательский интерфейс React, пользовательский интерфейс Vue и многое другое. 32 | 33 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - В репозитории есть удивительные ресурсы по CSS, но также и по HTML. В репозитории есть такие ресурсы, как: Что, черт возьми, такое специфичность CSS? , Архитектура CSS: новые передовые методы, Худшие методы CSS, методы CSS, без которых вы не можете жить, и многое другое. 34 | 35 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Как я уже говорил выше. В нем есть отличные ресурсы для Html5, но вы можете также изучить sass, flexbox, grid и многое другое. 36 | 37 | #### Javascript ресурсы 38 | 39 | - [Awesome JS](https://github.com/serhiisol/awesome-js) - С помощью этого репо вы можете получить ресурсы и учебные пособия для фреймворков Javascript, таких как Node Js, Angular Js, React Js, а также ресурсы Javascript. 40 | 41 | - [Awesome Javascript](https://github.com/sorrycc/awesome-javascript) - Узнайте о механизмах создания шаблонов, визуализации данных, Reactive программировании, RegExp, API и многом другом. 42 | 43 | - [Awesome Javascript Learning](https://github.com/micromata/awesome-javascript-learning) - В этом репо есть список только ресурсов Javascript, который включает: бесплатные электронные книги Js, блоги, видео, ресурсы, связанные с DOM, ресурсы Node Js и многое другое. 44 | 45 | - [Javascript Stuff](https://github.com/ahfarmer/javascriptstuff-db) - В этом репозитории есть удивительные ресурсы для ресурсов React с веб-сайтом, чтобы легко собрать их в одном месте. Вы можете получить стартовые проекты React, генераторы статических сайтов, руководства по реагированию, инструменты разработчика и многое другое. 46 | 47 | #### Vue JS ресурсы 48 | 49 | - [Awesome Vue Resources](https://github.com/vuejs/awesome-vue) - Этот широко популярный репозиторий Github забит потрясающими ресурсами vue.js. В нем есть все и даже больше для тех, кто хочет освоить vue.js. От учебных пособий, подкастов, документации до полных проектов, фрагментов кода и т.д. 50 | 51 | - [Vuejs Resources](https://github.com/gliterd/vuejs-resources) - В этом репозитории Github есть ценные ресурсы vue.js. В нем есть учебные пособия, документация, библиотеки и плагины для инструментов разработки. 52 | 53 | #### React JS ресурсы 54 | 55 | - [Awesome React Resources](https://github.com/brillout/awesome-react-components) - Этот удивительный репозиторий Github имеет отличные ресурсы, включая экосистему React. Вы можете форкнуть или пометить, он будет полезен в вашем следующем проекте. Репозиторий включает в себя: инструменты React, общие ресурсы React, сообщество React, игровые площадки React Online и руководства по React. 56 | - [Useful React Resources]() - Этот удивительный репозиторий Github имеет отличные ресурсы, включая экосистему React. Вы можете форкнуть или пометить, он будет полезен в вашем следующем проекте. Репозиторий включает в себя: React инструменты, React общие ресурсы, React сообщество, React Online игровые площадки и React учебные пособия. 57 | 58 | #### Node Js ресурсы 59 | 60 | - [Node JS resources](https://github.com/sindresorhus/awesome-nodejs) - Получите больше ресурсов Node Js из утилит командной строки, инструментов сборки, шаблонов, потока управления, сети, проверки данных, руководств и т.д. 61 | 62 | #### Все в одном ресурсы 63 | 64 | Это репозитории, в которых есть различные ресурсы для нескольких языков программирования. 65 | 66 | - [Awesome Awesomeness](https://github.com/bayandin/awesome-awesomeness) - Получите ресурсы для всех языков программирования и узнайте о vim, ресурсах Linux, руководствах по стилям, бессерверной безопасности, Интернете вещей (IoT), DevOps, шаблонах проектирования и многом другом. Список бесконечен, посмотрите репо. 67 | 68 | - [Awesome Learning Resources](https://github.com/lauragift21/awesome-learning-resources) - Если вы хотите получить ресурсы по Twilio, TensorFlow, TypeScript, Machine Learning, Ruby on Rails, Javascript и т.д. Этот репозиторий вам поможет. 69 | 70 | - [Algo Wiki](https://github.com/vicky002/AlgoWiki) - Это похоже на репозиторий Википедии почти для всех языков программирования, таких как c ++, python, Javascript, Rust, PHP, Java и другие. Вы также можете получить алгоритмы, машинное обучение, соревновательное программирование и многое другое. 71 | 72 | - [Front-end checklist](https://github.com/thedaviddias/Front-End-Checklist) - В этом репозитории есть контрольный список шагов, которые вы должны предпринять перед запуском своего сайта. Он включает ресурсы для проверки производительности вашего сайта, доступности, SEO и т.д. 73 | 74 | - [Free for devs](https://github.com/ripienaar/free-for-dev) - Вы получите потрясающие ресурсы, которые помогут вам создавать веб-сайты с нуля. Примеры: инструменты для команд и совместной работы, CI и CD, тестирование, безопасность и PKI, система управления и многое другое. 75 | 76 | - [Front-end resources](https://github.com/RitikPatni/Front-End-Web-Development-Resources#table-of-contents) - В этом замечательном репозитории есть потрясающие ресурсы CSS, платформы для изучения кода, каналы YouTube, за которыми вы должны следить, блоги, за которыми нужно следить, и расширение VsCode, которое нужно установить, чтобы облегчить вашу жизнь. 77 | 78 | - [List](https://github.com/jnv/lists) - Отличный репозиторий для изучения веб-разработки на более глубоком уровне. В нем есть широкий список ресурсов для собеседований с интерфейсными разработчиками, компаний, к которым вы можете легко обратиться, ресурсы BEM, ресурсы обучения ES6, ресурсы Blockchain и криптовалюты и многое другое. 79 | 80 | ### Flask ресурсы 81 | 82 | - [Awesome Flask](https://github.com/humiaozuzu/awesome-flask) - Кураторский список замечательных ресурсов и плагинов Flask. 83 | 84 | ### Как внести свой вклад 85 | 86 | Приветствуются все вклады в добавление полезных репозиторий Github с важными и полезными ресурсами. Пожалуйста, прочитайте [Contribution guidelines for steps to take](https://github.com/muchirijane/learning-code-through-github-repos/blob/main/CONTRIBUTING.md) чтобы выполнить успешный Pull запрос. 87 | 88 | ## Thank you for your contribution 89 | 90 | 91 | 92 | 93 | 100 | 107 | 114 | 121 | 128 | 135 | 136 | 143 |
94 | 95 | muchirijane 96 |
97 | Jane Tracy Muthoni 98 |
99 |
101 | 102 | Hackerbone 103 |
104 | Sitaraman S 105 |
106 |
108 | 109 | trivedidhruvil9 110 |
111 | Dhruvil Trivedi 112 |
113 |
115 | 116 | MicheleMarschner 117 |
118 | Michele Marschner 119 |
120 |
122 | 123 | viraldevpb 124 |
125 | Prathamesh Borse 126 |
127 |
129 | 130 | d02d33pak 131 |
132 | Deepak Talan 133 |
134 |
137 | 138 | leaggg 139 |
140 | Lea 141 |
142 |
144 | 145 | -------------------------------------------------------------------------------- /Translation Spanish/README-es.md: -------------------------------------------------------------------------------- 1 | ![hacktoberfest badge](https://img.shields.io/badge/%F0%9F%94%A5-hacktoberfest-blue) ![license badge](https://img.shields.io/badge/%E2%9C%94%20license-MIT-green) ![open-source badge](https://img.shields.io/badge/%F0%9F%90%B1%E2%80%8D%F0%9F%92%BB-Open--Source-orange) 2 | 3 | # aprendizaje-de-código-atraves-de-repositorios-de-github 4 | 5 | Hay recursos asombrosos que están disponibles para que los novatos en el código aprendan y desarrollen sus habilidades. Pero me gustaría compartir algunos repositorios de Github que puedes agregar a tu aprendizaje para obtener más recursos en tu viaje de codificación. 6 | 7 | Git-Hub-Pic 8 |
9 |
10 | 11 | #### Recursos de HTML 12 | 13 | - [Awesome Html5 resources](https://github.com/diegocard/awesome-html5) - Este es un repositorio de GitHub creado para colocar todos los recursos de Html5 que necesitarías. Aprenderás sobre accesibilidad, semántica, administración de DOM, aplicaciones web progresivas, libros Html y más. 14 | 15 | - [Html list resources](https://github.com/gloparco/Master-List-of-HTML5-JS-CSS-Resources/blob/master/html.md) - Este repositorio tiene recursos HTML increíbles donde también puedes obtener enlaces a libros Html5 útiles. 16 | 17 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - El repositorio tiene recursos asombrosos sobre HTML y CSS. Puedes aprender cosas como la semántica HTML y la arquitectura de front-end, crear un formulario de contacto en HTML5, funciones y recursos de HTML5, y más recursos. 18 | 19 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Si deseas aprender o comenzar con Html y CSS, este repositorio será útil. Tiene recursos que te ayudarán a mejorar tus habilidades en los conceptos básicos. 20 | 21 | - [HTML5 Boilerplate](https://github.com/h5bp/html5-boilerplate) - HTML5 Boilerplate es un front-end template profesional para crear rapidas, robustas y adaptables aplicaciones webs or paginas. 22 | 23 | #### Recursos de CSS 24 | 25 | - [Airbnb CSS / Sass Styleguide](https://github.com/airbnb/css) - La guia definitiva de Airbnb en como formatear tu CSS y SASS. 26 | 27 | - [Awesome CSS learning](https://github.com/micromata/awesome-css-learning) - Echa un vistazo a los recursos de CSS que te ayudarán en tu viaje de codificación. Conoce todo sobre animaciones, variables CSS, diseño, unidad CSS y más. 28 | 29 | - [Awesome CSS Grid](https://github.com/valentinogagliardi/awesome-css-grid) - Aprende sobre la cuadrícula CSS y cómo puedes mejorar con increíbles recursos gratuitos. 30 | 31 | - [Awesome Tailwind Css](https://github.com/aniftyco/awesome-tailwindcss) - Aprende a ver y utilizar increíbles recursos, herramientas, extensiones IDE, plantillas, temas y más de Tailwind CSS. 32 | 33 | - [Design resources for developers](https://github.com/bradtraversy/design-resources-for-developers) - Este es un excelente repositorio de GitHub para obtener todos los recursos que necesitas para que tu sitio web se vea bien. Una colección de sitios donde puedes obtener colores, fuentes, gráficos de interfaz de usuario, íconos, React UI, Vue UI y más. 34 | 35 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - El repositorio tiene recursos increíbles sobre CSS, pero también sobre HTML. El repositorio tiene recursos como: ¿Qué diablos es la especificidad CSS? , Arquitecturas CSS: nuevas mejores prácticas, las peores prácticas de CSS, técnicas de CSS sin las que no podría vivir y más. 36 | 37 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Como mencioné anteriormente. Tiene excelentes recursos para Html5, pero puedes aprender sass, flexbox, grid y más. 38 | 39 | - [Learning Resource Roadmap - (Front-End Development)](https://github.com/devcenter-square/Learning-Resource-Path-Front-End) - un roadmap lleno de recursos HTML, CSS y javascript, ademas de proyectos divertidos para aprender. 40 | 41 | - [Web Dev Resources](https://github.com/mpara0/webdev-resources/blob/master/README.md) - Esta es un sitio web para aprender todo sobre el desarrollo web y diseño. 42 | 43 | [100 Days of Code - Front End](https://github.com/nas5w/100-days-of-code-frontend) - Un repositorio lleno de recursos para guiarte a traves del challenge de 100 dias de codigo para la version de front end. 44 | 45 | #### Repositorios de Javascript 46 | 47 | - [Airbnb Javscript Style Guide](https://github.com/airbnb/javascript) - La guia definitiva para aprender y manejar correctamente Javascript. 48 | 49 | 50 | - [Awesome JS](https://github.com/serhiisol/awesome-js) - Con este repositorio, puedes obtener recursos y tutoriales para marcos de Javascript como Node Js, Angular Js, React Js y también recursos de JavaScript vanilla. 51 | 52 | - [Awesome Javascript](https://github.com/sorrycc/awesome-javascript) - Conoce los motores de plantillas, la visualización de datos, la programación reactiva, las expresiones regulares, la API y más. 53 | 54 | - [Awesome Javascript Learning](https://github.com/micromata/awesome-javascript-learning) - Este repositorio tiene una lista de solo recursos de Javascript que incluye: libros electrónicos, blogs, videos, recursos relacionados con DOM, recursos de Node Js gratuitos de Js y más. 55 | 56 | - [Javascript Stuff](https://github.com/ahfarmer/javascriptstuff-db) - Este repositorio tiene recursos increíbles para los recursos de React con un sitio web para obtenerlos fácilmente en un solo lugar. Puedes obtener proyectos de inicio de React, generadores de sitios estáticos, tutoriales de React, herramientas de desarrollo y más. 57 | 58 | - [You Don't Know JS](https://github.com/getify/You-Dont-Know-JS) - Curso rapido para aprender Javascript. 59 | 60 | - [30 days of JavaScript](https://github.com/Asabeneh/30-Days-Of-JavaScript) - 30 dias del challenge para programar en javascript paso a paso para aprender este lenguaje. Este desafio puede tardar mas de 100 dias, asi que por favor hazlo a tu propio ritmo. 61 | 62 | - [JavaScript algorithms](https://github.com/trekhleb/javascript-algorithms)- 📝 Algoritmos y estructura de datos implementando Javascript con explicaciones y links para mas informacion. 63 | 64 | - [The AirBnB style guides](https://github.com/airbnb/javascript) - Gran recurso para mantener tu codigo. Esta puede ser la parte mas dificil en el momento de organizar a los developers en un proyecto. 65 | 66 | - [JavaScript Interview Questions and Answers](https://github.com/sudheerj/javascript-interview-questions) - Lista de 1000 preguntas de javascript en interview que te ayudara a estar listo. 67 | 68 | #### Repositorios de Vue JS 69 | 70 | - [Awesome Vue Resources](https://github.com/vuejs/awesome-vue) - Este repositorio de Github muy popular está repleto de recursos increíbles de vue.js. Tiene todo y más para alguien que quiera dominar vue.js. Desde tutoriales, podcasts, documentaciones hasta proyectos completos, fragmentos de código, etc. 71 | 72 | - [Vuejs Resources](https://github.com/gliterd/vuejs-resources) - Este repositorio de Github tiene valiosos recursos de vue.js. Tiene tutoriales, documentación, bibliotecas y complementos para herramientas de desarrollo. 73 | 74 | #### Repositorios de React JS 75 | 76 | - [Awesome React Resources](https://github.com/brillout/awesome-react-components) - Este increíble repositorio de Github tiene excelentes recursos que incluyen el ecosistema React. Puedes bifurcar o destacar que te será útil en tu próximo proyecto. El repositorio incluye: React tools, React General Resources, React Community, React Online Playgrounds y Tutoriales de React. 77 | 78 | - [Useful React Resources]() - Este increíble repositorio de Github tiene excelentes recursos que incluyen el ecosistema React. Puedes bifurcar o destacar que te será útil en tu próximo proyecto. El repositorio incluye: React tools, React General Resources, React Community, React Online Playgrounds y Tutoriales de React. 79 | 80 | #### Repositorios de Node JS 81 | 82 | - [Node JS resources](https://github.com/sindresorhus/awesome-nodejs) - Obtenga más recursos de Node Js de utilidades de línea de comandos, herramientas de compilación, plantillas, flujo de control, red, validación de datos, tutoriales y más. 83 | 84 | - [ Intro to JavaScript (Node.js) ](https://github.com/microsoft/beginners-intro-javascript-node) - Una guia de microsoft para principiantes en Node.JS. 85 | 86 | - [ Node.js Best Practices](https://github.com/goldbergyoni/nodebestpractices) - Un repositorio lleno de las mejores practicas para escribir codigo de Node.JS adecuado. 87 | 88 | #### Repositorio de Deno 89 | 90 | - [DBirb simple API](https://github.com/dergyitheron/dbirb-sqlite-deno) - Una simple API con SQLite. Es de uso super facil de sguir y entender como funciona. Escrito en typescript con Deno(Alternativa a Node.JS). 91 | 92 | #### Todo en un solo repositorio 93 | 94 | Estos son repositorios que tienen varios recursos para múltiples lenguajes de programación. 95 | 96 | - [Awesome Awesomeness](https://github.com/bayandin/awesome-awesomeness) - Obtenga recursos para todos los lenguajes de programación y conozca vim, recursos de Linux, guías de estilo, seguridad sin servidor, Internet de las cosas (IoT), DevOps, patrones de diseño y más. La lista es interminable, echa un vistazo al repositorio. 97 | 98 | - [Awesome Learning Resources](https://github.com/lauragift21/awesome-learning-resources) - Si desea obtener recursos sobre Twilio, TensorFlow, TypeScript, aprendizaje automático, Ruby on Rails, Javascript y más. Este repositorio te ayudará. 99 | 100 | - [Algo Wiki](https://github.com/vicky002/AlgoWiki) - Es como un repositorio de Wikipedia para casi todos los lenguajes de programación, como c ++, python, Javascript, Rust, PHP, Java y más. También puede obtener algoritmos, aprendizaje automático, programación competitiva y más. 101 | 102 | - [Front-end checklist](https://github.com/thedaviddias/Front-End-Checklist) - Este repositorio tiene una lista de verificación de los pasos que debes seguir antes de iniciar tu sitio web. Incluye recursos para verificar el rendimiento, la accesibilidad, el SEO y más de su sitio web. 103 | 104 | - [Free for devs](https://github.com/ripienaar/free-for-dev) - Otendrás recursos increíbles para ayudarlo a crear sitios web desde cero. Ejemplos: herramientas para equipos y colaboración, CI y CD, pruebas, seguridad y PKI, sistema de gestión y más. 105 | 106 | - [Front-end resources](https://github.com/RitikPatni/Front-End-Web-Development-Resources#table-of-contents) - Este increíble repositorio tiene increíbles recursos de CSS, plataformas para aprender código, canales de YouTube que debe seguir, blogs para seguir y extensión VsCode para instalar para hacer su vida más fácil. 107 | 108 | - [List](https://github.com/jnv/lists) - Un gran repositorio para aprender el desarrollo web a un nivel más profundo. Tiene una amplia lista de recursos de entrevistas con desarrolladores front-end, empresas a las que puede postularse fácilmente, recursos de BEM, recursos de aprendizaje de ES6, recursos de Blockchain y criptomonedas, y más. 109 | 110 | ### Repositorios de Flask 111 | 112 | - [Awesome Flask](https://github.com/humiaozuzu/awesome-flask) - Una lista seleccionada de increíbles recursos y complementos de Flask. 113 | 114 | ### ¿Cómo contribuir? 115 | 116 | Todas las contribuciones para agregar repositorios Github útiles con recursos importantes y útiles son bienvenidas. Lea las [pautas de contribución para conocer los pasos a seguir](https://github.com/muchirijane/learning-code-through-github-repos/blob/main/CONTRIBUTING.md) para lograr un pull request exitoso. 117 | 118 | ## Gracias por tu contribución 119 | 120 | 121 | 122 | 123 | 130 | 137 | 144 | 151 | 158 | 165 | 166 | 173 |
124 | 125 | muchirijane 126 |
127 | Jane Tracy Muthoni 128 |
129 |
131 | 132 | Hackerbone 133 |
134 | Sitaraman S 135 |
136 |
138 | 139 | trivedidhruvil9 140 |
141 | Dhruvil Trivedi 142 |
143 |
145 | 146 | MicheleMarschner 147 |
148 | Michele Marschner 149 |
150 |
152 | 153 | viraldevpb 154 |
155 | Prathamesh Borse 156 |
157 |
159 | 160 | d02d33pak 161 |
162 | Deepak Talan 163 |
164 |
167 | 168 | leaggg 169 |
170 | Lea 171 |
172 |
174 | 175 | 176 | 177 | 178 | -------------------------------------------------------------------------------- /translation/README.de.md: -------------------------------------------------------------------------------- 1 | ![hacktoberfest badge](https://img.shields.io/badge/%F0%9F%94%A5-hacktoberfest-blue) ![license badge](https://img.shields.io/badge/%E2%9C%94%20license-MIT-green) ![open-source badge](https://img.shields.io/badge/%F0%9F%90%B1%E2%80%8D%F0%9F%92%BB-Open--Source-orange) 2 | 3 | # Lerne Programmieren mit GitHub Repositories 4 | 5 | Für Programmier-Anfänger gibt es tolle Ressourcen um zu lernen und ihre Programmier-Kenntnisse zu entwickeln. Hier möchte ich mit euch einige GitHub Repos teilen, die euch auf eurem Coding Weg helfen können. 6 | 7 | Git-Hub-Pic 8 | 9 |
10 | 11 |
12 | 13 | #### HTML Ressourcen 14 | 15 | - [Awesome Html5 resources](https://github.com/diegocard/awesome-html5) - Dieses GitHub Repository beinhaltet alle HTML5 Ressourcen, die du benötigst. Lerne mehr über accessibility (Barrierefreiheit), Semantics, DOM Management, Progressive web apps, Bücher über HTML und mehr. 16 | 17 | - [Html list resources](https://github.com/gloparco/Master-List-of-HTML5-JS-CSS-Resources/blob/master/html.md) - Dieser Link führt zu lehrreichen HTML Ressourcen, wo sich auch weiterführende Links zu HTML Büchern befinden. 18 | 19 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - Das Repository enthält Inhalte über HTML und CSS. Erfahre mehr darüber was HTML kann, darunter HTML semantics und Front-end Architektur, erstelle Kontaktformulare in HTML5 und lerne weitere Funktionen und Ressourcen kennen. 20 | 21 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Wenn du damit beginnen willst, HTML oder CSS zu lernen, wird dir dieses Repository sehr helfen. Es enthält Inhalte zu den Basics. 22 | 23 | #### CSS Ressourcen 24 | 25 | - [Awesome CSS learning](https://github.com/micromata/awesome-css-learning) - Werfe einen Blick in dieses Repository, um dich auf deinem Coding-Pfad weiterzuentwickeln. Lerne alles über Animationen, CSS Variablen, Layout, CSS Einheiten usw. 26 | 27 | - [Awesome CSS Grid](https://github.com/valentinogagliardi/awesome-css-grid) - Erfahre mehr über das CSS-Gitter und verbessere deine Kenntnisse mit frei zugänglichen Ressourcen. 28 | 29 | - [Awesome Tailwind Css](https://github.com/aniftyco/awesome-tailwindcss) - Erlerne das CSS-Framework Tailwind und verwende hilfreiche Tools, IDE Erweiterungen, Templates, Themes und mehr. 30 | 31 | - [Design resources for developers](https://github.com/bradtraversy/design-resources-for-developers) - Hier findest du alle nötigen Ressourcen, um deine Webseite professionell zu gestalten. Eine Sammlung von Seiten zu Farben, Schriftarten, UI Grafiken, Icons, React UI, Vue UI und mehr. 32 | 33 | - [Html and Css](https://github.com/zuzuleinen/html-and-css) - Beinhaltet Informationen und Erklärungen zu CSS, aber auch HTML. Erfahre mehr über CSS Spezifität, CSS Architektur - neue Best Practices, die schlechtesten CSS Angewohnheiten, CSS Techniken, ohne die man nicht leben kann und vieles mehr. 34 | 35 | - [Html5 resources](https://github.com/SirPepe/HTML5Resources) - Wurde bereits in der HTML Sektion (oben) erwähnt. Enthält jedoch auch hilfreiche Inhalte, um Sass, Flexbox oder CSS-Raster (Grid) zu erlernen. 36 | 37 | #### Javascript repos 38 | 39 | - [Awesome JS](https://github.com/serhiisol/awesome-js) - In diesem Repository findest du Ressourcen und Tutorials zu JavaScript Frameworks wie Node Js, Angular Js, React Js aber auch Vanilla JavaScript Ressourcen. 40 | 41 | - [Awesome Javascript](https://github.com/sorrycc/awesome-javascript) - Erfahre mehr über Template-Engines, Daten Visualisierung, Reactive Programming, RegExp (reguläre Ausdrücke), Api und mehr. 42 | 43 | - [Awesome Javascript Learning](https://github.com/micromata/awesome-javascript-learning) - Dieses Repository beinhaltet eine Liste nur mit JavaScript Ressourcen, darunter kostenlose JS Ebooks, Blogs und Videos zu Themen wie DOM, Node Js usw. 44 | 45 | - [Javascript Stuff](https://github.com/ahfarmer/javascriptstuff-db) - Beinhaltet den Link zu einer Webseite mit guten React-Ressourcen. Hier findest du Projekte für Beginner, statische Webseiten-Generatoren, Tutorials, Entwicklertools und mehr. 46 | 47 | #### Vue JS repos 48 | 49 | - [Awesome Vue Resources](https://github.com/vuejs/awesome-vue) - Dieses sehr beliebte GitHub Repository ist vollgepackt mit fantastischen Vue-Ressourcen. Es bietet alles und noch mehr für jemanden der Vue meistern möchte. Angefangen von Tutorials, Podcasts und Dokumentationen bis hin zu ganzen Projekten und code snippets. 50 | 51 | - [Vuejs Resources](https://github.com/gliterd/vuejs-resources) - Dieses Repository bietet wertvolle Vue Js Ressourcen. Es beinhaltet Tutorials, Dokumentationen, Bibliotheken und Plugins für Entwicklertools. 52 | 53 | #### React JS repos 54 | 55 | - [Awesome React Resources](https://github.com/brillout/awesome-react-components) - Dieses GitHub Repository bietet großartige Ressourcen über das React-Ökosystem. Fork es oder versehe es mit einem Stern, es wird dir in deinem nächsten Projekt helfen. Enthalten sind React-Tools, allg. Ressourcen zu React, die React Community, React Online Playgrounds und React Tutorials. 56 | 57 | #### Node Js repos 58 | 59 | - [Node JS resources](https://github.com/sindresorhus/awesome-nodejs) - Erhalte mehr Node Js Ressourcen u.a. zu Themen wie CommandLine Werkzeuge, Buildtools, Templating, Kontrollstruktur (Control flow), Netzwerk, Datenvalidierung, Tutorials und mehr. 60 | 61 | #### "Alles in Einem"-Repos 62 | 63 | Diese Repos beinhalten verschiedene Ressourcen für mehrere Programmiersprachen. 64 | 65 | - [Awesome Awesomeness](https://github.com/bayandin/awesome-awesomeness) - Erhalte Ressourcen zu allen Programmiersprachen und erfahre mehr über vim, Linux, Style Guides, Serverless Security, Internet of Things (IoT), DevOps, Entwurfsmuster (design patterns) und mehr. Die Liste ist endlos, schau's dir selbst an. 66 | 67 | - [Awesome Learning Resources](https://github.com/lauragift21/awesome-learning-resources) - Hier erhältst du Ressourcen zu Twilio, TensorFlow, TypeScript, Machine learning, Ruby on Rails, Javascript, usw. 68 | 69 | - [Algo Wiki](https://github.com/vicky002/AlgoWiki) - Dies ist wie ein wikipedia Repository für fast alle Programmiersprachen wie C++, python, Javascript, Rust, PHP, Java usw. Du erfährst mehr über Algorithmen, machine learning, competitive programming und mehr. 70 | 71 | - [Front-end checklist](https://github.com/thedaviddias/Front-End-Checklist) - Dieses Repository enthält eine Checkliste für den Launch deiner ersten Webseite. Es enthält Ressourcen zu Webseiten-Performance, Barrierefreiheit (accessibility), SEO und mehr. 72 | 73 | - [Free for devs](https://github.com/ripienaar/free-for-dev) - Erhalte Ressourcen, die dir bei der Erstellung deiner Webseite helfen. Z.B. Werkzeuge für Teams und Kollaboration, CI und CD, Testing, Security and PKI, Management System, und mehr. 74 | 75 | - [Front-end resources](https://github.com/RitikPatni/Front-End-Web-Development-Resources#table-of-contents) - Hier findest du hilfreiche CSS Ressourcen, Lernplattformen, Youtube Kanäle und Blogs, denen du folgen solltest sowie VSCode Erweiterungen, die dein Leben einfacher machen werden. 76 | 77 | - [List](https://github.com/jnv/lists) - Ein lehrreiches Repository, um Web Development auf einer tieferen Ebene zu erlernen. Es enthält eine lange Liste mit Ressourcen zu Front-end Entwickler Interviews, Unternehmen bei denen man sich bewerben kann, BEM und ES6 Lernmaterialien, Blockchain & Kryptowährung usw. 78 | 79 | ### Flask Repos 80 | 81 | - [Awesome Flask](https://github.com/humiaozuzu/awesome-flask) - Eine Liste mit großartigen Flask-Ressourcen und Plugins. 82 | 83 | ### So kannst du beitragen 84 | 85 | Alle Beiträge von GitHub Repositories mit wichtigen und lehrreichen Ressourcen sind willkommen. Bitte lies dir die [Richtlinien und next steps](https://github.com/muchirijane/learning-code-through-github-repos/blob/main/CONTRIBUTING.md) durch, um eine erfolgreiche pull request zu erstellen. 86 | 87 | ## Thank you for your contribution 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 108 | 109 | 122 | 123 | 136 | 137 |
96 | 97 | 98 | 99 | muchirijane 100 | 101 |
102 | 103 | Jane Tracy Muthoni 104 | 105 |
106 | 107 |
110 | 111 | 112 | 113 | trivedidhruvil9 114 | 115 |
116 | 117 | Dhruvil Trivedi 118 | 119 |
120 | 121 |
124 | 125 | 126 | 127 | viraldevpb 128 | 129 |
130 | 131 | Prathamesh Borse 132 | 133 |
134 | 135 |
138 | 139 | 140 | --------------------------------------------------------------------------------