├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── package.json ├── pull_request_template.md └── white_listed_sites.txt /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | node_js: 3 | - 'node' 4 | rvm: 5 | - 2.2 6 | env: 7 | - TRAVIS_NODE_VERSION="7" 8 | install: 9 | - rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION 10 | - npm install 11 | before_script: 12 | - gem install awesome_bot 13 | - npm install --global awesome-lint 14 | script: 15 | - awesome-lint 16 | - awesome_bot README.md --white-list $(paste -d, -s white_listed_sites.txt) --allow-ssl --allow-redirect 17 | 18 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at sonkengmaldini@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing Guidelines 2 | 3 | For contributions to be approved they should come in through Pull Requests (PR) that correspond to changes in the `README.md` file. 4 | 5 | Each PR MUST respect the following guidelines: 6 | 7 | - **Only one link** per PR is allowed. 8 | - Verify that the link is not already in the list. 9 | - The link can't correspond to a _YouTube channel or playlist_. These can vary over time and become difficult to review. 10 | - You should add the link in the `README.md` file using this pattern: 11 | 12 | ```text 13 | [Site name OR A simple description](url) : a simple description of the site or slogan of the site. 14 | ``` 15 | 16 | - You should add the link to the right section. No new sections are allowed at the moment. 17 | - You should also consider sorting your submission alphabetically whenever possible. 18 | 19 | If your contribution corresponds to something different (not a new link to add) from a new link, please create an [issue](./issues) before to support the case. 20 | 21 | Any Pull Request MUST adhere to the [Contributor Covenant Code of Conduct](./CODE_OF_CONDUCT.md). 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Sonkeng Maldini 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 |

2 |
3 | awesome 4 |
5 |

