├── .gitattributes ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── package.json └── white_listed_sites.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | *.smod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | *.lib 28 | 29 | # Executables 30 | *.exe 31 | *.out 32 | *.app 33 | -------------------------------------------------------------------------------- /.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 | Welcome! 2 | 3 | For contributions to be approved they should respect this form : 4 | 5 | `* [Site name | A simple description](url) : a simple description of the site or slogan of the site. ` 6 | 7 | __NEW :You should also consider sorting your submission alphabetically.__ 8 | 9 | And adhere to the [Contributor Covenant Code of Conduct](./CODE_OF_CONDUCT.md) 10 | -------------------------------------------------------------------------------- /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 in order 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 | - [Learn Anything](https://learn-anything.xyz) : Community curated knowledge graph of best paths for learning anything 58 | - [Quora](https://www.quora.com) : A place to share knowledge and better understand the world 59 | - [Stack Overflow](https://stackoverflow.com) : subscribe to their weekly newsletter and any other topic which you find interesting 60 | 61 | 62 | ## News 63 | - [ACM TechNews](http://technews.acm.org) : TechNews 64 | - [Stratechery](https://stratechery.com) : Stratechery by Ben Thompson 65 | - [AlternativeTo](https://alternativeto.net) : Crowdsourced software recommendations 66 | - [Ars Technica](https://arstechnica.com) : posts unique quality articles 67 | - [Better Dev Links](https://betterdev.link) : Weekly links to help you become a better developer 68 | - [DevOpsLinks](http://devopslinks.com) : An online community of thousands of developers and IT experts interested in DevOps 69 | - [GSMArena.com](http://www.gsmarena.com) : news related to latest mobile phones and android. 70 | - [Hacker News Digest](https://hndigest.com) : curated automatically, delivered as frequently as you want 71 | - [Hacker News](https://news.ycombinator.com) : news aggregator for programmers where civility is king, try a newsletter to get top news to your inbox: 72 | - [Hacker Newsletter](http://www.hackernewsletter.com) : curated by hand, delivered weekly 73 | - [Hacker Noon](https://hackernoon.com) : How hackers start their afternoons. 74 | - [High Scalability](http://highscalability.com) : Success stories of various companies on their apps, infra scaling. 75 | - [Lobsters](https://lobste.rs) : Lobsters is a technology-focused community centered around link aggregation and discussion. 76 | - [product hunt](https://www.producthunt.com) : Discover your next favorite thing 77 | - [Recode](https://www.recode.net) : Tech news that focuses on the business of Silicon Valley 78 | - [Reddit.com/r/programming](https://www.reddit.com/r/programming/) : Subreddit with aggregated tech news and articles 79 | - [Slashdot](https://slashdot.org) : News, Social news (Originally "News for Nerds. Stuff that Matters") 80 | - [StackShare](https://stackshare.io) : See what tools are popular with developers and companies and read about their technology decisions 81 | - [TechCrunch](https://techcrunch.com) : dedicated to obsessively profiling startups, reviewing new Internet products, and breaking tech news 82 | - [The DEV Community](https://dev.to) : Where programmers share ideas and help each other grow. 83 | - [The Verge](https://www.theverge.com) : More product oriented tech news 84 | - [XDA](https://www.xda-developers.com) : Android Developers News 85 | - [Hashnode](https://hashnode.com/) : Hashnode is a friendly and inclusive community for software developers 86 | 87 | ## Magazines 88 | - [MIT Technology Review](https://www.technologyreview.com/magazine/) : MIT's tech review magazine. 89 | - [Nautilus](http://nautil.us) : NewYorker for tech. 90 | - [LWN](https://lwn.net) : Weekly news coverage of opensource technologies, programming, etc. ( Originally Linux Weekly News). 91 | 92 | 93 | ## Coding practice for beginners 94 | - [freeCodeCamp](https://www.freecodecamp.com) : Learn to code and build projects for nonprofits. Build your full stack web development portfolio today 95 | - [Blackbird School](https://blackbird.school) : Learn to code online with our beginner-friendly platform. 96 | - [Glitch](https://glitch.com/) : Great place to play around with code in an easy-to-set-up environment. 97 | - [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. 98 | - [Programming by Doing](http://programmingbydoing.com) : very good site for those who want to start with absolute basics 99 | - [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. 100 | - [Exercism.io](http://exercism.io) : download and solve practice problems in over 30 different languages, and share your solution with others. 101 | - [InterviewBit | Coding Interview Questions](https://www.interviewbit.com) : Gamifies the experience of practicing for your interview and includes lots of sample problems to solve. 102 | - [karan/Projects-Solutions](https://github.com/karan/Projects-Solutions) : Solutions to most of the problems in the link above 103 | - [Lod - Cloud](http://lod-cloud.net) : The Linking Open Data cloud diagram 104 | - [Cave of programming](https://caveofprogramming.com) : Learn to program, Upgrade your skills. 105 | - [Vim adventures](https://vim-adventures.com/) : Learn VIM by playing 106 | - [Programming Tasks](http://rosettacode.org/wiki/Category:Programming_Tasks) : large collection of small programs 107 | - [Pramp](https://www.pramp.com) : It's your turn to be the interviewer. when done, click on the swap roles button on the left 108 | - [Paqmind](http://paqmind.com) : Guides and challenges to learn programming 109 | - [gitignore](https://www.gitignore.io/) : A collection of useful .gitignore templates for your project. Select from 442 Operating System, IDE, and Programming Language 110 | - [Codeacademy](https://www.codecademy.com) : Learn to code interactively, for free. 111 | - [treehouse](https://teamtreehouse.com) : The fast, easy, and affordable way to build your skills. 112 | - [GeeksforGeeks](https://practice.geeksforgeeks.org) : Learn to code, Study for placement, Do competitive coding. 113 | 114 | 115 | ## CryptoCurrency 116 | - [Blockchain demo](https://blockchaindemo.io/) : A visual demo of Blockchain technology 117 | - [Coin demo](https://coindemo.io/) : CryptoCurrency demo 118 | - [Lopp Bitcoin Resources](https://lopp.net/bitcoin.html) : Some Bitcoin Resources 119 | - [Blockchain Basics](https://www.sitepen.com/blog/2017/09/21/blockchain-basics/) : Great introduction to blockchain 120 | - [GitCoin](https://gitcoin.co) : Gitcoin is the easiest way to monetize or incentivize work in Open Source Software. 121 | - [Lite Paper](https://litepaper.com/) : Cryptocurrencies & Blockchain made effortless 122 | 123 | 124 | ## For those who want to start a small project but can't find the ideas 125 | - [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. 126 | - [martyr2s-mega-project-ideas-list](http://www.dreamincode.net/forums/topic/78802-martyr2s-mega-project-ideas-list/) : contains about 125 project ideas from beginner to intermediate level. 127 | - [karan/Projects](https://github.com/karan/Projects) : a large collection of small projects for beginners with 128 | - [Wrong "big projects" for beginners](http://rodiongork.tumblr.com/post/108155476418/wrong-big-projects-for-beginners) : How to choose where to start 129 | - [vicky002/1000-Projects](https://github.com/vicky002/1000_Projects) : Mega List of practical projects that one can solve in any programming language! 130 | - [reddit.com/r/AppIdeas](https://www.reddit.com/r/AppIdeas/) : A place to discuss ideas for applications, for bored developers. 131 | - [reddit.com/r/SomebodyMakeThis](https://www.reddit.com/r/SomebodyMakeThis/) : A home for ideas by people who lack time, money, or skills. 132 | 133 | 134 | ## General Coding advice 135 | - [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! 136 | - [Code Review Best Practices](https://www.kevinlondon.com/2015/05/05/code-review-best-practices.html) : Kevin London's blog 137 | - [Design Patterns](https://sourcemaking.com/design_patterns) : Design Patterns explained in detail with examples. 138 | - [Develop for Performance](http://developforperformance.com) : High-performance computing techniques for software architects and developers 139 | - [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 140 | - [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 141 | - [JS Project Guidelines](https://github.com/wearehive/project-guidelines) : A set of best practices for JavaScript projects. 142 | - [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 143 | - [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 144 | - [Programming Principles](https://webpro.github.io/programming-principles/) : Categorized overview of Programming Principles & Patterns 145 | - [Software design pattern](https://en.wikipedia.org/wiki/Software_design_pattern) : The entire collection of Design Patterns. 146 | - [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 147 | - [What every computer science major should know](http://matt.might.net/articles/what-cs-majors-should-know/) : The Principles of Good Programming 148 | - [Working as a Software Developer](https://henrikwarne.com/2012/12/12/working-as-a-software-developer/) : Henrik Warne's blog 149 | - [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. 150 | 151 | 152 | ## Coding Style 153 | - [Airbnb JS Style Guide](https://github.com/airbnb/javascript) : A mostly reasonable approach to JavaScript 154 | - [Airbnb Ruby Style Guide](https://github.com/airbnb/ruby) : A ruby style guide by Airbnb 155 | - [Ruby coding style guide](https://github.com/bbatsov/ruby-style-guide) : A community-driven Ruby coding style guide 156 | - [Angular 1 Style Guide](https://github.com/johnpapa/angular-styleguide/tree/master/a1) : Officially endorsed style guide by John Pappa 157 | - [CS 106B Coding Style Guide](http://stanford.edu/class/archive/cs/cs106b/cs106b.1158/styleguide.shtml) : must see for those who create spaghetti 158 | - [Debugging Faqs](http://www.umich.edu/~eecs381/generalFAQ/Debugging.html) : Check out how to debug your program 159 | - [Directory of CS Courses (many with online lectures)](https://github.com/prakhar1989/awesome-courses) : Another online CS courses 160 | - [Directory of Online CS Courses](https://github.com/ossu/computer-science) : Free online CS courses 161 | - [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 162 | - [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html) 163 | - [How to Report Bugs Effectively](https://www.chiark.greenend.org.uk/~sgtatham/bugs.html) : Want to report a bug but you don't how? Check out this post 164 | - [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 start 165 | - [PEP8 - Style Guide for Python Code](https://www.python.org/dev/peps/pep-0008/) : Style Guide for Python Code 166 | - [Standard JS Style Guide](https://standardjs.com) : JavaScript style guide, with linter & automatic code fixer 167 | - [Google Python Style Guide](https://google.github.io/styleguide/pyguide.html) : Google Python Style Guide 168 | - [Aurelia Style Guide](https://github.com/behzad888/Aurelia-styleguide) : An Aurelia style guide by Behzad Abbasi(Behzad888) 169 | 170 | 171 | ## General Tools 172 | - [CodePad](https://codepad.remoteinterview.io/DDCUYLAEYS) : Quickly Conduct Coding Interviews and Phone Screen Interviews. 173 | - [CodePen](https://codepen.io) : Front End Developer Playground & Code Editor in the Browser 174 | - [Devicons](http://vorillaz.github.io/devicons/#/main) : Cheatsheet for devs icons 175 | - [regex101](https://regex101.com) : Online regex tester and debugger: PHP, PCRE, Python, Golang and JavaScript 176 | - [regexr](https://regexr.com) : Another online tool to learn, build & test Regular Expressions 177 | - [Wit AI](https://wit.ai) : Natural Language for Developers 178 | - [Seymour](https://harc.github.io/seymour-live2017) : Live Programming for the Classroom 179 | - [Code share](https://codeshare.io) : Share code in real-time with other developers 180 | - [Solid Tools for Developers](https://soliddevtools.com) : Online debugging tools for developers and system administrators 181 | - [OS Query](https://osquery.io) : Easily ask questions about your Linux, Windows, and macOS infrastructure 182 | - [LaunchPad](https://launchpad.graphql.com) : Appollo launchepad for testing GraphQl queries 183 | - [IDE Onlang](https://ide.onelang.io) : Write in one language and get the same result in other languages. 184 | - [PullRequest](https://www.pullrequest.com/) : Code review as a service from vetted, professional reviewers 185 | - [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) 186 | - [EmailDrop](https://www.emaildrop.io/): Emaildrop is a free disposable email provider. 187 | 188 | 189 | ## Bash and Shell scripting 190 | - [Advanced Bash-Scripting Guide](http://tldp.org/LDP/abs/html/) : An in-depth exploration of the art of shell scripting 191 | - [Bash Guide for Beginners](http://www.tldp.org/LDP/Bash-Beginners-Guide/html/) : Bash Guide for Beginners Machtelt Garrels 192 | - [Bash Programming](http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html) : by Mike G mikkey at dynamo.com.ar 193 | - [Bash Reference Manual](https://www.gnu.org/software/bash/manual/bashref.html) : Bash Reference Manual 194 | - [BashGuide](http://mywiki.wooledge.org/BashGuide) : BashGuide - Greg's Wiki 195 | - [Conquering the Command Line](http://conqueringthecommandline.com/book/frontmatter) : Unix and Linux Commands for Developers 196 | - [Airbon OS](https://www.airbornos.com) : Private Google Docs Alternative 197 | 198 | ## Interview Preparation 199 | - [/r/cscareerquestions](https://www.reddit.com/r/cscareerquestions/comments/20ahfq/heres_a_pretty_big_list_of_programming_interview/) : Here's a pretty big list of programming interview questions I compiled while studying for big 4 interviews. I think you guys will find it useful! 200 | - [10 Frequently asked SQL Query Interview Questions](http://www.java67.com/2013/04/10-frequently-asked-sql-query-interview-questions-answers-database.html) 201 | - [A Collection of Quant Riddles With Answers](http://puzzles.nigelcoldwell.co.uk) 202 | - [Algorithm design canvas](https://www.hiredintech.com/algorithm-design)) 203 | - [Aptitude Questions and Answers](http://www.indiabix.com) : Quant and aptitude preparation 204 | - [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! 205 | - [BeehYve](https://www.beehyve.io) : Student crowdsourced resources for any topic 206 | - [Big collection of interview preparation links • /r/cscareerquestions](https://www.reddit.com/r/cscareerquestions/comments/2lzc4h/big_collection_of_interview_preparation_links/) 207 | - [Big-O Algorithm Complexity Cheat Sheet](http://bigocheatsheet.com/#) 208 | - [BIG O Misconceptions](http://ssp.impulsetrain.com/big-o.html) 209 | - [Bitwise tricks](https://gist.github.com/dideler/2365607) 210 | - [ChiperSoft/InterviewThis](https://github.com/Twipped/InterviewThis) : questions to ask during on a interview to know more about the company. 211 | - [Code Project](https://www.codeproject.com) : For those who code! 212 | - [Core Java Interview questions - Interview question on each topic](http://javahonk.com/core-java-interview-questions/) 213 | - [C PUZZLES, Some interesting C problems](http://www.gowrikumar.com/c/index.php) 214 | - [CS9: Problem-Solving for the CS Technical Interview](http://web.stanford.edu/class/cs9/) 215 | - [Delightful Puzzles](http://gurmeet.net/puzzles/) 216 | - [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. 217 | - [five-essential-phone-screen-questions - steveyegge2](https://sites.google.com/site/steveyegge2/five-essential-phone-screen-questions) 218 | - [Freshers Interviews](http://placementsindia.blogspot.com) 219 | - [Gainlo](http://www.gainlo.co/#!/) : Mock interview from professionals 220 | - [GeeksforGeeks | A computer science portal for geeks](http://www.geeksforgeeks.org) : also subscribe to their feeds to get links to their new articles. 221 | - [github.com/odino/interviews](https://github.com/odino/interviews) : list of important questions for interview 222 | - [Give your résumé a face lift](http://www.lifeclever.com/give-your-resume-a-face-lift/) 223 | - [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/) 224 | - [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/) 225 | - [How to Answer the Toughest 40 Job Interview Questions | ICS Job Portal](http://www.icsjobportal.com/blog/job-interview-questions) 226 | - [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) 227 | - [How to interview](http://kelukelu.me/interview/index.html) 228 | - [How to prepare for an interview - 1](http://se7so.blogspot.com/2014/01/how-to-prepare-for-interview-1.html) 229 | - [IIT Delhi Placement Experience](http://placement-iit2013.blogspot.com) 230 | - [samwincott/Internship-Guide](https://github.com/samwincott/Internship-Guide) : An aggregrate of links related to internships. 231 | - [Interviewing At Jane Street](https://blog.janestreet.com/interviewing-at-jane-street/) : Interviewing At Jane Street 232 | - [Interview Archives - Java Honk](http://javahonk.com/category/interview/) 233 | - [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/) 234 | - [Job interviews News, Videos, Reviews and Gossip - Lifehacker](https://lifehacker.com/tag/job-interviews) 235 | - [Job Interview Questions and Best Answers](https://www.thebalance.com/job-interview-questions-and-answers-2061204) 236 | - [kimberli/interviews](https://github.com/kimberli/interviews) : study sheet for Interview 237 | - [LeetCode](https://leetcode.com/) : A new way to learn.here you can prepare for your interview. 238 | - [Mission-peace/interview problems](https://github.com/mission-peace/interview/wiki) : A large collection of coding interview problems 239 | - [Pramp | A free on demand interview practice platform for Software Engineers](https://www.pramp.com/ref/gt1) : Practice coding interviews with real peers 240 | - [Problems | LeetCode OJ](https://leetcode.com/problemset/algorithms/) : Coding practice for interviews 241 | - [Programmer And Software Interview Questions Answers](http://www.programmerinterview.com) 242 | - [Reddit.com/user/ashish2199/m/puzzles](https://www.reddit.com/user/ashish2199/m/puzzles/) : Logic Puzzles 243 | - [SQL interview questions](https://www.jitbit.com/news/181-jitbits-sql-interview-questions/) : great SQL test 244 | - [SQL Joins explained using venn diagram](http://stevestedman.com/wp-content/uploads/VennDiagram1.pdf) 245 | - [svozniuk/java-interviews](https://github.com/svozniuk/java-interviews) : Java interview questions 246 | - [The 25 most difficult HR questions](http://www.datsi.fi.upm.es/~frosal/docs/25mdq.html) 247 | - [Top 10 Algorithms for Coding Interview](https://www.programcreek.com/2012/11/top-10-algorithms-for-coding-interview/) : Algorithms for Coding Interview 248 | - [Unix / Linux Cheat Sheet](http://cheatsheetworld.com/programming/unix-linux-cheat-sheet/) 249 | - [Unsolicited_advice_for_job_seekers_and_employers](https://www.reddit.com/r/india/comments/1clgdj/unsolicited_advice_for_job_seekers_and_employers/) 250 | - [Visualising Data Structures and Algorithms through Animation](https://visualgo.net/en) 251 | - [We Help Coders Get Hired](https://www.hiredintech.com/app) : website offering courses on system design, interview strategies, soft skills etc 252 | - [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/) 253 | - [Why You Make Less Money • /r/cscareerquestions](https://www.reddit.com/r/cscareerquestions/comments/1b8wa3/why_you_make_less_money/) 254 | - [wu :: riddles(hard)](https://www.ocf.berkeley.edu/~wwu/riddles/hard.shtml) : logic puzzles and riddles 255 | 256 | 257 | ## Documentaries 258 | - [Ask Me Anything](https://www.youtube.com/watch?v=1fqxMuPmGak) : Gayle Laakmann McDowell (author of Cracking the Coding Interview) 259 | - [Breaking the Code](https://www.youtube.com/watch?v=S23yie-779k) : Biography of Alan Turing 260 | - [Cracking The Code Interview](https://www.youtube.com/watch?v=4NIb9l3imAo) : Cracking the Code Interview 261 | - [Cracking the Coding Interview](https://www.youtube.com/watch?v=Eg5-tdAwclo) : Cracking the Coding Interview, Fullstack Speaker Series 262 | - [Download: The True Story of the Internet](https://www.youtube.com/playlist?list=PL_IlIlrxhtPMqW4b0-v8OgLvFZQes6SoZ) : Play-list of discovery channel documentary on browser wars, dot com bubble and more. 263 | - [Harvard CS50 - Asymptotic Notation (video)](https://www.youtube.com/watch?v=iOq5kSKqeR4) : Asymptotic Notation explained by Harvard 264 | - [How does CPU execute program (video)](https://www.youtube.com/watch?v=42KTvGYQYnA) : Take a look at how a CPU executes programs 265 | - [Machine Code Instructions (video)](https://www.youtube.com/watch?v=Mv2XQgpbTNE) : Code instructions 266 | - Machine that Changed the World - a very good documentary about history of computers 267 | - Part 1 is unavailable for free streaming due to widespread copyright claims. 268 | - [Part 2: Inventing the Future](https://www.youtube.com/watch?v=0iPiYxjsYKk) 269 | - [Part 3: The Paperback Computer](https://www.youtube.com/watch?v=d7DKVfOXr54) 270 | - [Part 4: The Thinking Machine](https://www.youtube.com/watch?v=enWWlx7-t0k) 271 | - [Part 5: The World at Your Fingertips](https://www.youtube.com/watch?v=fLLXiP7diEo) 272 | - [Mechanical Computer (All Parts)](https://www.youtube.com/watch?v=s1i-dnAH9Y4) : a very good video from 1950s explaining how mechanical computers used to work without all the modern day electronics. 273 | - [Project Code Rush](https://www.youtube.com/watch?v=a-49a_CjH0M) : The Beginnings of Netscape / Mozilla Documentary 274 | - [Revolution OS Linux Documentary](https://www.youtube.com/watch?v=4vW62KqKJ5A) : a film that traces the history of GNU, Linux, open source, and the free software movement. 275 | - [Teach Yourself Computer Science](https://teachyourselfcs.com) : Teach Yourself Computer Science 276 | - [The Code](https://www.youtube.com/watch?v=XMm0HsmOTFI) : Story of Linux documentary 277 | - [Triumph of the Nerds](https://www.youtube.com/playlist?list=PLn-Y3vvQbmHO5WUcBdIWqiUfNawhC1cn3) : Play-list 278 | - [The Internet's Own Boy](https://www.youtube.com/watch?v=9vz06QO3UkQ) : The Story of Aaron Swartz 279 | 280 | 281 | ## MOOCs for learning something new 282 | - [Class Central](https://www.class-central.com) : a directory of 100,000+ student reviews of thousands of MOOCs. 283 | - [Computer Science Resources](https://docs.google.com/spreadsheets/d/1BD8BJJUNaX63m2QmySWMGDp71nx4W4MyyiIBlfMoN3Q/htmlview?sle=true#) : list of MOOCs for autodidacts 284 | - [Coursera.org](https://www.coursera.org) : Take the world's best courses, online. 285 | - [CS50](https://www.youtube.com/user/cs50tv/videos) : A set of goods tutorials from cs50 286 | - [edX](https://www.edx.org) : Free Online Courses, Advance Your Career, Improve Your Life. 287 | - [Kadenze | Creative Programming](https://www.kadenze.com/courses?subjects%5B%5D=7) : Programming courses focused on art and creativity 288 | - [MIT OCW Electrical Engineering and Computer Science](https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/) 289 | - [MOOC.fi](http://mooc.fi/english.html) : Free online courses from the University of Helsinki 290 | - [NPTEL](http://nptel.ac.in) : Free online courses by IIT with certificates 291 | - [prakhar1989/awesome-CS-courses](https://github.com/prakhar1989/awesome-courses/blob/master/README.md) : List containing large amount of CS courses 292 | 293 | 294 | ## Sites related to your preferred programming language (For me Java) 295 | - [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 296 | - [Bjarne Stroustrup's C++ Style and Technique FAQ](http://www.stroustrup.com/bs_faq2.html) : The C++ FAQ 297 | - [Bjarne Stroustrup's FAQ](http://www.stroustrup.com/bs_faq.html) : The C++ FAQ 298 | - [C++11 - the new ISO C++ standard](http://www.stroustrup.com/C++11FAQ.html) : The C++11 FAQ 299 | - [Compilers (video)](https://www.youtube.com/playlist?list=PLO9y7hOkmmSGTy5z6HZ-W4k2y8WXF7Bff) : A set of videos on how the GC works 300 | - [Deep Dive Java](https://www.infoq.com/presentations/garbage-collection-benefits) : Garbage Collection is Good! 301 | - [Free Online Chapters of Inside the Java Virtual Machine by Bill Venners](http://www.artima.com/insidejvm/ed2/index.html) : Java Corner 302 | - [How Garbage Collection Works](https://www.dynatrace.com/resources/ebooks/javabook/how-garbage-collection-works/) : Java memory management 303 | - [Implementation of Algorithms and Data Structures, Interview Questions and Answers](https://github.com/sherxon/AlgoDS) 304 | - [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. 305 | - [Java Corner at Artima.com](http://www.artima.com/java/index.html) : Java Corner at Artima.com 306 | - [Java Lecture Notes](http://www.cafeaulait.org/course/) : Java Student's Resource 307 | - [Java Off Heap](http://www.javaoffheap.com) : Java Off the Heap house 308 | - [Java Revisited](http://javarevisited.blogspot.com) : good for learning about Java Language and interview preparation. 309 | - [Java-source](http://www.java-source.net) : Java source 310 | - [Java Visualizer](http://www.cs.princeton.edu/~cos126/java_visualize/) : helps visualize references, values of variables, etc 311 | - [JournalDev - Java, Java EE, Android, Web Development Tutorials](https://www.journaldev.com) : Java, Java EE, Android, Web Development Tutorials 312 | - [Learning Java](http://chimera.labs.oreilly.com/books/1234000001805/index.html) : a free online textbook for learning Java 313 | - [Netbeans Keyboard Shortcuts](https://netbeans.org/project_downloads/usersguide/shortcuts-80.pdf) : Keyboard shortcuts to enhance your productivity when working in Netbeans. 314 | - [Search Open Source Java API](http://www.docjar.com) : view source of java library and learn how things are implemented. 315 | - [The C++ Programming Language](http://www.stroustrup.com/C++.html) : The C++ Programming Language. 316 | - [The Java Memory Model](http://www.cs.umd.edu/~pugh/java/memoryModel/): The Java Memory Model 317 | - [The Java™ Tutorials](https://docs.oracle.com/javase/tutorial/) : The best tutorials for Java. 318 | - [Understanding JVM Internals](http://www.cubrid.org/blog/understanding-jvm-internals) : Understanding JVM Internals 319 | - [what-is-garbage-collection](https://plumbr.eu/handbook/what-is-garbage-collection) : Demystify the garbage collection 320 | - [JavaWorld](https://www.javaworld.com) : Welcome to Javaworld 321 | - [XyzWs Java FAQs](http://www.xyzws.com/javafaq/page/1) : large collection of java interview questions 322 | - [JavatPoint](https://www.javatpoint.com/java-tutorial) : Best website to get a basic Java programming tutorial 323 | 324 | 325 | ## Learn AI 326 | - [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! 327 | - [fast.ai](http://course.fast.ai) : Free practical *deep learning* course for coders without grad-level maths! 328 | - [grakn.ai](https://grakn.ai) : The Database for AI 329 | - [Robots that learn](https://blog.openai.com/robots-that-learn/) : Robots that Learn 330 | - [Unsupervised Sentiment Neuron](https://blog.openai.com/unsupervised-sentiment-neuron/) : Unsupervised Sentiment Neuron 331 | - [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 332 | - [TensorFlow](https://www.tensorflow.org) : An open-source software library for Machine Intelligence 333 | - [Scikit-learn](http://scikit-learn.org) : A Python module for machine learning build on top of SciPy 334 | - [DeepLearning.ai](https://www.deeplearning.ai) : Deep Learning course by Andrew Ng, Founder of coursera 335 | - [Coding the History of Deep Learning](http://blog.floydhub.com/coding-the-history-of-deep-learning/) : Coding the History of Deep Learning 336 | - [Serpent AI](https://github.com/SerpentAI/SerpentAI) : Game Agent Framework. Helping you create AIs / Bots to play any game you own! BETA 337 | - [Blog Floydhub](https://blog.floydhub.com/colorizing-b&w-photos-with-neural-networks/) : Colorizing B&W Photos with Neural Networks 338 | 339 | 340 | ## Seminar , research writing , talks etc 341 | - [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). 342 | - [PHD MS Articles](http://www.cse.iitd.ac.in/~srsarangi/articles.html) : articles and views 343 | - [Seminar and reports](https://www.cse.iitb.ac.in/~ranade/communicationskills.html) : Everyone must read this tiny book before writing the seminar report 344 | - [Latex reference](http://latex.knobs-dials.com) : Arbitrary reference 345 | - [Begin Latex in minutes](https://github.com/LewisVo/Begin-Latex-in-minutes) : Brief Intro to LaTeX for beginners that helps you use LaTeX with ease 346 | - [Lshort](https://tobi.oetiker.ch/lshort/lshort.pdf) : The Not So Short Introduction to LATEX2ε 347 | 348 | 349 | ## Everything in one place 350 | - [reddit.com/user/ashish2199/m/cs_student_subs](https://www.reddit.com/user/ashish2199/m/cs_student_subs/) : a multisubreddit of all subreddits of topics related to computer science and programming. 351 | - [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 352 | - [Moocha](https://www.moocha.io) : Search online courses from edX, Coursera, Udacity, & more 353 | - [Rico's cheatsheets](https://devhints.io) : A set of good cheatsheets 354 | - [API Documentation](http://devdocs.io) : A one-place well known API Documentation with searchable interface 355 | - [MDN](https://developer.mozilla.org/en-US/) : A place with all the documentation of the web standards 356 | 357 | 358 | ## YouTube Channels 359 | - [C++Now (BoostCon)](https://www.youtube.com/channel/UC5e__RG9K3cHrPotPABnrwg) : C++Now (previously BoostCon) conference 360 | - [code::dive conference](https://www.youtube.com/channel/UCU0Rt8VHO5-YNQXwIjkf-1g) : code::dive conference organized by NOKIA Wrocław Technology Center 361 | - [Coding Blocks](https://www.youtube.com/user/codingblocks) : Tutorials, how to's, tips and tricks 362 | - [Computerphile](https://www.youtube.com/user/Computerphile/videos) : Must watch for every CS student 363 | - [ComputerHistory](https://www.youtube.com/user/ComputerHistory/videos) : for those who like to know how we reached where we are. 364 | - [CppCon](https://www.youtube.com/user/CppCon/videos?shelf_id=0&view=0&sort=dd) : C++ Conference 365 | - [Facebook Developers](https://www.youtube.com/user/FacebookDevelopers/videos) 366 | - [Google Developers](https://www.youtube.com/user/GoogleDevelopers/videos) 367 | - [GoogleTechTalks](https://www.youtube.com/user/GoogleTechTalks/videos) : videos on trending topics and cool stuff happening in the tech industry. 368 | - [Gynvael Coldwin](https://www.youtube.com/user/GynvaelEN) : Awesome reverse engineering and hacking(CTF) videocasts. Every wednesday are new live streams. 369 | - [HowToBecomeTV](https://www.youtube.com/user/HowToBecomeTV/videos) : contains good interviews of developers and people related to tech industry. 370 | - [Java](https://www.youtube.com/user/java/videos) : talks related to java 371 | - [JavaOne](https://www.youtube.com/channel/UCdDhYMT2USoLdh4SZIsu_1g/videos) : Java Conference 372 | - [javidx9](https://www.youtube.com/channel/UC-yuWVUplUJZvieEligKBkA/videos) : Game and graphics tutorials 373 | - [Meeting C++ YT Kanalseite](https://www.youtube.com/user/MeetingCPP/videos) : Talks on C++ 374 | - [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 375 | - [O'Reilly](https://www.youtube.com/user/OreillyMedia/videos) : interviews and talks of world's best technical writers. 376 | - [Placement Grid](https://www.youtube.com/user/PlacementGrid/videos) : Interview and campus placement experience 377 | - [Scott Meyers: Past Talks](http://www.aristeia.com/presentations.html) 378 | - [Siraj Raval](https://www.youtube.com/channel/UCWN3xxRkmTPmbKwht9FuE5A) : Artificial Intelligence and deep learning tutorials videos 379 | - [ThinMatrix](https://www.youtube.com/user/ThinMatrix/videos) : blogs and tutorials developer making a 3d game in Java using opengl 380 | - [thoughtbot](https://www.youtube.com/user/ThoughtbotVideo/videos) : talks on various topics 381 | - [Traversy Media](https://www.youtube.com/user/TechGuyWeb/videos) :Web development and programming 382 | - [yegor256](https://www.youtube.com/user/technoparkcorp/videos) 383 | - [GOTO Conference](https://www.youtube.com/user/GotoConferences) : tech talks from the GOTO Conference by Developers for Developers 384 | - [freeCodeCamp](https://www.youtube.com/channel/UC8butISFwT-Wl7EV0hUK0BQ) : freecodecamp youtube channel 385 | - [Bo Qian](https://www.youtube.com/channel/UCEOGtxYTB6vo6MQ-WQ9W_nQ) : Learn advanced c++ 386 | - [Geeksforgeeks](https://www.youtube.com/channel/UC0RhatS1pyxInC00YKjjBqQ/videos) : geeksforgeeks youtube 387 | - [Hacker earth](https://www.youtube.com/channel/UCYU6nvKyRYnE5kiG9JXkXpA) : Hacker earth youtube 388 | - [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. 389 | - [Khan Academy](https://www.youtube.com/channel/UC4a-Gbdw7vOaccHmFo40b9g) : Khan Academy youtube 390 | - [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 391 | - [Rachit Jain](https://www.youtube.com/channel/UC9fDC_eBh9e_bogw87DbGKQ/featured) : competetive programming 392 | - [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. 393 | - [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. 394 | - [TheHappieCat](https://www.youtube.com/channel/UCBsuOBu-dxj5bx1KMgmar5g) : Videos on technology, storytelling, and being happie. 395 | - [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 really not extravagant and willing to save your money and time then we recommend you to try our tutorials.experience 396 | - [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 397 | - [V. Anton Spraul](https://www.youtube.com/channel/UCLEMTlEe5RE04EoULMHWEEQ) : Videos for people who want to understand software better, including explanations of how software performs some of its most important jobs and tools programmers can use to to solve programming problems. 398 | - [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. 399 | 400 | 401 | ## Good Articles 402 | - [40 Keys Computer Science Concepts Explained In Layman’s Terms](http://carlcheo.com/compsci) 403 | - [A Gentle Introduction To Graph Theory](https://dev.to/vaidehijoshi/a-gentle-introduction-to-graph-theory) 404 | - [A programmer friendly language that compiles to Lua.](http://moonscript.org) 405 | - [A Software Developer’s Reading List](https://stevewedig.com/2014/02/03/software-developers-reading-list/) : Some good books and links in there. 406 | - [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 407 | - [Codewords.recurse](https://codewords.recurse.com/issues/four/the-language-of-choice) : The language of choice 408 | - [Data structure and Algorithms](https://techiedelight.quora.com/500-Data-Structures-and-Algorithms-practice-problems-and-their-solutions) : List of some algorithms and datastructure with their solutions. 409 | - [Dive into the byte code](https://www.wikiwand.com/en/Java_bytecode) 410 | - [Expectations of a Junior Developer](http://blog.thefirehoseproject.com/posts/expectations-of-a-junior-developer/) 411 | - [Linux Inside](https://0xax.gitbooks.io/linux-insides/content/Booting/linux-bootstrap-1.html) 412 | - [List of algorithms](https://www.wikiwand.com/en/List_of_algorithms) 413 | - [Step by Step Guide to Database Normalization](https://www.databasestar.com/normalization-in-dbms/): A guide to database normalization. 414 | - [The Key To Accelerating Your Coding Skills](http://blog.thefirehoseproject.com/posts/learn-to-code-and-be-self-reliant/) 415 | - [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/) 416 | - [We are reinventing the retail industry through innovative technology](http://multithreaded.stitchfix.com) 417 | - [What every programmer absolutely, positively needs to know about encodings and character sets to work with text](http://kunststube.net/encoding/) 418 | - [What every programmer should know about memory - PDF](http://futuretech.blinkenlights.nl/misc/cpumemory.pdf) 419 | - [Why fast pages are important](https://fly.io/articles/why-fast-pages-are-important/) : Why App Speed Matters, Revenue 420 | - [qotoqot - improving-focus](https://qotoqot.com/blog/improving-focus/) : How I got to 200 productive hours a month 421 | - [Pixel Beat - Unix](http://www.pixelbeat.org/docs/unix-parallel-tools.html) : Parallel processing with unix tools 422 | - [Learning Vim](https://hackernoon.com/learning-vim-what-i-wish-i-knew-b5dca186bef7) : What I Wish I Knew 423 | - [Write a Kernel](http://arjunsreedharan.org/post/82710718100/kernel-101-lets-write-a-kernel) : Kernel 101 – Let’s write a Kernel 424 | - [Learning JavaScript Design Patterns](https://addyosmani.com/resources/essentialjsdesignpatterns/book/) : 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 425 | 426 | ## Podcasts 427 | - [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. 428 | - [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. 429 | - [Developer Tea](https://spec.fm/podcasts/developer-tea) : A podcast for developers designed to fit inside your tea break. 430 | - [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. 431 | - [Full Stack Radio](http://www.fullstackradio.com) : Everything from product design and user experience to unit testing and system administration. 432 | - [Groovy Podcast](http://groovypodcast.podbean.com) : A podcast dedicated to the Groovy programming language and its ecosystem. 433 | - [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. 434 | - [JavaScript Jabber](https://devchat.tv/js-jabber) : A weekly discussion about JavaScript, front-end development, community, careers, and frameworks. 435 | - [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 436 | - [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. 437 | - [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. 438 | - [Soft Skills Engineering](https://softskills.audio/) : A weekly advice podcast for software developers about non-technical topics. 439 | - [Software Engineering Daily](https://softwareengineeringdaily.com) : A daily technical interview about software topics. 440 | - [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. 441 | - [Syntax](https://syntax.fm) : A Tasty Treats Podcast for Web Developers by Wes Bos & Scott Tolinski. 442 | - [The Bike Shed](http://bikeshed.fm) : Guests discuss their development experience and challenges with Ruby, Rails, JavaScript, and others. 443 | - [The Changelog](https://changelog.com/podcast) : A weekly conversation that gets to the heart of open source technologies and the people who create them. 444 | - [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. 445 | - [Blockchain Insider by 11:FS](blockchain.global/blockchain-innovation) : Podcast to learn about the Blockchain Technology 446 | - [Unchained](unchainedpodcast.co) Podcast to learn about the Blockchain Technology 447 | - [Talk python to me](https://talkpython.fm/) Podcast to learn about Python through interviews and discussions 448 | - [Python bytes](https://pythonbytes.fm) Podcast to learn about the latest happenings and trends in Python 449 | 450 | 451 | ## Building a Simple Compiler/Interpreter 452 | - [: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. 453 | - [Awesome Compilers](http://aalhour.com/awesome-compilers/) : Curated list of awesome resources on Compilers, Interpreters and Runtimes. 454 | - [Growing a compiler](http://www.cs.dartmouth.edu/~mckeeman/cs48/mxcom/gem/html/GrowingCompiler.html) : Learn how to grow a compiler 455 | - [Let’s Build A Simple Interpreter. Part 1.](https://ruslanspivak.com/lsbasi-part1/) : Try to demystify compilers by building one 456 | - [Resources for Amateur Compiler Writers](http://c9x.me/compile/bib/) : Resources for Amateur Compiler Writers 457 | - [Structure and Interpretation of Computer Programs](https://sarabander.github.io/sicp/html/index.xhtml) : Structure and Interpretation of Computer Programs 458 | - [Writing My First Compiler](https://dev.to/fcpauldiaz/writing-my-first-compiler) : Write out your first compiler 459 | - [An Intro to Compilers](https://nicoleorchard.com/blog/compilers) : How to Speak to Computers, Pre-Siri 460 | - [Write your own compiler](http://staff.polito.it/silvano.rivoira/HowToWriteYourOwnCompiler.htm) : How to write your own compiler 461 | - [Crafting Interpreters](http://craftinginterpreters.com/) A handbook for writing interpreters, first implementing a tree walking interpreter and later a bytecode virtual machine 462 | 463 | 464 | 465 | ## Tutorials 466 | - [A Hacker's Guide to Git](https://wildlyinaccurate.com/a-hackers-guide-to-git/) : for those wanting to learn git with a solid foundation 467 | - [Best Of - Gustavo Duarte](http://duartes.org/gustavo/blog/best-of/) : contains articles on various topics 468 | - [CMSI 281: Data Structures](http://cs.lmu.edu/~ray/classes/dsa/) : light weight introduction to DS 469 | - [Collecting all the cheat sheets](http://overapi.com) : cheat sheets for lots of programming languages 470 | - [C Programming](http://users.cs.cf.ac.uk/Dave.Marshall/C/CE.html) 471 | - [Programming Community Curated C++ Resources](https://hackr.io/tutorials/learn-c-plus-plus) : resources recommended by developers 472 | - [Deep C](https://www.slideshare.net/olvemaudal/deep-c) : very good presentation on C language 473 | - [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 474 | - [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. 475 | - [Git from the inside out](https://maryrosecook.com/blog/post/git-from-the-inside-out) 476 | - [Head First Design Patterns](https://www.amazon.com/Head-First-Design-Patterns-Brain-Friendly/dp/0596007124) 477 | - [How to Program in C++](http://cs.fit.edu/~mmahoney/cse2050/how2cpp.html) : Good resource for revising C++ topics and STL 478 | - [http://www.mysqltutorial.org/](http://www.mysqltutorial.org) 479 | - [indradhanush tutotials](https://indradhanush.github.io/blog/writing-a-unix-shell-part-3/) : Writing a Unix Shell 480 | - [Introduction to C Programming](http://www.le.ac.uk/users/rjm1/cotter/index.htm) 481 | - [Learn UNIX in 10 minutes](http://freeengineer.org/learnUNIXin10minutes.html) 482 | - [Learning the shell.](http://linuxcommand.org) 483 | - [Linux Journey](https://linuxjourney.com) : good site for learning linux 484 | - [Linux Tutorial](https://ryanstutorials.net/linuxtutorial/) : good resource for learning Linux 485 | - [More about Github-flavored markdown](https://guides.github.com/features/mastering-markdown/) 486 | - [MySQL Essentials](http://www.techotopia.com/index.php/MySQL_Essentials) 487 | - [Open Data Structures](http://opendatastructures.org) : Excellent resource for learning about DS and algos, provides code in various languages C++, Java and pseudocode. 488 | - [OS Course Notes](https://www2.cs.uic.edu/~jbell/CourseNotes/OperatingSystems/) : Chapter wise course notes according to Galvin's book 489 | - [Programming, Web Development, and DevOps news, tutorials and tools for beginners to experts](https://dzone.com) 490 | - [SQL (Structured Query Language) in one page : SQL.SU](http://www.cheat-sheets.org/sites/sql.su/) : a very good SQL cheat sheet 491 | - [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 492 | - [TCP/IP Illustrated Series](https://en.wikipedia.org/wiki/TCP/IP_Illustrated) 493 | - [The Bash Guide](http://guide.bash.academy) : very good guide for learning the Bash Shell 494 | - [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. 495 | - [The Linux Command Line: A Complete Introduction](https://www.amazon.com/Linux-Command-Line-Complete-Introduction/dp/1593273894) 496 | - [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) 497 | - [TopCoder Tutorials](https://www.topcoder.com/community/data-science/data-science-tutorials/) 498 | - [Tutorialspoint](https://www.tutorialspoint.com) : Text and Video Tutorials for UPSC, IAS, PCS, Civil Services, Banking, Aptitude, Questions, Answers, Explanation, Interview, Entrance, Exams, Solutions 499 | - [UNIX and Linux System Administration Handbook, 4th Edition](https://www.amazon.com/UNIX-Linux-System-Administration-Handbook/dp/0131480057) 500 | - [VimTutor+](https://vimtutorplus.herokuapp.com/exercise/1) : Learn VIM from the browser. 501 | - [W3Schools Online Web Tutorials](https://www.w3schools.com) 502 | - [Unix Shell](https://www.dartmouth.edu/~rc/classes/ksh/print_pages.shtml) : Unix shell scripting with ksh/bash 503 | - [Snap SVG](http://snapsvg.io) : The JavaScript SVG library for the modern web 504 | - [vim.rtorr](https://vim.rtorr.com) : Vim Cheat Sheet 505 | - [Open Vim](http://www.openvim.com/tutorial.html) : Interactive Vim tutorials 506 | - [Algorithm Using Dynamic Programming and A](http://thume.ca/2017/06/17/tree-diffing/) : Designing a Tree Diff Algorithm Using Dynamic Programming and A* 507 | - [Learn Python](https://www.learnpython.org) : Free Interactive Python Tutorial 508 | - [C++17](https://www.viva64.com/en/b/0533/) : A guide of C++17 509 | - [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. 510 | - [Learn Shell Programming](http://learnshell.org) : This website is intended for everyone who wishes to learn programming with Unix/Linux shell interpreters. 511 | - [Java tutorial](https://hackr.io/tutorials/learn-java) : A programming community & a great place to find the best online programming courses and tutorials. 512 | - [Explain Shell](https://explainshell.com/): Match command-line arguments to their help text 513 | 514 | 515 | ## Watch others code 516 | - [Education Ecosystem](https://www.education-ecosystem.com) : screencast of people building application, websites, games, etc. 517 | - [Twitch.tv](https://www.twitch.tv/directory/game/Science%20%26%20Technology) : The programming community of twitch. 518 | 519 | 520 | ## What should a programmer know 521 | - [GitHub.com Build software better, together](https://github.com) : Place to showcase your project and collaborate with others. (Must know Git in order to use it effectively) 522 | - [Gitlab offers free unlimited (private) repositories and unlimited collaborators](https://about.gitlab.com) 523 | - [Programmer Competency Matrix](http://sijinjoseph.com/programmer-competency-matrix/) : article for knowing what our level as a programmer is. 524 | 525 | 526 | ## Competitive programming 527 | - [Topic Wise Problem For Competitive Programmer](https://a2oj.com/categories) : Topic wise Practise Problem 528 | - [Archived Problems - Project Euler](https://projecteuler.net/archives) : Problems Archives 529 | - [Art of Problem Solving](https://artofproblemsolving.com) : Is math class too easy for you? You've come to the right place! 530 | - [CodeChef](https://www.codechef.com) : The only programming contests Web 2.0 platform 531 | - [Codefights](https://codefights.com) : Test your coding skills 532 | - [Codeforces](http://codeforces.com) : Programming Competition,Programming Contest,Online Computer Programming 533 | - [Codewars](https://www.codewars.com) : Rank up by completing code kata 534 | - [Codility](https://codility.com) : Verify and improve coding skills 535 | - [Codingame](https://www.codingame.com/start) : Learn coding through games and challenges! 536 | - [Facebook Hacker Cup](https://www.facebook.com/hackercup/) : Facebook's Programming Contest, past problems solutions and FAQ 537 | - [Google Code Jam Practice and](https://code.google.com/codejam/past-contests) : past contest problems for practice 538 | - [HackerEarth - Programming challenges and Developer jobs](https://www.hackerearth.com) 539 | - [HackerRank](https://www.hackerrank.com) : Practice coding. Compete. Find jobs. 540 | - [PKU ACM ICPC Practice problems](http://poj.org/problemlist) : Judge online for ACMACPC 541 | - [Sphere Online Judge (SPOJ)](http://www.spoj.com) : Become a true programming master Learn how to code and build efficient algorithms 542 | - [Topcoder](https://www.topcoder.com) : Deliver Faster through Crowdsourcing 543 | - [URI Online Judge](https://www.urionlinejudge.com.br/judge/en/register) : Practice coding, Compete and be a better coder. 544 | - [UVa Online Judge](https://uva.onlinejudge.org) : hundreds of problems supporting multiple languages. 545 | - [WakaTime](https://wakatime.com) : leaderboards of coding metrics collected via editor plugins 546 | 547 | 548 | ## Computer Books 549 | - [Become a Programmer, Motherfucker (list of books)](http://programming-motherfucker.com/become.html) : Exhaustive list of books from Zed A. Shaw. 550 | - [Best books for GATE CSE](http://gatecse.in/best-books-for-gatecse/) 551 | - [cses.fi/book.html](https://cses.fi/book.html) 552 | - [github.com/vhf/free-programming-books](https://github.com/EbookFoundation/free-programming-books/blob/master/free-programming-books.md) : More than 500 free ebooks on almost any language you can think of 553 | - [GitBook](https://www.gitbook.com) : GitBook helps your team write, collaborate and publish content online. 554 | - [Data Science course](https://jakevdp.github.io/PythonDataScienceHandbook/) : Python Data Science Handbook 555 | - [Goal Kicker](https://goalkicker.com) : Programming Notes for Professionals books 556 | - [The GraphQL Guide](https://graphql.guide) : The complete guide to GraphQL, the new REST ✨ 557 | 558 | 559 | ## Video Tutorials 560 | - [codedamn](https://www.youtube.com/channel/UCJUmE61LxhbhudzUugHL2wQ/videos) : front end web dev tutorials 561 | - [Code School](https://www.codeschool.com) : A PluralSight Company and an Interactive learning destination for aspiring and experienced Developers 562 | - [CodingMadeEasy](https://www.youtube.com/user/CodingMadeEasy/videos) : C++ tutorials 563 | - [CS1: Higher Computing - Richard Buckland UNSW](https://www.youtube.com/playlist?list=PL6B940F08B9773B9F) : a very good introductory CS course 564 | - [Derek Banas](https://www.youtube.com/user/derekbanas/videos) : good quality tutorials 565 | - [Design and Analysis of Algorithms](http://openclassroom.stanford.edu/MainFolder/CoursePage.php?course=IntroToAlgorithms) 566 | - [DevTips](https://www.youtube.com/user/DevTipsForDesigners/videos) : web dev tutorials 567 | - [FreeCourses](https://freecourses.github.io) : Free courses about programming 568 | - [Kathryn Hodge](https://www.youtube.com/channel/UC4DwZ2VXM2KWtzHjVk9M_xg/videos) : Has good videos for beginners 569 | - [mycodeschool](https://www.youtube.com/user/mycodeschool/videos) : Data structures and algorithms tutorials 570 | - [Pluralsight](https://www.pluralsight.com) : Learn Software Development, DevOps and Data Science through multiple short courses 571 | - [thenewboston](https://www.youtube.com/user/thenewboston/videos) : good but with too much talk as compared to actual content 572 | - [Tushar Roy](https://www.youtube.com/user/tusharroy2525/videos) : Algorithm and Data structure tutorial by an Indian Youtuber. 573 | - [Vim Tutorial Videos - Flarfnoogins](http://derekwyatt.org/vim/tutorials/index.html) : good video tutorial for learning vim 574 | - [XDA-University - Helping You Learn Android Development](https://forum.xda-developers.com/general/xda-university) 575 | - [Khan Academy](https://www.khanacademy.org/computing/computer-science) : learn about computer science for free 576 | - [Functional programming](https://www.youtube.com/watch?v=1PhArSujR_A) : John Carmack on Functional Programming (2013) 577 | - [Video about vims](https://vimeo.com/album/2838732) : A serie of tutorials about Vim 578 | 579 | 580 | ## Online Compiler and Sharing Code snippets 581 | - [CodePad](https://codepad.remoteinterview.io) : Code editor to try, test and run 25+ languages 582 | - [Codesandbox.io](https://codesandbox.io) : CodeSandbox makes it easier to create, share and reuse React projects with others. 583 | - [Godbolt.org](https://godbolt.org) : Excellent tool for exploring the assembly output of different compilers with and without optimization. 584 | - [Ideone.com](https://ideone.com) : online compiler and debugging tool for more than 60 programming languages 585 | - [JSFiddle](https://jsfiddle.net) : Test your JavaScript, CSS, HTML or CoffeeScript with online code editor 586 | - [JSBin](https://jsbin.com/) : Front end playground, Output is not framed, so it allow you to share those snippet that will break inside iframe. 587 | - [Pastebin.com](https://pastebin.com) : Pastebin can store texts like code, notes, and snippets online for a set period of time which can be shared instantly. 588 | - [C9.io](https://c9.io) : Your development environment, in the cloud 589 | - [Github Gist](https://gist.github.com) : Instantly share code, notes, and snippets. 590 | - [Coder](https://coder.com) : A Web-based development environment using Visual Studio Code as code editor 591 | 592 | 593 | ## Blogs of Developers 594 | - [Algo-Geeks](http://algo-geeks.blogspot.com) : Programming Puzzles, Math Tricks, Algorithms etc 595 | - [Andy Heathershaw](https://www.andyheathershaw.uk) : Personal website and blog of software developer Andy Heathershaw 596 | - [Antonio081014's Algorithms Codes](http://code.antonio081014.com) : The world is under the RULE. 597 | - [Archives — Ask a Manager](http://www.askamanager.org/archives) : HR related stuff 598 | - [Armin Ronacher's Thoughts and Writings](http://lucumr.pocoo.org) : blog on Python and open source 599 | - [blog.might.net](http://matt.might.net/articles/) : the blog of might dot net 600 | - [Brendon Gregg - Linux Kernel Dev](http://www.brendangregg.com) : the blog of Brendon D. Gregg 601 | - [Clean Coder Blog](http://blog.cleancoder.com) : blog of author of book "Clean Code" 602 | - [CodeAhoy](https://codeahoy.com) : Blog on software and human factors. 100% Tested on Humans. 603 | - [CoderGears Blog Insights from](http://www.codergears.com/Blog/) : the CoderGears Team 604 | - [Coding Geek - A blog about IT, programming and Java](http://coding-geek.com) : A blog about IT, programming and Java 605 | - [Coding Horror](https://blog.codinghorror.com) : one the best coding blog 606 | - [CSE Blog](http://www.cseblog.com) : quant, math, computer science puzzles 607 | - [Daedtech.com](https://www.daedtech.com) : Stories about software 608 | - [Dan Dreams of Coding](https://dandreamsofcoding.com) 609 | - [Daniel Lemire's Blog](https://lemire.me/blog/) : Daniel Lemire's blog 610 | - [Eli Bendersky](http://eli.thegreenplace.net) : everything from Python to LLVM 611 | - [Geek Land](https://avidullu.wordpress.com) : My precious collectibles 612 | - [HackerEarth Blog](http://blog.hackerearth.com) : The hackerearth blog 613 | - [IT Enthusiast](http://rodiongork.tumblr.com) : IT Enthusiast 614 | - [Joel on Software](https://www.joelonsoftware.com) : The blog of the CEO of StackOverflow 615 | - [Late Developer](https://latedev.wordpress.com) : Random thoughts of an old C++ guy 616 | - [1ucasvb's laboriginal math and physics visualization](http://1ucasvb.tumblr.com) : Lucas Vieira Barbosa's lab original math and physics visualization 617 | - [Math ∩ Programming](https://jeremykun.com) : Math ∩ Programming 618 | - [My Tech Interviews](http://www.mytechinterviews.com) : PREPARE FOR A TECHNICAL INTERVIEW 619 | - [Paul Graham Essays](http://www.paulgraham.com/articles.html) : Paul Grahan Essays 620 | - [Programming Blog](http://www.yegor256.com) : programming blog of Yegor Bugayenko 621 | - [Programming in the 21st Century](http://prog21.dadgum.com) : programming in the twenty-first century 622 | - [rudhakar Rayavaram](http://sudhakar.online) : Sudhakar Rayavaram Blog's 623 | - [Runhe Tian Coding Practice](https://tianrunhe.wordpress.com) : Technical interview questions from Apple, Google, Facebook, Amazon and Microsoft 624 | - [Small Programming Challenges and Puzzles](https://www.nayuki.io/category/programming) : Project Nayuki 625 | - [stevehanov.ca](http://stevehanov.ca/blog/) : I know how to make and sell software online, and I can share my tips with you. 626 | - [Takipi Blog](http://blog.takipi.com) : mainly focuses on Java and JVM languages 627 | - [XDA - Android Developer Forum](https://forum.xda-developers.com) : Android Open Source Developers Forum 628 | 629 | 630 | ## For improving your English 631 | - [Englishclub.com/learn-english](https://www.englishclub.com/learn-english.htm) 632 | - [Guide to Grammar and Writing](http://grammar.ccc.commnet.edu/grammar/) : for those who want to improve their english language skills 633 | - [Punctuation and Capitalization Rules](http://www.grammarbook.com/english_rules.asp) 634 | - [Purdue University Online Writing Lab (OWL)](https://owl.english.purdue.edu) 635 | - [Quia - English](https://www.quia.com/shared/english/) 636 | 637 | 638 | ## When you get bored from CS related stuff 639 | - [Barcroft TV](https://www.youtube.com/user/barcroftmedia/featured) : Daily short documentaries about the incredible variety of people that make up the world 640 | - [Big Think](https://www.youtube.com/user/bigthink/videos) : Expert driven, actionable, educational content, featuring experts ranging from Bill Clinton to Bill Nye 641 | - [ColdFusion](https://www.youtube.com/user/coldfustion/videos) : Past, present, and future of technology 642 | - [CrashCourse](https://www.youtube.com/user/crashcourse/videos) : small courses on various subjects 643 | - [Every Frame a Painting](https://www.youtube.com/user/everyframeapainting/videos) : High quality analysis of films and filmmaking 644 | - [National Geographic](https://www.youtube.com/user/NationalGeographic/videos) : High volume of high quality content from all over the world 645 | - [r/ProgrammerHumor](https://www.reddit.com/r/ProgrammerHumor/) : Subreddit dedicated to exactly what it sounds like 646 | - [Reddit the front page of the internet](https://www.reddit.com) : Where free time goes to die 647 | - [Ridddle](https://www.youtube.com/user/VineMontanaTV/videos) : A youtube channel about science, mainly, but not only, the universe and space. 648 | - [Regex Crossword](https://regexcrossword.com) : A simple crossword game where clues are regex that must be mached. 649 | - [SciShow](https://www.youtube.com/user/scishow/videos) : Answers to interesting questions that you've always wondered about 650 | - [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 651 | - [TED](https://www.youtube.com/user/TEDtalksDirector/videos) : Great talks about technology, entertainment, and design 652 | - [TestTube News](https://www.youtube.com/user/TestTubeNetwork/videos) : Interesting information about news from around the world 653 | - [How to live for long time ?](http://www.bbc.com/future/story/20170601-the-secret-to-a-long-and-healthy-life-eat-less) : The secret of longevity 654 | - [Vsauce](https://www.youtube.com/user/Vsauce/videos) : The best youtube channel 655 | - [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 656 | - [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 657 | 658 | ## Open Source Websites 659 | - [Open Hatch](https://openhatch.org) : OpenHatch is a non-profit dedicated to matching prospective free software contributors with communities, tools, and education. 660 | - [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. 661 | - [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. 662 | - [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. 663 | - [Google Open Source](https://opensource.google.com) : Google Open Source 664 | - [Red Hat Developer](https://developers.redhat.com) : The world's leading provider of open source solutions 665 | - [Open Source](https://opensource.com) : Open Source 666 | - [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. 667 | - [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. 668 | - [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 project. 669 | - [Eclipse Lab](http://www.eclipse.org/org/foundation/eclipselabs/faq.php) : Eclipse Labs is a community of open source projects that build technology based on the Eclipse platform. It provides the infrastructure services typically required by open source projects, such as code repositories, bug tracking, project web sites/wiki. Eclipse Labs is hosted by Google Code Project Hosting, so it will be very familiar to developers already using Google Code Project Hosting. 670 | - [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. 671 | - [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. 672 | - [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. 673 | - [Code Triage](https://www.codetriage.com) : Help out your favorite open source projects and become a better developer while doing it. 674 | - [Issue Hub](http://issuehub.io) : Contribute to Open Source. Search issue labels to find the right project for you 675 | - [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. 676 | - [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. 677 | - [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. 678 | 679 | ## Internships 680 | - [Chegg](http://www.chegg.com) : It is an awesome resource for finding 681 | internships, scholarships, tutors, etc. 682 | - [Internshala](https://internshala.com) : You can search internships here 683 | according to your skill sets for your interested location. It also helps you 684 | in getting a good PPO offer from the company. 685 | - [Letsintern](https://www.letsintern.com) : Get a smart and challenging 686 | internship for you from the LetsIntern. 687 | - [PerfectIntern](https://www.perfectintern.com): Get help finding a paid 688 | internship, resume prep, interview prep, and more! 689 | 690 | ## Jobs 691 | - [AngelList](https://angel.co/) : AngelList is a 692 | website for startups, angel investors, and job-seekers 693 | looking to work at startups. 694 | - [CareerBuilder](https://hiring.careerbuilder.com) : CareerBuilder is one of 695 | the largest job boards, providing job listings, resume posting, and career 696 | advice and resources to job seekers. 697 | - [Dice](https://www.dice.com) : Dice is the leading site for tech job seekers. 698 | You can search by company, job title, keyword, employment type, and location. 699 | - [Devsnap](https://devsnap.io) : Devsnap is a job aggregator for developer jobs. 700 | - [Glassdoor](https://www.glassdoor.co.in) : Find the job that's right for you. 701 | Search all the open positions on the web. Get your own personalized salary estimate. 702 | - [IAESTE](http://iaesteunitedstates.org) : Find more and amazing international internships 703 | and jobs. 704 | - [Indeed](https://www.indeed.com) : Find international jobs on Indeed and get 705 | a market salary for your dedication and devotion. 706 | - [Instahyre](https://www.instahyre.com) : Your dream job is now here. Showcase 707 | yourself to a curated list of top companies. Complete privacy and no spam. 708 | - [Mentat](https://thementat.com) : Get your dream job 10x faster. Never apply 709 | for a job ever again, talk directly to decision makers and hiring managers. 710 | - [The Muse](https://www.themuse.com) : Find everything you need to succeed from 711 | dream jobs to career advice. You can do a lot here on The Muse like exploring 712 | companies, browsing jobs, career advice, discover careers, career coaching. Try it. 713 | - [Paysa](https://www.paysa.com) : Paysa helps you in finding new and 714 | interesting jobs according to your wish. 715 | - [SimplyHired](https://www.simplyhired.com) : Simply Hired is a free job search 716 | engine (and mobile app) that takes the hassle out of getting hired and provides 717 | you with all the information you need to make a sound career move. 718 | - [Undercover Recruiter](https://theundercoverrecruiter.com) : Become Recruiter, 719 | Candidate or Employer. You can get your job easily here. 720 | - [Who is Hiring](https://whoishiring.io) : An awesome resource for searching, 721 | filtering and finding new and attractive jobs according to your needs and 722 | interests. 723 | - [ZipRecruiter](https://www.ziprecruiter.com) : The Smartest Way to Get Hired. 724 | - [RemoteML](https://remoteml.com/) : Remote Machine Learning jobs. 725 | 726 | ### Special Thanks 727 | - Please consider a github star if you find this useful and/or consider making a contribution. 728 | - 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). 729 | -------------------------------------------------------------------------------- /_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 | -------------------------------------------------------------------------------- /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 | --------------------------------------------------------------------------------