6 | 7 | [![Build Status](https://api.travis-ci.org/sdmg15/Best-websites-a-programmer-should-visit.svg?branch=master)](https://travis-ci.org/sdmg15/Best-websites-a-programmer-should-visit) 8 | 9 | # Best-websites-a-programmer-should-visit 10 | Some useful websites for programmers. 11 | 12 | When learning CS, there are some useful sites you must know to get always informed to do your technologies even better and learn new things. Here is a non-exhaustive list of some sites you should visit. This list will get updated as soon as I can get another link, but you can also contribute by adding those you know :wink: 13 | 14 | **Note** : [Chinese Version](https://github.com/tuteng/Best-websites-a-programmer-should-visit-zh) 15 | 16 | ## 📖 Index 17 | 53 | 54 | ## ❓ When you get stuck 55 | - [Codementor](https://www.codementor.io) : A mentorship community to learn from fellow developers via live 1:1 help and more. 56 | - [devRant](https://www.devrant.io) : Community where you can rant and release your stress 57 | - [Google](https://www.google.com) : A search engine for anything you get stuck with. 58 | - [Learn Anything](https://learn-anything.xyz) : Community curated knowledge graph of best paths for learning anything 59 | - [Quora](https://www.quora.com) : A place to share knowledge and better understand the world 60 | - [Stack Overflow](https://stackoverflow.com) : subscribe to their weekly newsletter and any other topic which you find interesting 61 | - [Stack Exchange](https://stackexchange.com/) : Stack Exchange is the combination of Stack Overflow and 170+ sites where you can get any kinds of help 62 | - [Coderanch](https://coderanch.com/) : A friendly place for programming greenhorns. Jump straight into any of our topics and light hearted discussions. Ranging from Java, Databases, Android, Programmer certification, Programming jobs and much more... 63 | 64 |
65 | ↥ Back To Top 66 |
67 | 68 | ## 📰 News 69 | - [ACM TechNews](http://technews.acm.org) : TechNews 70 | - [Stratechery](https://stratechery.com) : Stratechery by Ben Thompson 71 | - [AlternativeTo](https://alternativeto.net) : Crowdsourced software recommendations 72 | - [Ars Technica](https://arstechnica.com) : Posts unique quality articles on technology, science, politics and society. 73 | - [Better Dev Links](https://betterdev.link) : Weekly links to help you become a better developer 74 | - [Better Programming](https://medium.com/better-programming) : Featured articles for modern developers available every day 75 | - [CNET](https://www.cnet.com/news/) : Your guide to a better future! An excellent source of up-to-date tech news. 76 | - [Daily.Dev](https://daily.dev/) : A Great Chrome extension which provides recent and relevant tech articles and news 77 | - [DevOpsLinks](http://devopslinks.com) : An online community of thousands of developers and IT experts interested in DevOps 78 | - [Frontend Focus Newsletter](https://frontendfoc.us) : once-weekly roundup of the frontend news, articles and tutorials 79 | - [GSMArena.com](http://www.gsmarena.com) : news related to the latest mobile phones and android. 80 | - [Hacker News Digest](https://hndigest.com) : curated automatically, delivered as frequently as you want 81 | - [Hacker News](https://news.ycombinator.com) : news aggregator for programmers where civility is king, try a newsletter to get top news to your inbox: 82 | - [Hacker Newsletter](http://www.hackernewsletter.com) : curated by hand, delivered weekly 83 | - [Hacker Noon](https://hackernoon.com) : How hackers start their afternoons. 84 | - [High Scalability](http://highscalability.com) : Success stories of various companies on their apps, infra scaling. 85 | - [Lobsters](https://lobste.rs) : Lobsters is a technology-focused community centered around link aggregation and discussion. 86 | - [product hunt](https://www.producthunt.com) : Discover your next favorite thing 87 | - [Recode](https://www.recode.net) : Tech news that focuses on the business of Silicon Valley 88 | - [Reddit.com/r/programming](https://www.reddit.com/r/programming/) : Subreddit with aggregated tech news and articles 89 | - [Slashdot](https://slashdot.org) : News, Social news (Originally "News for Nerds. Stuff that Matters") 90 | - [StackShare](https://stackshare.io) : See what tools are popular with developers and companies and read about their technology decisions 91 | - [TechCrunch](https://techcrunch.com) : dedicated to obsessively profiling startups, reviewing new Internet products, and breaking tech news 92 | - [The DEV Community](https://dev.to) : Where programmers share ideas and help each other grow. 93 | - [The Verge](https://www.theverge.com) : More product oriented tech news 94 | - [WCCF Tech](https://wccftech.com) : curated news related to Computer Hardware, Software, and everything else in the Tech World. 95 | - [XDA](https://www.xda-developers.com) : Android Developers News 96 | - [Hashnode](https://hashnode.com/) : Hashnode is a friendly and inclusive community for software developers 97 | - [Rekt](https://rekt.news/) : A journalism related to Defi, Web3, Blockchain and security on them. 98 | - [Hackaday](https://hackaday.com) : Hacking is an art form that uses something in a way in which it was not originally intended. 99 | 100 |
101 | ↥ Back To Top 102 |
103 | 104 | ## 📚 Magazines 105 | - [MIT Technology Review](https://www.technologyreview.com/magazine/) : MIT's tech review magazine. 106 | - [Nautilus](http://nautil.us) : NewYorker for tech. 107 | - [LWN](https://lwn.net) : Weekly news coverage of opensource technologies, programming, etc. ( Originally Linux Weekly News). 108 | 109 |
110 | ↥ Back To Top 111 |
112 | 113 | ## 👶 Coding practice for beginners 114 | - [Codedex - start your coding adventure](https://www.codedex.io) : Gamify your learning experience and have fun learning how to code! 115 | - [freeCodeCamp](https://www.freecodecamp.com) : Learn to code and build projects for nonprofits. Build your full stack web development portfolio today 116 | - [Blackbird School](https://blackbird.school) : Learn to code online with our beginner-friendly platform. 117 | - [Glitch](https://glitch.com/) : Great place to play around with code in an easy-to-set-up environment. 118 | - [Reddit.com/r/dailyprogrammer](https://www.reddit.com/r/dailyprogrammer/) : interesting programming challenges where you can learn from looking at other's code, even if you are not able to solve code you can look at how others solved. 119 | - [Programming by Doing](http://programmingbydoing.com) : very good site for those who want to start with absolute basics 120 | - [CodeAbbey - a place where everyone can master programming](http://www.codeabbey.com) : Best place to begin with problems that start at the easiest and gradually increase difficulty with each problem. 121 | - [Exercism.io](http://exercism.io) : Download and solve practice problems in over 50 different languages, and share your solution with others. 122 | - [InterviewBit/Coding Interview Questions](https://www.interviewbit.com) : Gamifies the experience of practicing for your interview and includes lots of sample problems to solve. 123 | - [karan/Projects-Solutions](https://github.com/karan/Projects-Solutions) : Solutions to most of the problems in the link above 124 | - [Lod - Cloud](http://lod-cloud.net) : The Linking Open Data cloud diagram 125 | - [Cave of programming](https://caveofprogramming.com) : Learn to program, Upgrade your skills. 126 | - [Vim adventures](https://vim-adventures.com/) : Learn VIM by playing 127 | - [Learn Vimscript the Hard Way](http://learnvimscriptthehardway.stevelosh.com) : Learn Vim Script from beginning to expert. 128 | - [Programming Tasks](http://rosettacode.org/wiki/Category:Programming_Tasks) : Large collection of small programs. 129 | - [Pramp](https://www.pramp.com) : It's your turn to be the interviewer. when done, click on the swap roles button on the left 130 | - [Paqmind](http://paqmind.com) : Guides and challenges to learn programming 131 | - [Codecademy](https://www.codecademy.com) : Learn to code interactively, for free. 132 | - [Codegym](https://codegym.cc/) : It contains a Java tutorial with 1200 Java practise tasks. 133 | - [treehouse](https://teamtreehouse.com) : The fast, easy, and affordable way to build your skills. 134 | - [GeeksforGeeks](https://practice.geeksforgeeks.org) : Learn to code, Study for placement, Do competitive coding. 135 | - [edabit](https://edabit.com/challenges) : Practice coding via various small challenges. 136 | - [Learn Git Branching](https://learngitbranching.js.org) : Learn and practice git commands in an interactive way 137 | - [Oh Shit, Git!?!](https://ohshitgit.com/) : Cheat sheet to get yourself out of bad git situations 138 | - [The Odin Project](https://www.theodinproject.com/home) : The Odin Project provides a free open source coding curriculum that can be taken entirely online. 139 | - [Udemy](https://www.udemy.com/) : Whether you want to learn or to share what you know, you’ve come to the right place. As a global destination for online learning, we connect people through knowledge. 140 | - [Scaler](https://www.scaler.com/topics/) : A curated interactive space for aspiring programmers to learn and master their coding skills. Also help in job interview. 141 | - [SQL Zoo](https://sqlzoo.net/wiki/SQL_Tutorial) : Learn SQL interactively in stages, from basic queries to complex operations. 142 | - [SQLTest.online](https://sqltest.online) : Boost Your SQL Proficiency with Challenging Problems. 143 | 144 |
145 | ↥ Back To Top 146 |
147 | 148 | ## 💰 CryptoCurrency 149 | - [Blockchain Basics](https://www.sitepen.com/blog/2017/09/21/blockchain-basics/) : Great introduction to blockchain 150 | - [Blockchain demo](https://blockchaindemo.io/) : A visual demo of Blockchain technology 151 | - [Build a blockchain in Python](https://hackernoon.com/learn-blockchains-by-building-one-117428612f46) : Learn Blockchains by Building One 152 | - [Coin demo](https://coindemo.io/) : CryptoCurrency demo 153 | - [GitCoin](https://gitcoin.co) : Gitcoin is the easiest way to monetize or incentivize work in Open Source Software. 154 | - [Learn About Bitcoin and Lightning Protocol](https://chaincode.gitbook.io/seminars/): Complete 4 weeks seminar ciricullum for learning about Bitcoin. 155 | - [Learn Me A Bitcoin](https://learnmeabitcoin.com/): Bitcoin, Cryptocurrencies and Blockchain explained in plain English 156 | - [Learn Web3 DAO](https://learnweb3.io/): Learn to become a Web3 Developer for free. 157 | - [Lite Paper](https://litepaper.com/) : Cryptocurrencies & Blockchain made effortless 158 | - [Lopp Bitcoin Resources](https://lopp.net/bitcoin.html) : Some Bitcoin Resources 159 | - [Mastering Bitcoin](https://www.oreilly.com/library/view/mastering-bitcoin/9781491902639/): Introduction to Bitcoin and tutorials to operate a full node 160 | - [Mempool](https://mempool.space): Bitcoin block explorer, mempool visualizer, transaction tracker, and fee estimator 161 | 162 |
163 | ↥ Back To Top 164 |
165 | 166 | ## 💡 For those who want to start a small project but can't find the ideas 167 | - [freeCodeCamp/React project ideas](https://medium.freecodecamp.org/every-time-you-build-a-to-do-list-app-a-puppy-dies-505b54637a5d?gi=c786640fbd11) : 27 fun app ideas you can build while learning React. 168 | - [karan/Projects](https://github.com/karan/Projects) : a large collection of small projects for beginners with 169 | - [Wrong "big projects" for beginners](http://rodiongork.tumblr.com/post/108155476418/wrong-big-projects-for-beginners) : How to choose where to start 170 | - [vicky002/1000-Projects](https://github.com/vicky002/1000_Projects) : Mega List of practical projects that one can solve in any programming language! 171 | - [reddit.com/r/AppIdeas](https://www.reddit.com/r/AppIdeas/) : A place to discuss ideas for applications, for bored developers. 172 | - [reddit.com/r/SomebodyMakeThis](https://www.reddit.com/r/SomebodyMakeThis/) : A home for ideas by people who lack time, money, or skills. 173 | - [florinpop17/app-ideas](https://github.com/florinpop17/app-ideas) : A Collection of application ideas which can be used to improve your coding skills. 174 | 175 |
176 | ↥ Back To Top 177 |
178 | 179 | ## 🗣️ General Coding advice 180 | - [How to Begin With Competitive Programming](https://www.geeksforgeeks.org/how-to-begin-with-competitive-programming/) 181 | - [10-ways-to-be-a-better-developer](https://stephenhaunts.files.wordpress.com/2014/04/10-ways-to-be-a-better-developer.png) : Ways to become a better dev! 182 | - [Code Review Best Practices](https://www.kevinlondon.com/2015/05/05/code-review-best-practices.html) : Kevin London's blog 183 | - [Design Patterns](https://sourcemaking.com/design_patterns) : Design Patterns explained in detail with examples. 184 | - [Game Programming Patterns](http://gameprogrammingpatterns.com/) : Game Programming Patterns is a collection of patterns Robert Nystrom found in games that make code cleaner, easier to understand, and faster 185 | - [How to become a programmer or the art of Googling well](https://okepi.wordpress.com/2014/08/21/how-to-become-a-programmer-or-the-art-of-googling-well/) : How to become a programmer or the art of Googling well 186 | - [How to escape tutorial purgatory as a new developer — or at any time in your career](https://medium.freecodecamp.org/how-to-escape-tutorial-purgatory-as-a-new-developer-or-at-any-time-in-your-career-e3a4b2384a40) : How to escape tutorial purgatory 187 | - [JS Project Guidelines](https://github.com/wearehive/project-guidelines) : A set of best practices for JavaScript projects. 188 | - [Learn to Code With Me](https://learntocodewith.me) : A comprehensive site resource by Laurence Bradford for developers who aims to build a career in the tech world 189 | - [Lessons From A Lifetime Of Being A Programmer](http://thecodist.com/article/lessons_from_a_lifetime_of_being_a_programmer) : The Codist Header Lessons From A Lifetime Of Being A Programmer 190 | - [MITRE - Top 25 Most Dangerous Software Weaknesses (2022)](https://cwe.mitre.org/top25/archive/2022/2022_cwe_top25.html) : The currently most common and impactful software weaknesses. 191 | - [Software Architecture Guide](https://martinfowler.com/architecture/) : A site by Martin Fowler about Software Architecture patterns and best practices to help building software effectively. 192 | - [Software design pattern](https://en.wikipedia.org/wiki/Software_design_pattern) : The entire collection of Design Patterns. 193 | - [Things I Wish Someone Had Told Me When I Was Learning How to Code — Free Code Camp](https://medium.freecodecamp.com/things-i-wish-someone-had-told-me-when-i-was-learning-how-to-code-565fc9dcb329?gi=fc6d0a309be ) : What I’ve learned from teaching others 194 | - [TeachYourselfCS](https://teachyourselfcs.com/) : If you’re a self-taught engineer or bootcamp grad, you owe it to yourself to learn computer science. Thankfully, you can give yourself a world-class CS education without investing years and a small fortune in a degree program 195 | - [What every computer science major should know](http://matt.might.net/articles/what-cs-majors-should-know/) : The Principles of Good Programming 196 | - [Working as a Software Developer](https://henrikwarne.com/2012/12/12/working-as-a-software-developer/) : Henrik Warne's blog 197 | - [The Open Web Application Security Project (OWASP)](https://www.owasp.org) : OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. 198 | 199 |
200 | ↥ Back To Top 201 |
202 | 203 | ## 🎨 Coding Style 204 | - [Airbnb JS Style Guide](https://github.com/airbnb/javascript) : A mostly reasonable approach to JavaScript 205 | - [Airbnb Ruby Style Guide](https://github.com/airbnb/ruby) : A Ruby style guide by Airbnb 206 | - [Ruby coding style guide](https://github.com/bbatsov/ruby-style-guide) : A community-driven Ruby coding style guide 207 | - [Angular 1 Style Guide](https://github.com/johnpapa/angular-styleguide/tree/master/a1) : Officially endorsed style guide by John Pappa 208 | - [CS 106B Coding Style Guide](http://stanford.edu/class/archive/cs/cs106b/cs106b.1158/styleguide.shtml) : must see for those who create spaghetti 209 | - [Debugging Faqs](http://www.umich.edu/~eecs381/generalFAQ/Debugging.html) : Check out how to debug your program 210 | - [Directory of CS Courses (many with online lectures)](https://github.com/prakhar1989/awesome-courses) : Another online CS courses 211 | - [Directory of Online CS Courses](https://github.com/ossu/computer-science) : Free online CS courses 212 | - [Good C programming habits. • /r/C_Programming](https://www.reddit.com/r/C_Programming/comments/1vuubw/good_c_programming_habits/) : C programming habits to adopt 213 | - [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html) 214 | - [How to Report Bugs Effectively](https://www.chiark.greenend.org.uk/~sgtatham/bugs.html) : Want to report a bug but you don't know how? Check out this post 215 | - [What are some bad coding habits you would recommend a beginner avoid getting into?](https://www.reddit.com/r/learnprogramming/comments/1i4ds4/what_are_some_bad_coding_habits_you_would/) : Bad habits to avoid when you get started 216 | - [PEP8 - Style Guide for Python Code](https://www.python.org/dev/peps/pep-0008/) : Style Guide for Python Code 217 | - [Standard JS Style Guide](https://standardjs.com) : JavaScript style guide, with linter & automatic code fixer 218 | - [The Hitchhiker's Guide to Python](https://docs.python-guide.org/writing/style/) : Best Practices for Python Development 219 | - [Google Python Style Guide](https://google.github.io/styleguide/pyguide.html) : Google Python Style Guide 220 | - [Aurelia Style Guide](https://github.com/behzad888/Aurelia-styleguide) : An Aurelia style guide by Behzad Abbasi(Behzad888) 221 | - [Source Making ](https://sourcemaking.com/): Design Patterns & Refactoring 222 | - [Refactoring Guru](https://refactoring.guru/): Refactoring And Design Patterns 223 | - [Google Java Style Guide](https://google.github.io/styleguide/javaguide.html): Google Java Style Guide 224 | - [Rust Coding style](https://github.com/rust-dev-tools/fmt-rfcs): Rust code formatting RFCs and coding style guides 225 | - [Google C# Style Guide](https://google.github.io/styleguide/csharp-style.html): Google C# Style Guide 226 | - [Uber Go Style Guide](https://github.com/uber-go/guide): Uber Go Style Guide 227 | 228 |
229 | ↥ Back To Top 230 |
231 | 232 | ## 🛠️ General Tools 233 | - [CoderPad](https://coderpad.io) : Quickly Conduct Coding Interviews and Phone Screen Interviews. 234 | - [CodePen](https://codepen.io) : Front End Developer Playground & Code Editor in the Browser 235 | - [CORS-Tester](https://cors-error.dev/cors-tester/) : A tool for developers and API testers to check if an API is CORS-enabled for a given domain and identify gaps 236 | - [Crontab Guru](https://crontab.guru/) : Quick and simple editor for cron schedule expressions 237 | - [Devicons](http://vorillaz.github.io/devicons/#/main) : Cheatsheet for devs icons 238 | - [Diagrams.net](https://app.diagrams.net/) : Drawing tools to make design and uml easily. Old draw.io 239 | - [FreeFor.Dev](https://free-for.dev/#/) : A huge list of free resources and tools 240 | - [Hotkey Cheatsheet](https://hotkeycheatsheet.com) : A comprehensive hotkey cheatsheet for popular software and applications 241 | - [Imgur](https://imgur.com/) : Online image sharing and image hosting service. 242 | - [Kody Tools](https://www.kodytools.com/dev-tools): 100+ dev tools including code converters, formatters, and minifiers. 243 | - [Pyrexp](https://pythonium.net/regex) : Online regex tester and visualizer for Python. 244 | - [regex101](https://regex101.com) : Online regex tester and debugger: PHP, PCRE, Python, Golang and JavaScript 245 | - [regexr](https://regexr.com) : Another online tool to learn, build & test Regular Expressions 246 | - [Prodia AI Image API](https://prodia.com/) : API for open sourced image models 247 | - [Wit AI](https://wit.ai) : Natural Language for Developers 248 | - [SaaS Design](https://www.saasdesign.io/free-figma-templates) : Collection of open source Figma UI design templates for your next project. 249 | - [Seymour](https://harc.github.io/seymour-live2017) : Live Programming for the Classroom 250 | - [Code share](https://codeshare.io) : Share code in real-time with other developers 251 | - [Solid Tools for Developers](https://soliddevtools.com) : Online debugging tools for developers and system administrators 252 | - [OS Query](https://osquery.io) : Easily ask questions about your Linux, Windows, and macOS infrastructure 253 | - [LaunchPad](https://launchpad.graphql.com) : Appollo launchepad for testing GraphQl queries 254 | - [GraphOnline](https://graphonline.ru/en/) : Useful tool for visualizing Graphs 255 | - [Data Structure Visualization](https://www.cs.usfca.edu/~galles/visualization/Algorithms.html) : Perfect website for visually learning Algorithms 256 | - [IDE Onlang](https://ide.onelang.io) : Write in one language and get the same result in other languages. 257 | - [JSON Crack](https://jsoncrack.com/) : An online open-source tool designed for visualizing data in various languages such as JSON, YAML, CSV, and more. 258 | - [JSONing](https://jsoning.com/) : Collection of JSON tools, including a formatter, validator, comparator, testers, generators, and a mock API for testing and prototyping. 259 | - [Pad.new](https://pad.new) : Free cloud-based IDE to run code and databases in almost any language 260 | - [PullRequest](https://www.pullrequest.com/) : Code review as a service from vetted, professional reviewers 261 | - [Python Visualizer](http://pythontutor.com/visualize.html) : Watch the execution of basic Python, Java, C++, etc. code step-by-step. Recommended for new programmers and the Canadian Computing Competition. 262 | - [Extends Class](https://extendsclass.com/) : Online developer tools: REST and SOAP clients, SQLite browser, testers (Regex, XPath, JSONPath) and other tools (Encoders, Converters and formatters) 263 | - [Sourcegraph](https://sourcegraph.com/search) : Online tool for searching millions of open source repositories. 264 | - [SVG Path Editor](https://yqnn.github.io/svg-path-editor/) : Online and open source SVG Path editor. 265 | - [EmailDrop](https://www.emaildrop.io/): Emaildrop is a free disposable email provider. 266 | - [Repl.it](https://repl.it): Accessible prototyping tool for various needs. 267 | - [KeyBr (Typing Practice)](https://www.keybr.com/): Easy to use typing practice app. 268 | - [Svgator](https://www.svgator.com/): Animate svg graphically. Its like a video editor but for svg. 269 | - [Webhook.site](https://webhook.site/): Useful tool for test and debug webhooks. 270 | - [kandi](https://kandi.openweaver.com/): Jumpstart Application Development by finding the right Open Source resource 271 | - [Svix Play](https://play.svix.com/): Webhook tester & debugger. Test webhooks directly from your test suite. 272 | - [Typeracer](https://play.typeracer.com/): Increase your typing speed while racing against others. 273 | - [Typerush](https://www.typerush.com/): Increase typing speed while racing. 274 | - [IT-Tools](https://it-tools.tech/): Collection of handy online tools for developers. 275 | 276 | 277 |
278 | ↥ Back To Top 279 |
280 | 281 | ## 🐚 Bash and Shell scripting 282 | - [Advanced Bash-Scripting Guide](http://tldp.org/LDP/abs/html/) : An in-depth exploration of the art of shell scripting 283 | - [Bash Guide for Beginners](http://www.tldp.org/LDP/Bash-Beginners-Guide/html/) : Bash Guide for Beginners Machtelt Garrels 284 | - [Bash Programming](http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html) : by Mike G mikkey at dynamo.com.ar 285 | - [Bash Reference Manual](https://www.gnu.org/software/bash/manual/bashref.html) : Bash Reference Manual 286 | - [BashGuide](http://mywiki.wooledge.org/BashGuide) : BashGuide - Greg's Wiki 287 | - [Conquering the Command Line](https://www.softcover.io/read/fc6c09de/unix_commands) : Unix and Linux Commands for Developers 288 | - [Airborn OS](https://www.airborn.io) : Private Google Docs Alternative 289 | - [Commandlinefu](https://www.commandlinefu.com/commands/browse) : An extensive collection of Shell oneliners that can save your day on many occasions 290 | - [Pure Bash Bible](https://github.com/dylanaraps/pure-bash-bible) : A collection of pure bash alternatives to external processes. 291 | - [25 Common Linux Bash Script Examples To Get You Started](https://www.hostinger.in/tutorials/bash-script-example) 292 | 293 |
294 | ↥ Back To Top 295 |
296 | 297 | ## 🎤 Interview Preparation 298 | - [10 Frequently asked SQL Query Interview Questions](http://www.java67.com/2013/04/10-frequently-asked-sql-query-interview-questions-answers-database.html) 299 | - [A Collection of Quant Riddles With Answers](http://puzzles.nigelcoldwell.co.uk) 300 | - [A Developer's Guide to Working with Recruiters](https://andreidobrinski.com/blog/a-developers-guide-to-working-with-recruiters/) 301 | - [Algorithm design canvas](https://www.hiredintech.com/algorithm-design) 302 | - [Aptitude Questions and Answers](http://www.indiabix.com) : Quant and aptitude preparation 303 | - [A site for technical interview questions, brain teasers, puzzles, quizzles](https://www.techinterview.org) : whatever the heck those are) and other things that make you think! 304 | - [Big collection of interview preparation links • /r/cscareerquestions](https://www.reddit.com/r/cscareerquestions/comments/2lzc4h/big_collection_of_interview_preparation_links/) 305 | - [Big-O Algorithm Complexity Cheat Sheet](http://bigocheatsheet.com/#) 306 | - [BIG O Misconceptions](http://ssp.impulsetrain.com/big-o.html) 307 | - [Bitwise tricks](https://gist.github.com/dideler/2365607) 308 | - [ChiperSoft/InterviewThis](https://github.com/Twipped/InterviewThis) : questions to ask during on a interview to know more about the company. 309 | - [Code Project](https://www.codeproject.com) : For those who code! 310 | - [Coderbytes](https://coderbyte.com/) : A platform for coding challenges and interview prep. 311 | - [C PUZZLES, Some interesting C problems](http://www.gowrikumar.com/c/index.php) 312 | - [Core Java Interview Questions](https://www.javatpoint.com/corejava-interview-questions) 313 | - [CS9: Problem-Solving for the CS Technical Interview](http://web.stanford.edu/class/cs9/) 314 | - [Delightful Puzzles](http://gurmeet.net/puzzles/) 315 | - [Determining the big-O runtimes of these different loops?](https://stackoverflow.com/questions/11094330/determining-the-big-o-runtimes-of-these-different-loops) : really good stackoverflow question that covers basics of calculating runtime complexity. 316 | - [FAANGPath Resume template](https://faangpath.com/template/) : Maximize your chances to get your resume in the hands on HR/HM. 317 | - [five-essential-phone-screen-questions - steveyegge2](https://sites.google.com/site/steveyegge2/five-essential-phone-screen-questions) 318 | - [Freshers Interviews](http://placementsindia.blogspot.com) 319 | - [Gainlo](http://www.gainlo.co/#!/) : Mock interview from professionals 320 | - [GeeksforGeeks/A computer science portal for geeks](http://www.geeksforgeeks.org) : also subscribe to their feeds to get links to their new articles. 321 | - [github.com/odino/interviews](https://github.com/odino/interviews) : list of important questions for interview 322 | - [Give your résumé a face lift](https://motorsh.wordpress.com/2009/01/13/give-your-resume-a-face-lift-from-lifeclever/) 323 | - [Google Interview Warmup](https://grow.google/certificates/interview-warmup/) : Google Interview Warmup is an AI-based tool that helps individuals practise for their interviews. 324 | - [Here's How to Prepare for Tech Interviews • /r/cscareerquestions](https://www.reddit.com/r/cscareerquestions/comments/1jov24/heres_how_to_prepare_for_tech_interviews/) 325 | - [How to Answer "Tell Me a Little About Yourself"/The Art of Manliness](http://www.artofmanliness.com/2016/01/05/tell-me-a-little-about-yourself/) 326 | - [How to Break Into the Tech Industry - a Guide to Job Hunting and Tech Interviews](http://haseebq.com/how-to-break-into-tech-job-hunting-and-interviews) 327 | - [How to interview](http://kelukelu.me/interview/index.html) 328 | - [How to prepare for an interview - 1](http://se7so.blogspot.com/2014/01/how-to-prepare-for-interview-1.html) 329 | - [IIT Delhi Placement Experience](http://placement-iit2013.blogspot.com) 330 | - [samwincott/Internship-Guide](https://github.com/samwincott/Internship-Guide) : An aggregate of links related to internships. 331 | - [Interviewing At Jane Street](https://blog.janestreet.com/interviewing-at-jane-street/) : Interviewing At Jane Street 332 | - [Interview Archives - Java Honk](http://javahonk.com/category/interview/) 333 | - [Interview Cake](https://www.interviewcake.com/) : Free and Paid course options offering high quality technical interview practice. 334 | - [Job Interview: How to Ace a Job Interview/The Art of Manliness](http://www.artofmanliness.com/2012/08/06/how-to-ace-a-job-interview/) 335 | - [Job interviews News, Videos, Reviews and Gossip - Lifehacker](https://lifehacker.com/search?s=job%20interviews/) 336 | - [Job Interview Questions and Best Answers](https://www.thebalance.com/job-interview-questions-and-answers-2061204) 337 | - [kimberli/interviews](https://github.com/kimberli/interviews) : study sheet for Interview 338 | - [LeetCode](https://leetcode.com/) : A new way to learn. Here you can prepare for your interview. 339 | - [Learnersbucket](https://learnersbucket.com): Data Structures and Algorithms in Javascript. 340 | - [Mission-peace/interview problems](https://github.com/mission-peace/interview/wiki) : A large collection of coding interview problems 341 | - [NeetCode](https://neetcode.io): Prepare topic wise coding questions which are most frequently asked in MAANG companies. 342 | - [Pramp/A free on demand interview practice platform for Software Engineers](https://www.pramp.com/ref/gt1) : Practice coding interviews with real peers 343 | - [Problems/LeetCode OJ](https://leetcode.com/problemset/algorithms/) : Coding practice for interviews 344 | - [Programmer And Software Interview Questions Answers](http://www.programmerinterview.com) 345 | - [Reddit.com/user/ashish2199/m/puzzles](https://www.reddit.com/user/ashish2199/m/puzzles/) : Logic Puzzles 346 | - [SQL interview questions](https://www.jitbit.com/news/181-jitbits-sql-interview-questions/) : great SQL test 347 | - [SQL Joins explained using venn diagram](http://stevestedman.com/wp-content/uploads/VennDiagram1.pdf) 348 | - [svozniuk/java-interviews](https://github.com/svozniuk/java-interviews) : Java interview questions 349 | - [Techie Delight](https://www.techiedelight.com) : Leading platform for technical interview preparation. 350 | - [The 25 most difficult HR questions](http://www.datsi.fi.upm.es/~frosal/docs/25mdq.html) 351 | - [Top 10 Algorithms for Coding Interview](https://www.programcreek.com/2012/11/top-10-algorithms-for-coding-interview/) : Algorithms for Coding Interview 352 | - [Unix / Linux Commands Cheat Sheet](https://www.geeksforgeeks.org/linux-commands-cheat-sheet/) 353 | - [Unsolicited_advice_for_job_seekers_and_employers](https://www.reddit.com/r/india/comments/1clgdj/unsolicited_advice_for_job_seekers_and_employers/) 354 | - [Visualising Data Structures and Algorithms through Animation](https://visualgo.net/en) 355 | - [We Help Coders Get Hired](https://www.hiredintech.com/) : website offering courses on system design, interview strategies, soft skills etc 356 | - [what_are_your_goto_questions_for_the_do_you_have?](https://www.reddit.com/r/cscareerquestions/comments/209rkq/what_are_your_goto_questions_for_the_do_you_have/) 357 | - [Why You Make Less Money • /r/cscareerquestions](https://www.reddit.com/r/cscareerquestions/comments/1b8wa3/why_you_make_less_money/) 358 | - [wu :: riddles(hard)](https://www.ocf.berkeley.edu/~wwu/riddles/hard.shtml) : logic puzzles and riddles 359 | - [What I Learned from Interviewing at multiple AI Companies and Start-Ups](https://blog.usejournal.com/what-i-learned-from-interviewing-at-multiple-ai-companies-and-start-ups-a9620415e4cc#fa32) 360 | -[Tech Interview Handbook](https://techinterviewhandbook.org/introduction/): Guide on cracking tech interviews 361 | 362 | 363 |
364 | ↥ Back To Top 365 |
366 | 367 | ## 🎬 Documentaries 368 | - [Breaking the Code](https://ia801908.us.archive.org/27/items/youtube-S23yie-779k/) : Biography of Alan Turing 369 | - [Cracking The Code Interview](https://www.youtube.com/watch?v=4NIb9l3imAo) : Cracking the Code Interview 370 | - [Cracking the Coding Interview](https://www.youtube.com/watch?v=Eg5-tdAwclo) : Cracking the Coding Interview, Fullstack Speaker Series 371 | - [Harvard CS50 - Asymptotic Notation (video)](https://www.youtube.com/watch?v=iOq5kSKqeR4) : Asymptotic Notation explained by Harvard 372 | - [Machine Code Instructions (video)](https://www.youtube.com/watch?v=Mv2XQgpbTNE) : Code instructions 373 | - Machine that Changed the World - a very good documentary about the history of computers 374 | - Part 1 is unavailable for free streaming due to widespread copyright claims. 375 | - [Part 2: Inventing the Future](https://www.youtube.com/watch?v=0iPiYxjsYKk) 376 | - [Part 3: The Paperback Computer](https://www.youtube.com/watch?v=d7DKVfOXr54) 377 | - [Part 4: The Thinking Machine](https://www.youtube.com/watch?v=enWWlx7-t0k) 378 | - [Part 5: The World at Your Fingertips](https://www.youtube.com/watch?v=fLLXiP7diEo) 379 | - [Mechanical Computer (All Parts)](https://www.youtube.com/watch?v=s1i-dnAH9Y4) : a very good video from the 1950s explaining how mechanical computers used to work without all the modern-day electronics. 380 | - [Teach Yourself Computer Science](https://teachyourselfcs.com) : Teach Yourself Computer Science 381 | - [The Code](https://www.youtube.com/watch?v=XMm0HsmOTFI) : Story of Linux documentary 382 | - [The Internet's Own Boy](https://www.youtube.com/watch?v=9vz06QO3UkQ) : The Story of Aaron Swartz 383 | 384 |
385 | ↥ Back To Top 386 |
387 | 388 | ## 🎓 MOOCs for learning something new 389 | - [Boot.dev](https://www.boot.dev/) : Interactive online course to learn modern backend programming in Python, Javascript, Go, and more. 390 | - [Class Central](https://www.class-central.com) : a directory of 100,000+ student reviews of thousands of MOOCs. 391 | - [Classpert](https://classpert.com) : a website that gathers MOOCs and online courses from several providers, focusing on computer science and data science courses. 392 | - [Computer Science Resources](https://docs.google.com/spreadsheets/d/1BD8BJJUNaX63m2QmySWMGDp71nx4W4MyyiIBlfMoN3Q/htmlview?sle=true#) : list of MOOCs for autodidacts 393 | - [Coursera.org](https://www.coursera.org) : Take the world's best courses, online. 394 | - [CS50](https://www.youtube.com/user/cs50tv/videos) : A set of goods tutorials from cs50 395 | - [edX](https://www.edx.org) : Free Online Courses, Advance Your Career, Improve Your Life. 396 | - [Kadenze/Creative Programming](https://www.kadenze.com/courses?subjects%5B%5D=7) : Programming courses focused on art and creativity 397 | - [MIT OCW Electrical Engineering and Computer Science](https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/) 398 | - [MOOC.fi](http://mooc.fi/english.html) : Free online courses from the University of Helsinki 399 | - [NPTEL](http://nptel.ac.in) : Free online courses by IIT with certificates 400 | - [prakhar1989/awesome-CS-courses](https://github.com/prakhar1989/awesome-courses/blob/master/README.md) : List containing large amount of CS courses 401 | - [Pluralsight](https://www.pluralsight.com) : An online learning and workforce development platform that helps businesses and individuals adjust to changing technology. 402 | 403 |
404 | ↥ Back To Top 405 |
406 | 407 | ## 🧑‍💻 Sites related to your preferred programming language (For me C++) 408 | - [Best books for learning java must read](https://javahungry.blogspot.com/2014/02/best-books-for-learning-java-must-read.html) : Get basics of Java 409 | - [Bjarne Stroustrup's C++ Style and Technique FAQ](http://www.stroustrup.com/bs_faq2.html) : The C++ FAQ 410 | - [Bjarne Stroustrup's FAQ](http://www.stroustrup.com/bs_faq.html) : The C++ FAQ 411 | - [C++11 - the new ISO C++ standard](http://www.stroustrup.com/C++11FAQ.html) : The C++11 FAQ 412 | - [Compilers (video)](https://www.youtube.com/playlist?list=PLO9y7hOkmmSGTy5z6HZ-W4k2y8WXF7Bff) : A set of videos on how the GC works 413 | - [Deep Dive Java](https://www.infoq.com/presentations/garbage-collection-benefits) : Garbage Collection is Good! 414 | - [Free Online Chapters of Inside the Java Virtual Machine by Bill Venners](http://www.artima.com/insidejvm/ed2/index.html) : Java Corner 415 | - [How Garbage Collection Works](https://www.dynatrace.com/resources/ebooks/javabook/how-garbage-collection-works/) : Java memory management 416 | - [Implementation of Algorithms and Data Structures, Interview Questions and Answers](https://github.com/sherxon/AlgoDS) 417 | - [IntelliJ Keyboard Shortcuts](https://www.jetbrains.com/help/idea/keyboard-shortcuts-you-cannot-miss.html) : Keyboard shortcuts to enhance your productivity when working in IntelliJ. 418 | - [Java Corner at Artima.com](http://www.artima.com/java/index.html) : Java Corner at Artima.com 419 | - [Java Lecture Notes](http://www.cafeaulait.org/course/) : Java Student's Resource 420 | - [Java Off Heap](http://www.javaoffheap.com) : Java Off the Heap house 421 | - [Java Revisited](http://javarevisited.blogspot.com) : good for learning about Java Language and interview preparation. 422 | - [Java-source](http://www.java-source.net) : Java source 423 | - [Java Visualizer](http://www.cs.princeton.edu/~cos126/java_visualize/) : helps visualize references, values of variables, etc 424 | - [JournalDev - Java, Java EE, Android, Web Development Tutorials](https://www.journaldev.com) : Java, Java EE, Android, Web Development Tutorials 425 | - [Learning Java](http://chimera.labs.oreilly.com/books/1234000001805/index.html) : a free online textbook for learning Java 426 | - [Netbeans Keyboard Shortcuts](https://netbeans.org/project_downloads/usersguide/shortcuts-80.pdf) : Keyboard shortcuts to enhance your productivity when working in Netbeans. 427 | - [Official Qt Documentation](https://doc.qt.io/) : Documentation for different Qt versions, languages, tools and platforms 428 | - [Search Open Source Java API](http://www.docjar.com) : view source of java library and learn how things are implemented. 429 | - [The C++ Programming Language](http://www.stroustrup.com/C++.html) : The C++ Programming Language. 430 | - [The Java Memory Model](http://www.cs.umd.edu/~pugh/java/memoryModel/): The Java Memory Model 431 | - [The Java™ Tutorials](https://docs.oracle.com/javase/tutorial/) : The best tutorials for Java. 432 | - [Understanding JVM Internals](http://www.cubrid.org/blog/understanding-jvm-internals) : Understanding JVM Internals 433 | - [what-is-garbage-collection](https://downloads.plumbr.io/Plumbr%20Handbook%20Java%20Garbage%20Collection.pdf) : Demystify the garbage collection 434 | - [JavaWorld](https://www.javaworld.com) : Welcome to Javaworld 435 | - [JavatPoint](https://www.javatpoint.com/java-tutorial) : Best website to get a basic Java programming tutorial 436 | - [The Rust Programming Language Book](https://doc.rust-lang.org/book/title-page.html) : Explains the Rust programming language 437 | - [Rust Cookbook](https://rust-lang-nursery.github.io/rust-cookbook/intro.html#cookin-with-rust) : Quickly get an overview of the capabilities of the Rust crate ecosystem 438 | 439 | - [Getting start with python](https://riptutorial.com/ebook/python) : A-Z python programming concepts and methods. 440 | 441 | - [Rust by Example](https://doc.rust-lang.org/rust-by-example/) : A collection of runnable examples that illustrate various Rust concepts and standard libraries 442 | 443 | 444 |
445 | ↥ Back To Top 446 |
447 | 448 | ## 🤖 Learn AI 449 | - [aima](http://aima.cs.berkeley.edu) : The leading textbook in Artificial Intelligence (4th most cited publication of the century). Includes Github repositories and more AI resources! 450 | - [fast.ai](http://course.fast.ai) : Free practical *deep learning* course for coders without grad-level maths! 451 | - [TypeDB](https://vaticle.com) : A Strongly-typed Database 452 | - [Robots that learn](https://openai.com/research/robots-that-learn) : Robots that Learn 453 | - [Unsupervised Sentiment Neuron](https://openai.com/research/unsupervised-sentiment-neuron) : Unsupervised Sentiment Neuron 454 | - [What's the difference between AI- DP and ML?](https://blogs.nvidia.com/blog/2016/07/29/whats-difference-artificial-intelligence-machine-learning-deep-learning-ai/) : Difference artificial intelligence, machine-learning, deep-learning-ai 455 | - [TensorFlow](https://www.tensorflow.org) : An open-source software library for Machine Intelligence 456 | - [Scikit-learn](http://scikit-learn.org) : A Python module for machine learning build on top of SciPy 457 | - [DeepLearning.ai](https://www.deeplearning.ai) : Deep Learning course by Andrew Ng, Founder of Coursera 458 | - [Coding the History of Deep Learning](http://blog.floydhub.com/coding-the-history-of-deep-learning/) : Coding the History of Deep Learning 459 | - [Serpent AI](https://github.com/SerpentAI/SerpentAI) : Game Agent Framework. Helping you create AIs / Bots to play any game you own! BETA 460 | - [Blog Floydhub](https://blog.floydhub.com/colorizing-b&w-photos-with-neural-networks/) : Colorizing B&W Photos with Neural Networks 461 | - [MLCOURSE.AI](https://mlcourse.ai/) : Open Machine Learning course by OpenDataScience 462 | - [Elements of AI](https://course.elementsofai.com/) : A free course for AI basics by Reaktor and University of Helsinki 463 | - [Machine Learning Mastery](https://machinelearningmastery.com/) : A comprehensive blog that contains guidance, tutorials, and e-book for mastering ML 464 | - [Machine Learning Crash Course](https://developers.google.com/machine-learning/crash-course) : A jumpstart AI course from Google 465 | - [Machine Learning Tutorial: A Step-by-Step Guide for Beginners](https://www.simplilearn.com/tutorials/machine-learning-tutorial) : A one-stop playlist for all the basics of Machine Learning simplified, from Logistic Regression to Reinforcement Learning. 466 | - [MLU-EXPLAIN](https://mlu-explain.github.io/) : Machine Learning University (MLU) is an education initiative from Amazon designed for visual explanations of core machine learning concepts. 467 | 468 |
469 | ↥ Back To Top 470 |
471 | 472 | ## 📢 Seminar, research writing, talks, etc 473 | - [Advice on Research and Writing](http://www.cs.cmu.edu/~mleone/how-to.html) : A collection of advice about how to do research and how to communicate effectively (primarily for computer scientists). 474 | - [PHD MS Articles](http://www.cse.iitd.ac.in/~srsarangi/articles.html) : articles and views 475 | - [Seminar and reports](https://www.cse.iitb.ac.in/~ranade/communicationskills.html) : Everyone must read this tiny book before writing the seminar report 476 | - [Latex reference](http://latex.knobs-dials.com) : Arbitrary reference 477 | - [Begin Latex in minutes](https://github.com/LewisVo/Begin-Latex-in-minutes) : Brief Intro to LaTeX for beginners that helps you use LaTeX with the ease 478 | - [Lshort](https://tobi.oetiker.ch/lshort/lshort.pdf) : The Not So Short Introduction to LATEX2ε 479 | 480 |
481 | ↥ Back To Top 482 |
483 | 484 | ## 📦 Everything in one place 485 | - [API Documentation](http://devdocs.io) : A one-place well-known API Documentation with a searchable interface 486 | - [Baeldung](https://www.baeldung.com) : Step-by-step guides for Spring, rest, Java, security, persistence, Jackson, HTTP client-side and Kotlin 487 | - [BtechBasics](https://btechbasics.in/) : Fundamental concepts of Computer Science Engineering using hands-on exercises 488 | - [Branition Colors](https://branition.com/colors) : Collection of hand-curated color palettes best fitted for branding. 489 | - [cheat.sh](https://github.com/chubin/cheat.sh) : `curl cheat.sh` — the only cheat sheet you need — instant answers on programming questions with `curl` 490 | - [Developer Roadmaps](https://roadmap.sh/) : Step by step guides and paths to learn different tools or technologies 491 | - [DevURLs](https://devurls.com/) : Developer news aggregator 492 | - [Kaggle](https://www.kaggle.com/) : All-in-one Machine Learning and Data Science Community – access free GPUs and a huge repository of community published data & code. 493 | - [MDN Web Docs](https://developer.mozilla.org/en-US/) : A place with all the documentation of the web standards 494 | - [Rico's cheatsheets](https://devhints.io) : A set of good cheatsheets 495 | - [Programming Subreddits](https://www.reddit.com/user/ashish2199/m/cs_student_subs/) : a multisubreddit of all subreddits of topics related to computer science and programming. 496 | - [Websites a programmer should visit](https://www.quora.com/What-are-the-best-websites-a-programmer-should-visit/answer/Ashish-Padalkar?srid=OH96) : Response on Quora by ashish2199 497 | - [gitignore](https://www.gitignore.io/) : A collection of useful .gitignore templates for your project. Select from 442 Operating System, IDE, and Programming Language 498 | - [Hidden Tools](https://hiddentools.dev/) : Discover a wide collection of tools made by the community - for you. ✨ 499 | - [Coolors](https://coolors.co/) : Create the perfect palette or get inspired by thousands of beautiful color schemes. 500 | - [Tailwind CSS Page Builder](https://devdojo.com/tails/app) : The perfect Tailwind CSS Page Builder 501 | - [LottieFiles](https://lottiefiles.com/) : The world’s largest online platform for the world’s smallest animation format for designers, developers, and more. Access Lottie animation tools and plugins for Android, iOS, and Web. 502 | - [UI Design Daily](https://www.uidesigndaily.com/) :Weekly FREE UI resources straight to your inbox 503 | - [Iconscout](https://iconscout.com/) : Over 2.2 Million+ Design Assets, Curated SVGs, Vector Icons, Illustrations, 3D graphics, and Lottie Animations. Over 3000+ assets added every day. Integrated plugins, tools, editors, and more. 504 | - [Json API App](https://www.jsonapi.co/) : Single repository for everything you need to build better products as a developer. API, DB, Queue, Server, Webhooks, Bin, Tools, Podcasts etc. Everything you need to build super apps that our world needs. 505 | - [Library or micro code solutions](https://onelinerhub.com/) : Community library of micro code pieces for popular issues. 506 | 507 |
508 | ↥ Back To Top 509 |
510 | 511 | ## 📺 YouTube Channels 512 | - [C++Now (BoostCon)](https://www.youtube.com/channel/UC5e__RG9K3cHrPotPABnrwg) : C++Now (previously BoostCon) conference 513 | - [code::dive conference](https://www.youtube.com/channel/UCU0Rt8VHO5-YNQXwIjkf-1g) : code::dive conference organized by NOKIA Wrocław Technology Center 514 | - [Coding Blocks](https://www.youtube.com/user/codingblocks) : Tutorials, how to's, tips and tricks 515 | - [Computerphile](https://www.youtube.com/user/Computerphile/videos) : Must watch for every CS student 516 | - [ComputerHistory](https://www.youtube.com/user/ComputerHistory/videos) : for those who like to know how we reached where we are. 517 | - [CppCon](https://www.youtube.com/user/CppCon/videos?shelf_id=0&view=0&sort=dd) : C++ Conference 518 | - [Facebook Developers](https://www.youtube.com/user/FacebookDevelopers/videos) 519 | - [Google Developers](https://www.youtube.com/user/GoogleDevelopers/videos) 520 | - [GoogleTechTalks](https://www.youtube.com/user/GoogleTechTalks/videos) : videos on trending topics and cool stuff happening in the tech industry. 521 | - [Gynvael Coldwin](https://www.youtube.com/user/GynvaelEN) : Awesome reverse engineering and hacking(CTF) videocasts. Every Wednesday is new live streams. 522 | - [HowToBecomeTV](https://www.youtube.com/user/HowToBecomeTV/videos) : contains good interviews of developers and people related to the tech industry. 523 | - [Java](https://www.youtube.com/user/java/videos) : talks related to java 524 | - [JavaOne](https://www.youtube.com/channel/UCdDhYMT2USoLdh4SZIsu_1g/videos) : Java Conference 525 | - [javidx9](https://www.youtube.com/channel/UC-yuWVUplUJZvieEligKBkA/videos) : Game and graphics tutorials 526 | - [Meeting C++ YT Kanalseite](https://www.youtube.com/user/MeetingCPP/videos) : Talks on C++ 527 | - [MIT OpenCourseWare](https://www.youtube.com/user/MIT/) : MIT OpenCourseWare for learning in-depth algorithms, data structures, and computer engineering 528 | - [Murtaza's OpenCV Robotics and AI](https://www.youtube.com/c/MurtazasWorkshopRoboticsandAI/): OpenCV, Self Driving, Robotics and AI tutorials. 529 | - [Netflix UI Engineering](https://www.youtube.com/channel/UCGGRRqAjPm6sL3-WGBDnKJA/videos) : great videos to watch for web developers, mobile developers and those interested in some of Netflix's tech stack 530 | - [O'Reilly](https://www.youtube.com/user/OreillyMedia/videos) : interviews and talks of the world's best technical writers. 531 | - [Placement Grid](https://www.youtube.com/user/PlacementGrid/videos) : Interview and campus placement experience 532 | - [Scott Meyers: Past Talks](http://www.aristeia.com/presentations.html) 533 | - [Siraj Raval](https://www.youtube.com/channel/UCWN3xxRkmTPmbKwht9FuE5A) : Artificial Intelligence and deep learning tutorials videos 534 | - [ThinMatrix](https://www.youtube.com/user/ThinMatrix/videos) : blogs and tutorials developer making a 3d game in Java using OpenGL 535 | - [thoughtbot](https://www.youtube.com/user/ThoughtbotVideo/videos) : talks on various topics 536 | - [Traversy Media](https://www.youtube.com/user/TechGuyWeb/videos) :Web development and programming 537 | - [yegor256](https://www.youtube.com/user/technoparkcorp/videos) 538 | - [GOTO Conference](https://www.youtube.com/user/GotoConferences) : tech talks from the GOTO Conference by Developers for Developers 539 | - [freeCodeCamp](https://www.youtube.com/channel/UC8butISFwT-Wl7EV0hUK0BQ) : freecodecamp youtube channel 540 | - [Bo Qian](https://www.youtube.com/channel/UCEOGtxYTB6vo6MQ-WQ9W_nQ) : Learn advanced c++ 541 | - [Geeksforgeeks](https://www.youtube.com/channel/UC0RhatS1pyxInC00YKjjBqQ/videos) : geeksforgeeks youtube 542 | - [Hacker earth](https://www.youtube.com/channel/UCYU6nvKyRYnE5kiG9JXkXpA) : Hacker earth youtube 543 | - [Hak5](https://www.youtube.com/user/Hak5Darren) : Put together by a band of IT ninjas, security professionals, and hardcore gamers, Hak5 isn't your typical tech show. We take on hacking in the old-school sense. 544 | - [Khan Academy](https://www.youtube.com/channel/UC4a-Gbdw7vOaccHmFo40b9g) : Khan Academy youtube 545 | - [LearnCode.academy](https://www.youtube.com/channel/UCVTlvUkGslCV_h-nSAId8Sw) : 100% FREE Web Development tutorials, web site design tutorials, and more. Including, but not limited to: HTML, CSS, JavaScript, CSS Layouts, Responsive Design, React.js, Node.js, Angular.js, Docker, Dev 546 | - [Rachit Jain](https://www.youtube.com/channel/UC9fDC_eBh9e_bogw87DbGKQ/featured) : competitive programming 547 | - [sentdex](https://www.youtube.com/channel/UCfzlCWGWYyIQ0aLC5w48gBQ) : Python Programming tutorials, going further than just the basics. Learn about machine learning, finance, data analysis, robotics, web development, game development, and more. 548 | - [Steve Griffith](https://www.youtube.com/channel/UCTBGXCJHORQjivtgtMsmkAQ) : The videos on this channel are largely about web design & development with a good dose of mobile development thrown in just for fun. 549 | - [The Coding Train](https://www.youtube.com/channel/UCvjgXvBlbQiydffZU7m1_aw) : In this YouTube channel I publish "creative coding" video tutorials every week. Subjects covered range from the basics of programming languages like JavaScript (with p5.js) and Java (with Processing) to generative algorithms like physics simulation, computer vision, and data visualization. 550 | - [TheHappieCat](https://www.youtube.com/channel/UCBsuOBu-dxj5bx1KMgmar5g) : Videos on technology, storytelling, and being happie. 551 | - [Tutorials Point (India) Pvt. Ltd.](https://www.youtube.com/channel/UCVLbzhxVTiTLiVKeGV7WEBg) : Tutorials Point originated from the idea that there exists a class of readers who respond better to online content and prefer to learn new skills at their own pace from the comforts of their drawing rooms. We bring simple to understand Text and Video tutorials at zero cost and cover many subjects including IT, Engineering, MBA, MCA, Management, Various Exams Preparation, and Academic subjects. If you are not extravagant and willing to save your money and time then we recommend you to try our tutorials.experience 552 | - [Udacity](https://www.youtube.com/channel/UCBVCi5JbYmfG3q5MEuoWdOw) : Udacity, a pioneer in online education, is building "University by Silicon Valley", a new type of online university 553 | - [V. Anton Spraul](https://www.youtube.com/channel/UCLEMTlEe5RE04EoULMHWEEQ) : Videos for people who want to understand the software better, including explanations of how the software performs some of its most important jobs and tools programmers can use to solve programming problems. 554 | - [xdadevelopers](https://www.youtube.com/channel/UCk1SpWNzOs4MYmr0uICEntg) : You have found the world-famous XDA-Developers.com YouTube Channel, known as XDA TV. We cover Android and Windows Mobile from HTC, Samsung, Motorola, Sony, and more. Learn about rooting your Android, how to build applications, and more. 555 | - [KudVenkat](https://www.youtube.com/user/kudvenkat/) : Microsoft .NET technologies and SQL Server tutorials. 556 | - [The Net Ninja](https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg): Web development tutorials 557 | - [Web Dev Simplified](https://www.youtube.com/channel/UCFbNIlppjAuEX4znoulh0Cw): Tutorials based on Web development from basic to advanced. 558 | - [Take You Forward](https://www.youtube.com/c/takeUforward): Tutorials on Data structures and Algorithms in Java and C++. 559 | 560 |
561 | ↥ Back To Top 562 |
563 | 564 | ## ✍️ Good Articles 565 | - [14 Things I Wish I’d Known When Starting with MongoDB](https://www.infoq.com/articles/Starting-With-MongoDB/) 566 | - [40 Keys Computer Science Concepts Explained In Layman’s Terms](http://carlcheo.com/compsci) 567 | - [A Gentle Introduction To Graph Theory](https://dev.to/vaidehijoshi/a-gentle-introduction-to-graph-theory) 568 | - [A programmer-friendly language that compiles to Lua.](http://moonscript.org) 569 | - [A Software Developer’s Reading List](https://stevewedig.com/2014/02/03/software-developers-reading-list/) : Some good books and links in there. 570 | - [Code a TCP/IP stack](http://www.saminiir.com/lets-code-tcp-ip-stack-5-tcp-retransmission/) : Let's code a TCP/IP stack, 5: TCP Retransmission 571 | - [Codewords.recurse](https://codewords.recurse.com/issues/four/the-language-of-choice) : The language of choice 572 | - [Learn Data structure and Algorithms](https://www.freecodecamp.org/news/learn-data-structures-and-algorithms/) : List of some algorithms and data structures and learning resources. 573 | - [Dive into the byte code](https://www.wikiwand.com/en/Java_bytecode) 574 | - [Expectations of a Junior Developer](http://blog.thefirehoseproject.com/posts/expectations-of-a-junior-developer/) 575 | - [Getting Started with MongoDB – An Introduction](https://studio3t.com/knowledge-base/articles/mongodb-getting-started/) 576 | - [Linux Inside](https://0xax.gitbooks.io/linux-insides/content/Booting/linux-bootstrap-1.html) 577 | - [List of algorithms](https://www.wikiwand.com/en/List_of_algorithms) 578 | - [Step by Step Guide to Database Normalization](https://www.databasestar.com/normalization-in-dbms/): A guide to database normalization. 579 | - [The Key To Accelerating Your Coding Skills](http://blog.thefirehoseproject.com/posts/learn-to-code-and-be-self-reliant/) 580 | - [Unicode](https://www.joelonsoftware.com/2003/10/08/the-absolute-minimum-every-software-developer-absolutely-positively-must-know-about-unicode-and-character-sets-no-excuses/) 581 | - [We are reinventing the retail industry through innovative technology](http://multithreaded.stitchfix.com) 582 | - [What every programmer absolutely, positively needs to know about encodings and character sets to work with text](http://kunststube.net/encoding/) 583 | - [What every programmer should know about memory - PDF](https://people.freebsd.org/~lstewart/articles/cpumemory.pdf) 584 | - [qotoqot - improving-focus](https://qotoqot.com/blog/improving-focus/) : How I got to 200 productive hours a month 585 | - [Pixel Beat - Unix](http://www.pixelbeat.org/docs/unix-parallel-tools.html) : Parallel processing with Unix tools 586 | - [Learning Vim](https://hackernoon.com/learning-vim-what-i-wish-i-knew-b5dca186bef7) : What I Wish I Knew 587 | - [Write a Kernel](http://arjunsreedharan.org/post/82710718100/kernel-101-lets-write-a-kernel) : Kernel 101 – Let’s write a Kernel 588 | - [Learning JavaScript Design Patterns](https://addyosmani.com/resources/essentialjsdesignpatterns/book/) : the online version of the Learning JavaScript Design Patterns published by O'Reilly, released by the author Addy Osmani under CC BY-NC-ND 3.0 589 | - [Working with Webhooks](https://requestbin.com/blog/working-with-webhooks/) : a comprehensive guide on webhooks 590 | - [How I got TensorFlow Developer Certified](https://www.mrdbourke.com/how-i-got-tensorflow-developer-certified/) : Step By Step guide to pass Tensorflow Developer Certification 591 | 592 |
593 | ↥ Back To Top 594 |
595 | 596 | ## 🎧 Podcasts 597 | - [Coding Blocks](http://www.codingblocks.net) : A podcast covering topics such as best programming practices, design patterns, coding for performance, object-oriented coding, database design and implementation, tips, tricks and a whole lot of other things. 598 | - [Developer On Fire](http://developeronfire.com/episodes) : A podcast that shares the humanity of developers and tells stories of some of the amazing people in software, hosted by Dave Rael. 599 | - [Developer Tea](https://spec.fm/podcasts/developer-tea) : A podcast for developers designed to fit inside your tea break. 600 | - [Front End Happy Hour](http://frontendhappyhour.com) : A podcast featuring a panel of Software Engineers from Netflix, Evernote, Atlassian & LinkedIn talking over drinks about all things Front End development. 601 | - [Full Stack Radio](http://www.fullstackradio.com) : Everything from product design and user experience to unit testing and system administration. 602 | - [Groovy Podcast](http://groovypodcast.podbean.com) : A podcast dedicated to the Groovy programming language and its ecosystem. 603 | - [IPhreaks](https://devchat.tv/iphreaks) : A weekly group discussion about iOS development and related technology by development veterans. We discuss Apple, tools, practices, and code. 604 | - [JavaScript Jabber](https://devchat.tv/js-jabber) : A weekly discussion about JavaScript, front-end development, community, careers, and frameworks. 605 | - [Learn To Code With Me Podcast](https://learntocodewith.me/podcast/) : A Season by season of tech podcast episodes by Laurence Bradford with topics ranging from Career in Tech to lessons in doing tech business 606 | - [LispCast](https://lispcast.com/category/podcast/) : A podcast by Eric Normand, a functional programming expert talking about FP concepts. 607 | - [MS Dev Show](http://msdevshow.com) : Jason Young and Carl Schweitzer talk about the latest in developer news covering topics such as the Azure cloud, Windows, Windows Phone, Visual Studio, and cross-platform development using the Microsoft platform. 608 | - [React Native Radio](https://devchat.tv/react-native-radio) : A weekly discussion of the tools, techniques, and technologies used to build mobile applications with JavaScript and React. 609 | - [ShopTalk Show](https://shoptalkshow.com/) : A weekly podcast about just building websites from Dave Rupert and Chris Coyier. 610 | - [Soft Skills Engineering](https://softskills.audio/) : A weekly advice podcast for software developers about non-technical topics. 611 | - [Software Engineering Daily](https://softwareengineeringdaily.com) : A daily technical interview about software topics. 612 | - [Software Engineering Radio](http://www.se-radio.net) : A podcast targeted at the professional software developer. The goal is to be a lasting educational resource, not a newscast. 613 | - [Syntax](https://syntax.fm) : A Tasty Treats Podcast for Web Developers by Wes Bos & Scott Tolinski. 614 | - [The Bike Shed](http://bikeshed.fm) : Guests discuss their development experience and challenges with Ruby, Rails, JavaScript, and others. 615 | - [The Changelog](https://changelog.com/podcast) : A weekly conversation that gets to the heart of open source technologies and the people who create them. 616 | - [The Cynical Developer](https://cynicaldeveloper.com) : A podcast that aims to help you to improve your development knowledge and career, through explaining the latest and greatest in development technology and providing you with what you need to succeed as a developer. Covering Desktop, web, and mobile development, mainly around the .Net Stack but often looking into other software and frameworks. 617 | - [The Real Python Podcast](https://realpython.com/podcasts/rpp/) : A weekly Python podcast hosted by Christopher Bailey with interviews, coding tips, and conversation with guests from the Python community. 618 | - [Blockchain Insider by 11:FS](blockchain.global/blockchain-innovation) : Podcast to learn about the Blockchain Technology 619 | - [Unchained](unchainedpodcast.co) Podcast to learn about the Blockchain Technology 620 | - [Talk python to me](https://talkpython.fm/) Podcast to learn about Python through interviews and discussions 621 | - [Python bytes](https://pythonbytes.fm) Podcast to learn about the latest happenings and trends in Python 622 | 623 |
624 | ↥ Back To Top 625 |
626 | 627 | ## 🔄 Building a Simple Compiler/Interpreter 628 | - [:snowman: Possibly the smallest compiler ever](https://github.com/thejameskyle/the-super-tiny-compiler) : This is an ultra-simplified example of all the major pieces of a modern compiler written in easy to read JavaScript. 629 | - [Awesome Compilers](http://aalhour.com/awesome-compilers/) : Curated list of awesome resources on Compilers, Interpreters, and Runtimes. 630 | - [Growing a compiler](http://www.cs.dartmouth.edu/~mckeeman/cs48/mxcom/gem/html/GrowingCompiler.html) : Learn how to grow a compiler 631 | - [Let’s Build A Simple Interpreter. Part 1.](https://ruslanspivak.com/lsbasi-part1/) : Try to demystify compilers by building one 632 | - [Resources for Amateur Compiler Writers](http://c9x.me/compile/bib/) : Resources for Amateur Compiler Writers 633 | - [Structure and Interpretation of Computer Programs](https://sarabander.github.io/sicp/html/index.xhtml) : Structure and Interpretation of Computer Programs 634 | - [Writing My First Compiler](https://dev.to/fcpauldiaz/writing-my-first-compiler) : Write out your first compiler 635 | - [An Intro to Compilers](https://nicoleorchard.com/blog/compilers) : How to Speak to Computers, Pre-Siri 636 | - [Write your own compiler](http://staff.polito.it/silvano.rivoira/HowToWriteYourOwnCompiler.htm) : How to write your compiler 637 | - [Crafting Interpreters](http://craftinginterpreters.com/) A handbook for writing interpreters, first implementing a tree walking interpreter and later a bytecode virtual machine 638 | - [Writing a C Compiler](https://norasandler.com/2017/11/29/Write-a-Compiler.html) : The first post in a series by Nora Sandler on writing your own C compiler 639 | 640 |
641 | ↥ Back To Top 642 |
643 | 644 | ## 🧑‍🏫 Tutorials 645 | - [A Hacker's Guide to Git](https://wildlyinaccurate.com/a-hackers-guide-to-git/) : for those wanting to learn git with a solid foundation 646 | - [A Byte of Python](https://python.swaroopch.com) : a free beginner introduction to python 647 | - [Best Of - Gustavo Duarte](http://duartes.org/gustavo/blog/best-of/) : contains articles on various topics 648 | - [CMSI 281: Data Structures](http://cs.lmu.edu/~ray/classes/dsa/) : lightweight introduction to DS 649 | - [Collecting all the cheat sheets](http://overapi.com) : cheat sheets for lots of programming languages 650 | - [C Programming](http://users.cs.cf.ac.uk/Dave.Marshall/C/CE.html) 651 | - [CryptoHack](https://cryptohack.org/) : Learn cryptography through challenges and tutorials. Has a leaderboard and new challenges are added every few months. 652 | - [Programming Community Curated C++ Resources](https://hackr.io/tutorials/learn-c-plus-plus) : resources recommended by developers 653 | - [Deep C](https://www.slideshare.net/olvemaudal/deep-c) : very good presentation on C language 654 | - [Design Patterns: Elements of Reusable Object-Oriented Software](https://www.amazon.com/Design-Patterns-Elements-Reusable-Object-Oriented/dp/0201633612) : aka the "Gang Of Four" book, or GOF 655 | - [Dynamic programming - PrismoSkills](http://prismoskills.appspot.com/lessons/Dynamic_Programming/Chapter_01_-_Introduction.jsp) : very good resource if want to learn how to solve DP problems. 656 | - [Flexbox Froggy](https://flexboxfroggy.com) : a game that teaches you how to use CSS flexbox properties 657 | - [Git from the inside out](https://maryrosecook.com/blog/post/git-from-the-inside-out) 658 | - [Head First Design Patterns](https://www.amazon.com/Head-First-Design-Patterns-Brain-Friendly/dp/0596007124) 659 | - [How to Program in C++](http://cs.fit.edu/~mmahoney/cse2050/how2cpp.html) : Good resource for revising C++ topics and STL 660 | - [http://www.mysqltutorial.org/](http://www.mysqltutorial.org) 661 | - [indradhanush tutotials](https://indradhanush.github.io/blog/writing-a-unix-shell-part-3/) : Writing a Unix Shell 662 | - [Introduction to C Programming](http://www.le.ac.uk/users/rjm1/cotter/index.htm) 663 | - [Learn UNIX in 10 minutes](http://freeengineer.org/learnUNIXin10minutes.html) 664 | - [Learning the shell.](http://linuxcommand.org) 665 | - [Linux Journey](https://linuxjourney.com) : good site for learning Linux 666 | - [Linux Tutorial](https://ryanstutorials.net/linuxtutorial/) : good resource for learning Linux 667 | - [Missing Semester](https://missing.csail.mit.edu/) : The missing semester of your computer science education 668 | - [More about Github-flavored markdown](https://guides.github.com/features/mastering-markdown/) 669 | - [MySQL Essentials](http://www.techotopia.com/index.php/MySQL_Essentials) 670 | - [Open Data Structures](http://opendatastructures.org) : Excellent resource for learning about DS and algos, provides code in various languages C++, Java, and pseudocode. 671 | - [OS Course Notes](https://www2.cs.uic.edu/~jbell/CourseNotes/OperatingSystems/) : Chapter-wise course notes according to Galvin's book 672 | - [Programming, Web Development, and DevOps news, tutorials, and tools for beginners to experts](https://dzone.com) 673 | - [Prompt engineering](https://www.promptingguide.ai/) : Prompting Guide AI is an online resource that helps users learn and craft effective prompts for AI models to generate better and more relevant outputs. 674 | - [Stanford Programming Course](https://see.stanford.edu/Course/CS106A) : Full, free CS course created by Stanford 675 | - [SQL (Structured Query Language) in one page : SQL.SU](http://www.cheat-sheets.org/sites/sql.su/) : a very good SQL cheat sheet 676 | - [Subtle/Poor Man's CI](https://www.subtle.press/course/poor-mans-ci) : Learn how continuous integration platforms work under the hood, by building one of your own on top of git with Node.js 677 | - [TCP/IP Illustrated Series](https://en.wikipedia.org/wiki/TCP/IP_Illustrated) 678 | - [The Bash Guide](http://guide.bash.academy) : a very good guide for learning the Bash Shell 679 | - [The Descent to C](https://www.chiark.greenend.org.uk/~sgtatham/cdescent/) : for those moving to C from some higher programming language like java or python. 680 | - [The Linux Command Line: A Complete Introduction](https://www.amazon.com/Linux-Command-Line-Complete-Introduction/dp/1593273894) 681 | - [The Unix Programming Environment](http://product.half.ebay.com/The-UNIX-Programming-Environment-by-Brian-W-Kernighan-and-Rob-Pike-1983-Other/54385&tg=info) 682 | - [TopCoder Tutorials](https://www.topcoder.com/community/data-science/data-science-tutorials/) 683 | - [Tutorialspoint](https://www.tutorialspoint.com) : Text and Video Tutorials for UPSC, IAS, PCS, Civil Services, Banking, Aptitude, Questions, Answers, Explanation, Interview, Entrance, Exams, Solutions 684 | - [UNIX and Linux System Administration Handbook, 4th Edition](https://www.amazon.com/UNIX-Linux-System-Administration-Handbook/dp/0131480057) 685 | - [VimTutor+](https://vimtutorplus.herokuapp.com/exercise/1) : Learn VIM from the browser. 686 | - [W3Schools Online Web Tutorials](https://www.w3schools.com) 687 | - [Unix Shell](https://www.dartmouth.edu/~rc/classes/ksh/print_pages.shtml) : Unix shell scripting with ksh/bash 688 | - [Snap SVG](http://snapsvg.io) : The JavaScript SVG library for the modern web 689 | - [vim.rtorr](https://vim.rtorr.com) : Vim Cheat Sheet 690 | - [Open Vim](http://www.openvim.com/tutorial.html) : Interactive Vim tutorials 691 | - [Algorithm Using Dynamic Programming and A](http://thume.ca/2017/06/17/tree-diffing/) : Designing a Tree Diff Algorithm Using Dynamic Programming and A* 692 | - [Learn Python](https://www.learnpython.org) : Free Interactive Python Tutorial 693 | - [C++17](https://www.viva64.com/en/b/0533/) : A guide of C++17 694 | - [The Bash Academy](http://www.bash.academy) : The Bash Academy is an initiative to promote the bash shell language and educate people on its use. 695 | - [Learn Shell Programming](http://learnshell.org) : This website is intended for everyone who wishes to learn programming with Unix/Linux shell interpreters. 696 | - [Java tutorial](https://hackr.io/tutorials/learn-java) : A programming community & a great place to find the best online programming courses and tutorials. 697 | - [Explain Shell](https://explainshell.com/): Match command-line arguments to their help text 698 | - [Speaking io](https://speaking.io/) : Tips for public speaking 699 | - [Javascript.info](https://javascript.info/) : The Modern JavaScript Tutorial 700 | 701 |
702 | ↥ Back To Top 703 |
704 | 705 | ## 👀 Watch others code 706 | - [Education Ecosystem](https://www.education-ecosystem.com) : screencast of people building applications, websites, games, etc. 707 | - [Twitch.tv](https://www.twitch.tv/directory/game/Science%20%26%20Technology) : The programming community of twitch. 708 | 709 |
710 | ↥ Back To Top 711 |
712 | 713 | ## 🧠 What should a programmer know 714 | - [Can I use](https://caniuse.com/) : A website that provides up-to-date browser support tables for support of front-end web technologies on desktop and mobile web browsers. 715 | - [GitHub.com Build software better, together](https://github.com) : Place to showcase your project and collaborate with others. (Must know Git to use it effectively) 716 | - [GitLab](https://about.gitlab.com) : An alternative to GitHub that offers free unlimited (private) repositories and unlimited collaborators. 717 | - [Programmer Competency Matrix](https://www.sijinjoseph.com/programmer-competency-matrix/) : article for knowing what our level as a programmer is. 718 | 719 |
720 | ↥ Back To Top 721 |
722 | 723 | ## ⚔️ Competitive programming 724 | - [Topic Wise Problem For Competitive Programmer](https://a2oj.com/categories) : Topic wise Practise Problem 725 | - [Advent of Code](https://adventofcode.com) : An Advent calendar of small programming puzzles 726 | - [Archived Problems - Project Euler](https://projecteuler.net/archives) : Problems Archives 727 | - [Art of Problem Solving](https://artofproblemsolving.com) : Is math class too easy for you? You've come to the right place! 728 | - [AtCoder](https://atcoder.jp/) : One of the best places to build competitive programming skills for beginners to experts. 729 | - [CodeChef](https://www.codechef.com) : The only programming contests Web 2.0 platform 730 | - [CodeSignal](https://app.codesignal.com) : Test your coding skills 731 | - [CodeEval](https://www.codeeval.dev/) : Notepad for notes and code snippets, stored locally in the browser 732 | - [Codeforces](http://codeforces.com) : Programming Competition,Programming Contest,Online Computer Programming 733 | - [Codewars](https://www.codewars.com) : Rank up by completing code kata 734 | - [Codility](https://codility.com) : Verify and improve coding skills 735 | - [Codingame](https://www.codingame.com/start) : Learn coding through games and challenges! 736 | - [Facebook Hacker Cup](https://www.facebook.com/hackercup/) : Facebook's Programming Contest, past problems solutions and FAQ 737 | - [Google Coding Competitions Archive](https://zibada.guru/gcj/) : past contest problems for practice 738 | - [HackerEarth - Programming challenges and Developer jobs](https://www.hackerearth.com) 739 | - [HackerRank](https://www.hackerrank.com) : Practice coding. Compete. Find jobs. 740 | - [LightOJ](https://lightoj.com) : Practicing at lightoj is so good for beginners as it is categorized and have also chat room and forum which helps to communicate with others about any problem. 741 | - [PKU ACM ICPC Practice problems](http://poj.org/problemlist) : Judge online for ACMACPC 742 | - [Sphere Online Judge (SPOJ)](http://www.spoj.com) : Become a true programming master Learn how to code and build efficient algorithms 743 | - [Topcoder](https://www.topcoder.com) : Deliver Faster through Crowdsourcing 744 | - [URI Online Judge](https://www.urionlinejudge.com.br/judge/en/register) : Practice coding, Compete and be a better coder. 745 | - [UVa Online Judge](https://uva.onlinejudge.org) : hundreds of problems supporting multiple languages. 746 | - [WakaTime](https://wakatime.com) : leaderboards of coding metrics collected via editor plugins 747 | - [PrepBytes](https://mycode.prepbytes.com/competitive-coding/practice) : Topic and level wise proper arrange problems 748 | - [A2OJ Ladders](https://a2oj.com/Ladders.html) : Practice codeforces problems based on your proficiency and difficulty 749 | 750 |
751 | ↥ Back To Top 752 |
753 | 754 | ## 📖 Computer Books 755 | - [Become a Programmer, Motherfucker (list of books)](http://programming-motherfucker.com/become.html) : Exhaustive list of books from Zed A. Shaw. 756 | - [Best books for GATE CSE](http://gatecse.in/best-books-for-gatecse/) 757 | - [cses.fi/book.html](https://cses.fi/book.html) 758 | - [github.com/vhf/free-programming-books](https://github.com/EbookFoundation/free-programming-books/blob/master/README.md) : More than 500 free ebooks on almost any language you can think of 759 | - [GitBook](https://www.gitbook.com) : GitBook helps your team write, collaborate, and publish content online. 760 | - [Data Science course](https://jakevdp.github.io/PythonDataScienceHandbook/) : Python Data Science Handbook 761 | - [Goal Kicker](https://goalkicker.com) : Programming Notes for Professionals books 762 | - [The GraphQL Guide](https://graphql.guide) : The complete guide to GraphQL, the new REST ✨ 763 | - [Eloquent JavaScript](https://eloquentjavascript.net/) : A book about JavaScript, programming, and the wonders of the digital. 764 | - [programmingbooks.dev](https://www.programmingbooks.dev) : An Ordered and Curated Reading List for Software Craftsmanship Growth. 765 | 766 |
767 | ↥ Back To Top 768 |
769 | 770 | ## 🔴 Video Tutorials 771 | - [Aditya Verma](https://www.youtube.com/channel/UC5WO7o71wvxMxEtLRkPhiQQ): Algorithm tutorials playlists by an Indian youtuber Aditya verma. 772 | - [codedamn](https://www.youtube.com/channel/UCJUmE61LxhbhudzUugHL2wQ/videos) : front end web dev tutorials 773 | - [Code School](https://www.codeschool.com) : A PluralSight Company and an Interactive learning destination for aspiring and experienced Developers 774 | - [CodingMadeEasy](https://www.youtube.com/user/CodingMadeEasy/videos) : C++ tutorials 775 | - [CS1: Higher Computing - Richard Buckland UNSW](https://www.youtube.com/playlist?list=PL6B940F08B9773B9F) : a very good introductory CS course 776 | - [Derek Banas](https://www.youtube.com/user/derekbanas/videos) : good quality tutorials 777 | - [Design and Analysis of Algorithms](http://openclassroom.stanford.edu/MainFolder/CoursePage.php?course=IntroToAlgorithms) 778 | - [DevTips](https://www.youtube.com/user/DevTipsForDesigners/videos) : web dev tutorials 779 | - [FreeCourses](https://freecourses.github.io) : Free courses about programming 780 | - [Kathryn Hodge](https://www.youtube.com/channel/UC4DwZ2VXM2KWtzHjVk9M_xg/videos) : Has good videos for beginners 781 | - [Kunal Kushwaha](https://www.youtube.com/watch?v=apGV9Kg7ics) : An amazing guide to Git and GitHub for beginners 782 | - [mycodeschool](https://www.youtube.com/user/mycodeschool/videos) : Data structures and algorithms tutorials 783 | - [Pluralsight](https://www.pluralsight.com) : Learn Software Development, DevOps and Data Science through multiple short courses 784 | - [thenewboston](https://www.youtube.com/user/thenewboston/videos) : good but with too much talk as compared to actual content 785 | - [Tushar Roy](https://www.youtube.com/user/tusharroy2525/videos) : Algorithm and Data structure tutorial by an Indian Youtuber. 786 | - [Vim Tutorial Videos - Flarfnoogins](http://derekwyatt.org/vim/tutorials/index.html) : good video tutorial for learning vim 787 | - [XDA-University - Helping You Learn Android Development](https://forum.xda-developers.com/general/xda-university) 788 | - [Khan Academy](https://www.khanacademy.org/computing/computer-science) : learn about computer science for free 789 | - [Functional programming](https://www.youtube.com/watch?v=1PhArSujR_A) : John Carmack on Functional Programming (2013) 790 | - [Video about vims](https://vimeo.com/album/2838732) : A serie of tutorials about Vim 791 | - [Mastering Next.js](https://masteringnextjs.com/) : A free serie of videos to learn Next.js 792 | 793 |
794 | ↥ Back To Top 795 |
796 | 797 | ## 💻 Online Compiler and Sharing Code snippets 798 | - [C9.io](https://c9.io) : Your development environment, in the cloud 799 | - [Carbon](https://carbon.now.sh/) : Create pretty looking images of your code snippets. 800 | - [Codeframe](https://codeframe.co/) : Online pastebin-like playground for building websites using HTML, CSS, and JavaScript 801 | - [CodePad](https://codepad.remoteinterview.io) : Code editor to try, test and run 25+ languages 802 | - [Coder](https://coder.com) : A Web-based development environment using Visual Studio Code as a code editor 803 | - [Codesandbox.io](https://codesandbox.io) : CodeSandbox makes it easier to create, share, and reuse React projects with others. 804 | - [Github Codespaces](https://github.com/codespaces) : Integrated cloud-based IDE directly to your browser. 805 | - [Github Gist](https://gist.github.com) : Instantly share code, notes, and snippets. 806 | - [Godbolt.org](https://godbolt.org) : Excellent tool for exploring the assembly output of different compilers with and without optimization. 807 | - [Ideone.com](https://ideone.com) : online compiler and debugging tool for more than 60 programming languages 808 | - [JSFiddle](https://jsfiddle.net) : Test your JavaScript, CSS, HTML or CoffeeScript with online code editor 809 | - [JSBin](https://jsbin.com/) : Front end playground, Output is not framed, so it allows you to share those snippets that will break inside an iframe. 810 | - [Judge0 IDE](https://ide.judge0.com) : Online compiler with 40+ interpreters and compilers. 811 | - [Pastebin.com](https://pastebin.com) : Pastebin can store texts like code, notes, and snippets online for a set time which can be shared instantly. 812 | - [PlayCode](https://playcode.io/) : Online Javascript playground with a built-in console and support for npm packages. 813 | - [RunJS](https://runjs.app/play) : Online JavaScript playground with instant live feedback 814 | - [StackBlitz](https://stackblitz.com/) : Instant Dev environments with support of nodejs and npm packages. 815 | - [Wandbox](https://wandbox.org/): Online compiler with bleeding edge C++ and 40 other languages. 816 | - [PHPize.online](https://phpize.online/): Online PHP compiler with SQL support. 817 | 818 |
819 | ↥ Back To Top 820 |
821 | 822 | ## 📝 Blogs of Developers 823 | - [Algo-Geeks](http://algo-geeks.blogspot.com) : Programming Puzzles, Math Tricks, Algorithms, etc 824 | - [Amit Merchant](https://www.amitmerchant.com) : Tutorials, tips & tricks, and rants about programming and design. 825 | - [Andy Heathershaw](https://www.andyheathershaw.uk) : Personal website and blog of software developer Andy Heathershaw 826 | - [Antonio081014's Algorithms Codes](http://code.antonio081014.com) : The world is under the RULE. 827 | - [Archives — Ask a Manager](http://www.askamanager.org/archives) : HR-related stuff 828 | - [Armin Ronacher's Thoughts and Writings](http://lucumr.pocoo.org) : blog on Python and open source 829 | - [blog.might.net](http://matt.might.net/articles/) : the blog of might dot net 830 | - [Brendon Gregg - Linux Kernel Dev](http://www.brendangregg.com) : the blog of Brendon D. Gregg 831 | - [Clean Coder Blog](http://blog.cleancoder.com) : a blog of the author of the book "Clean Code" 832 | - [CodeAhoy](https://codeahoy.com) : Blog on software and human factors. 100% Tested on Humans. 833 | - [CoderGears Blog Insights from](http://www.codergears.com/Blog/) : the CoderGears Team 834 | - [Coding Geek - A blog about IT, programming and Java](http://coding-geek.com) : A blog about IT, programming and Java 835 | - [Coding Horror](https://blog.codinghorror.com) : one the best coding blog 836 | - [CSE Blog](http://www.cseblog.com) : quant, math, computer science puzzles 837 | - [CSS Tricks](https://css-tricks.com/) : about building websites and all that entails, mostly from a front-end perspective 838 | - [Daedtech.com](https://www.daedtech.com) : Stories about software 839 | - [Dan Dreams of Coding](https://dandreamsofcoding.com) 840 | - [Daniel Lemire's Blog](https://lemire.me/blog/) : Daniel Lemire's blog 841 | - [Eli Bendersky](http://eli.thegreenplace.net) : everything from Python to LLVM 842 | - [Geek Land](https://avidullu.wordpress.com) : My precious collectibles 843 | - [HackerEarth Blog](http://blog.hackerearth.com) : The HackerEarth blog 844 | - [IT Enthusiast](http://rodiongork.tumblr.com) : IT Enthusiast 845 | - [Joel on Software](https://www.joelonsoftware.com) : The blog of the CEO of StackOverflow 846 | - [Late Developer](https://latedev.wordpress.com) : Random thoughts of an old C++ guy 847 | - [Linux Forums](https://www.linux.org/forums) : A Friendly Linux Forum 848 | - [1ucasvb's laboriginal math and physics visualization](http://1ucasvb.tumblr.com) : Lucas Vieira Barbosa's lab original math and physics visualization 849 | - [Math ∩ Programming](https://jeremykun.com) : Math ∩ Programming 850 | - [My Tech Interviews](http://www.mytechinterviews.com) : PREPARE FOR A TECHNICAL INTERVIEW 851 | - [Paul Graham Essays](http://www.paulgraham.com/articles.html) : Paul Grahan Essays 852 | - [Programming Blog](http://www.yegor256.com) : programming blog of Yegor Bugayenko 853 | - [Programming in the 21st Century](http://prog21.dadgum.com) : programming in the twenty-first century 854 | - [rudhakar Rayavaram](http://sudhakar.online) : Sudhakar Rayavaram Blog's 855 | - [Runhe Tian Coding Practice](https://tianrunhe.wordpress.com) : Technical interview questions from Apple, Google, Facebook, Amazon, and Microsoft 856 | - [Small Programming Challenges and Puzzles](https://www.nayuki.io/category/programming) : Project Nayuki 857 | - [stevehanov.ca](http://stevehanov.ca/blog/) : I know how to make and sell software online, and I can share my tips with you. 858 | - [Takipi Blog](http://blog.takipi.com) : mainly focuses on Java and JVM languages 859 | - [The Pragmatic Engineer](https://blog.pragmaticengineer.com/) : Software. People. Problems. Ideas. Engineering. 860 | - [XDA - Android Developer Forum](https://forum.xda-developers.com) : Android Open Source Developers Forum 861 | - [The Net Ninja](https://www.thenetninja.co.uk/): Web development tutorials 862 | 863 |
864 | ↥ Back To Top 865 |
866 | 867 | ## 🗣️ For improving your English 868 | - [Englishclub.com/learn-english](https://www.englishclub.com/learn-english.htm) 869 | - [Guide to Grammar and Writing](http://grammar.ccc.commnet.edu/grammar/) : for those who want to improve their English language skills 870 | - [Punctuation and Capitalization Rules](http://www.grammarbook.com/english_rules.asp) 871 | - [Purdue University Online Writing Lab (OWL)](https://owl.english.purdue.edu) 872 | - [Quia - English](https://www.quia.com/shared/english/) 873 | - [AntiMoon Immersion Approach](http://www.antimoon.com/how/howtolearn.htm): Immersion-based learning of English, can be used by people on different levels. 874 | 875 |
876 | ↥ Back To Top 877 |
878 | 879 | ## 🧘‍♂️ When you get bored from CS related stuff 880 | - [Barcroft TV](https://www.youtube.com/user/barcroftmedia/featured) : Daily short documentaries about the incredible variety of people that make up the world 881 | - [Big Think](https://www.youtube.com/user/bigthink/videos) : Expert driven, actionable, educational content, featuring experts ranging from Bill Clinton to Bill Nye 882 | - [ColdFusion](https://www.youtube.com/user/coldfustion/videos) : Past, present, and future of technology 883 | - [CrashCourse](https://www.youtube.com/user/crashcourse/videos) : small courses on various subjects 884 | - [Every Frame a Painting](https://www.youtube.com/user/everyframeapainting/videos) : High-quality analysis of films and filmmaking 885 | - [National Geographic](https://www.youtube.com/user/NationalGeographic/videos) : High volume of high-quality content from all over the world 886 | - [r/ProgrammerHumor](https://www.reddit.com/r/ProgrammerHumor/) : Subreddit dedicated to exactly what it sounds like 887 | - [Reddit the front page of the internet](https://www.reddit.com) : Where free time goes to die 888 | - [Ridddle](https://www.youtube.com/user/VineMontanaTV/videos) : A youtube channel about science, mainly, but not only, the universe and space. 889 | - [Regex Crossword](https://regexcrossword.com) : A simple crossword game where clues are regex that must be matched. 890 | - [SciShow](https://www.youtube.com/user/scishow/videos) : Answers to interesting questions that you've always wondered about 891 | - [SmarterEveryDay](https://www.youtube.com/user/destinws2/videos) : Lots of amazing scientific information about the world around us, usually captured with a high-speed camera 892 | - [TED](https://www.youtube.com/user/TEDtalksDirector/videos) : Great talks about technology, entertainment, and design 893 | - [TestTube News](https://www.youtube.com/user/TestTubeNetwork/videos) : Interesting information about news from around the world 894 | - [How to live for a long time ?](http://www.bbc.com/future/story/20170601-the-secret-to-a-long-and-healthy-life-eat-less) : The secret of longevity 895 | - [Vsauce](https://www.youtube.com/user/Vsauce/videos) : The best youtube channel 896 | - [Ox A cuk](http://www.ox.ac.uk/research/research-in-conversation/how-live-happy-life/dr-bronwyn-tarr#) : How to live a happy life 897 | - [lonelyspeck](https://www.lonelyspeck.com/the-milky-way-in-los-angeles-light-pollution/) : Expose to the Right for Astrophotography in Light Pollution – Palos Verdes, Los Angeles, California 898 | 899 |
900 | ↥ Back To Top 901 |
902 | 903 | ## 🔓 Open Source Websites 904 | - [N-O-D-E](https://n-o-d-e.net/) : Everything open-source and hacker culture - news, zines, and projects 905 | - [Open Hatch](https://openhatch.org) : OpenHatch is a non-profit dedicated to matching prospective free software contributors with communities, tools, and education. 906 | - [Source Forge](https://sourceforge.net) : SourceForge hosts nearly 280,000 projects (at last count). It serves more than 2 million downloads a day and includes apps and tools in a wide variety of categories. 907 | - [Google Code](https://code.google.com/projecthosting) : Google offers free hosting for open source projects using the Subversion or Mercurial version control systems. It offers 2 GB of storage, integrated code review tools, a wiki, and an issue tracker. The Google Code site also provides links to Google's many publicly available APIs and other developer tools. 908 | - [Launch Pad](https://launchpad.net) : Maintained by Canonical, LaunchPad is particularly targeted at projects that run on Ubuntu. It provides hosting for more than 21,000 projects that use the Bazaar version control system. 909 | - [Google Open Source](https://opensource.google.com) : Google Open Source 910 | - [Red Hat Developer](https://developers.redhat.com) : The world's leading provider of open source solutions 911 | - [Open Source](https://opensource.com) : Open Source 912 | - [Google Summer of Code](https://summerofcode.withgoogle.com) : Google Summer of Code is a global program focused on bringing more student developers into open source software development. Students work with an open-source organization on a 3-month programming project during their break from school. 913 | - [Open Source Web Design](http://www.oswd.org) : Open Source Web Design is a platform for sharing standards-compliant free web design templates. We give web publishers a voice through good design. 914 | - [Mozilla Winter of Security](https://wiki.mozilla.org/Security/Automation/Winter_Of_Security_2016) : The Winter of Security (MWOS) is a program organized by Mozilla's Security teams to involve students with Security projects. Students who have to perform a semester project as part of their university curriculum can apply to one of the MWOS projects. 915 | - [Bit Bucket](https://bitbucket.org) : Like GitHub, BitBucket hosts both public and private projects. On this site, open-source projects and private projects with fewer than five users are free. It hosts more than 48,000 repositories, many of which are searchable on the site. 916 | - [Media Wiki](https://www.mediawiki.org/wiki/MediaWiki) : MediaWiki is a free software open source wiki package written in PHP, originally for use on Wikipedia. It is now also used by several other projects of the non-profit Wikimedia Foundation and by many other wikis, including this website, the home of MediaWiki. 917 | - [Code Curiosity](https://codecuriosity.org) : CodeCuriosity is a platform that encourages contributions to open source. Everyone is rewarded for their efforts, no matter how big or small they are. 918 | - [Code Triage](https://www.codetriage.com) : Help out your favorite open-source projects and become a better developer while doing it. 919 | - [Issue Hub](http://issuehub.io) : Contribute to Open Source. Search issue labels to find the right project for you 920 | - [Up for Grabs](http://up-for-grabs.net) : This is a list of projects which have curated tasks specifically for new contributors. These are a great way to get started with a project or to help share the load of working on open source projects. 921 | - [First Timers Only](http://www.firsttimersonly.com) : Contributing to open source for the first time can be scary and a little overwhelming. Perhaps you’re a Code Newbie or maybe you’ve been coding for a while but haven’t found a project you felt comfortable contributing to. 922 | - [Your First PR](http://yourfirstpr.github.io) : Your First PR helps you get started contributing to Open Source by showcasing great starter issues on GitHub and elsewhere. 923 | - [Awesome First PR Opportunities](https://github.com/mungell/awesome-for-beginners) : An awesome repository for finding beginner-friendly projects in different programming languages. 924 | - [EddieHub Open source community](https://github.com/EddieHubCommunity) : A Supportive community for people who are interested or already contributing in Open source. 925 | - [MLH Fellowship prgramme](https://fellowship.mlh.io/):A fully remote, 12-week internship alternative where participants earn a stipend and learn to collaborate on real open source projects with peers and engineers from top companies. 926 | 927 |
928 | ↥ Back To Top 929 |
930 | 931 | ## 🌱 Internships 932 | - [Chegg](http://www.chegg.com) : It is an awesome resource for finding internships, scholarships, tutors, etc. 933 | - [Internshala](https://internshala.com) : You can search for internships here according to your skill sets for your interested location. It also helps you in getting a good PPO offer from the company. 934 | - [Letsintern](https://www.letsintern.com) : Get a smart and challenging internship for you from the LetsIntern. 935 | - [PerfectIntern](https://www.perfectintern.com): Get help finding a paid internship, resume prep, interview prep, and more! 936 | 937 |
938 | ↥ Back To Top 939 |
940 | 941 | ## 💼 Jobs 942 | - [Wellfound](https://wellfound.com/) : Wellfound (formerly known as Angellist) is a 943 | website for startups, angel investors, and job-seekers 944 | looking to work at startups. 945 | - [CareerBuilder](https://hiring.careerbuilder.com) : CareerBuilder is one of the largest job boards, providing job listings, resume posting, and career advice and resources to job seekers. 946 | - [Dice](https://www.dice.com) : Dice is the leading site for tech job seekers. 947 | You can search by company, job title, keyword, employment type, and location. 948 | - [Devsnap](https://devsnap.io) : Devsnap is a job aggregator for developer jobs. 949 | - [DevITjobs UK](https://devitjobs.uk/) : Transparent job board for UK based developers 950 | - [Glassdoor](https://www.glassdoor.co.in) : Find the job that's right for you. 951 | Search all the open positions on the web. Get your own personalized salary estimate. 952 | - [IAESTE](http://iaesteunitedstates.org) : Find more and amazing international internships and jobs. 953 | - [Indeed](https://www.indeed.com) : Find international jobs on Indeed and get a market salary for your dedication and devotion. 954 | - [Instahyre](https://www.instahyre.com) : Your dream job is here. Showcase yourself to a curated list of top companies. Complete privacy and no spam. 955 | - [JobsCollider](https://jobscollider.com/remote-jobs) : Tens of thousands of remote jobs from over 10,000 companies and startups worldwide. 956 | - [Mentat](https://thementat.com) : Get your dream job 10x faster. Never apply for a job ever again, talk directly to decision-makers and hiring managers. 957 | - [The Muse](https://www.themuse.com) : Find everything you need to succeed from dream jobs to career advice. You can do a lot here on The Muse like exploring companies, browsing jobs, career advice, discover careers, career coaching. Try it. 958 | - [Paysa](https://www.paysa.com) : Paysa helps you in finding new and interesting jobs according to your wish. 959 | - [SimplyHired](https://www.simplyhired.com) : Simply Hired is a free job search engine (and mobile app) that takes the hassle out of getting hired and provides you with all the information you need to make a sound career move. 960 | - [SwissDev Jobs](https://swissdevjobs.ch) : Tech job board for Software Engineers that want to work in Switzerland. 961 | - [Undercover Recruiter](https://theundercoverrecruiter.com) : Become Recruiter, 962 | Candidate or Employer. You can get your job easily here. 963 | - [Who is Hiring](https://whoishiring.io) : An awesome resource for searching, 964 | filtering, and finding new and attractive jobs according to your needs and interests. 965 | - [ZipRecruiter](https://www.ziprecruiter.com) : The Smartest Way to Get Hired. 966 | - [RemoteML](https://remoteml.com/) : Remote Machine Learning jobs. 967 | - [Linkedin jobs](https://www.linkedin.com/jobs) : A very nice research tool for programming jobs 968 | - [GermanTech Jobs](https://germantechjobs.de/) : Dedicated job board for tech roles in Germany - with salary brackets 969 | - [We Work Remotely](https://weworkremotely.com/) : The largest remote work community in the world. 970 | - [OkJob](https://okjob.io/) : 4 day week job board. 971 | 972 |
973 | ↥ Back To Top 974 |
975 | 976 | ### 🌟 Special Thanks 977 | - Please consider a GitHub star if you find this useful and/or consider contributing. 978 | - A special thanks to Ashish Padalkar (@ashish2199) for contributing a great amount of data and structure to the initial repository [Original Post](https://www.quora.com/How-to-Create-a-Blog-2/answer/Ashish-Padalkar?srid=OH96). 979 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-architect -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "test": "awesome-lint" 4 | }, 5 | "devDependencies": { 6 | "awesome-lint": "*" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Summary of your changes 2 | 3 | ### Description 4 | 5 | 6 | 7 | 8 | ### Checklist 9 | 10 | 11 | 12 | - [ ] My change follows the [Contributing Guidelines](./CONTRIBUTING.md) 13 | - [ ] I have added only one new link to the list. 14 | - [ ] I have checked that the link that I added does NOT exist in the project already. 15 | - [ ] I have sorted the link alphabetically under the related section. 16 | -------------------------------------------------------------------------------- /white_listed_sites.txt: -------------------------------------------------------------------------------- 1 | bikeshed.fm 2 | codepen.io 3 | haseebq.com 4 | http://chimera.labs.oreilly.com/books/1234000001805/index.html 5 | http://www.codergears.com/Blog/ 6 | http://www.docjar.com 7 | https://artofproblemsolving.com 8 | https://codecuriosity.org/ 9 | https://forum.xda-developers.com 10 | https://forum.xda-developers.com/general/xda-university 11 | https://hackernoon.com/ 12 | https://regexr.com 13 | https://sourceforge.net 14 | https://techiedelight.quora.com/500-Data-Structures-and-Algorithms-practice-problems-and-their-solutions 15 | https://www.subtle.press/course/poor-mans-ci 16 | learn.hackerearth.com 17 | medium.freecodecamp.com 18 | projecteuler.net 19 | reddit.com 20 | regex101.com 21 | stroustrup.com 22 | wildlyinaccurate.com 23 | www.codechef.com 24 | www.coursera.org 25 | www.cubrid.org 26 | www.docjar.com 27 | www.joelonsoftware.com 28 | www.quora.com 29 | www.techotopia.com 30 | www.topcoder.com 31 | --------------------------------------------------------------------------------