diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 000000000..6346c13bb --- /dev/null +++ b/.eslintrc @@ -0,0 +1,18 @@ +{ + "extends": [ + "next", + "next/core-web-vitals", + "prettier" + ], + "rules": { + "@next/next/no-img-element": [ + "off" + ], + "react/display-name": [ + "off" + ], + "react/jsx-no-target-blank": [ + "off" + ] + } +} diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 000000000..5854e4ab9 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +# These are supported funding model platforms +github: kamranahmedse diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 000000000..ce941c5fb --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,36 @@ + + +#### What roadmap is this issue about? + +- [ ] Frontend Roadmap +- [ ] Backend Roadmap +- [ ] DevOps Roadmap +- [ ] All Roadmaps + +#### What is this issue about? + +- [ ] Functionality of the website +- [ ] Discussion for a pull request I would want to open. +- [ ] Addition of a new item +- [ ] Removal of some existing item +- [ ] Changing in arrangement +- [ ] General suggestion +- [ ] Sharing an Idea +- [ ] Something else + +#### Please acknowledge the below listed + +- [ ] This is not a duplicate issue. I have searched and there is no existing issue for this. +- [ ] I understand that these roadmaps are highly opinionated. The purpose is to not to include everything out there in these roadmaps but to have everything that is most relevant today comparing to the other options listed. +- [ ] I have read the [contribution docs](../contributing) before opening this issue. + + +#### Enter the details about the issue here + + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..9f57c7804 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,19 @@ +#### What roadmap does this PR target? + +- [ ] Code Change +- [ ] Frontend Roadmap +- [ ] Backend Roadmap +- [ ] DevOps Roadmap +- [ ] All Roadmaps +- [ ] Guides + +#### Please acknowledge the items listed below + +- [ ] I have discussed this contribution and got a go-ahead in an issue before opening this pull request. +- [ ] This is not a duplicate issue. I have searched and there is no existing issue for this. +- [ ] I understand that these roadmaps are highly opinionated. The purpose is to not to include everything out there in these roadmaps but to have everything that is most relevant today comparing to the other options listed. +- [ ] I have read the [contribution docs](../contributing) before opening this PR. + +#### Enter the details about the contribution + + diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 000000000..d446c2649 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,31 @@ +name: Deployment to GitHub Pages +on: + push: + branches: [ master ] +env: + ROADMAP_GA_SECRET: ${{ secrets.GA_SECRET }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + CI: true + NEXT_TELEMETRY_DISABLED: 1 +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 12 + - name: Setup Environment + run: | + npm install -g yarn + yarn install + - name: Generate meta and builld + run: | + yarn meta + yarn build + - name: Deploy to GitHub Pages + run: | + git config user.email "kamranahmed.se@gmail.com" + git config user.name "Kamran Ahmed" + git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git + npm run deploy diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..31542a107 --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. +out + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.idea +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env.local +.env.development.local +.env.test.local +.env.production.local + +# vercel +.vercel diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 000000000..02ff4340e --- /dev/null +++ b/.prettierrc @@ -0,0 +1,5 @@ +{ + "semi": true, + "singleQuote": true, + "tabWidth": 2 +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 000000000..a0b60d2a5 --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +

+ +

roadmap.sh

+

Community driven roadmaps, articles and resources for developers

+

+ + roadmaps + + + roadmaps + + + roadmaps + +

+

+ +[roadmap.sh](https://roadmap.sh) is the community effort to create knowledge that is approachable for the developers. + +The website is built with Next.js, contains roadmaps which are the step by step guides for developers, guides which are the easier to understand explanations on the complex topics. Anyone can contribute to the website by suggesting changes to existing paths, adding learning resources, becoming an author by adding new guides, updating the existing guides. + +## Development + +Clone the repository, install the dependencies and start the application + +```bash +git clone https://github.com/kamranahmedse/roadmap.sh +yarn install +yarn dev +``` + +## Contributions + +* Add new Roadmap +* Suggest changes to existing roadmap +* Write an article +* Improve the site's codebase +* Write tests + diff --git a/components/content-page-header.tsx b/components/content-page-header.tsx new file mode 100644 index 000000000..ec13e690a --- /dev/null +++ b/components/content-page-header.tsx @@ -0,0 +1,60 @@ +import { Box, Container, Flex, Heading, Image, Link, Text } from '@chakra-ui/react'; +import React from 'react'; + +type ContentPageHeaderProps = { + formattedDate: string; + title: string; + subtitle: string; + author?: { + name: string; + twitter: string; + picture: string; + }, + subLink?: { + text: string; + url: string; + } +}; + +export function ContentPageHeader(props: ContentPageHeaderProps) { + const { title, subtitle, author = null, formattedDate, subLink = null } = props; + + return ( + + + + + {author?.name && ( + <> + + {''} + {author.name} + + · + + )} + + {formattedDate} + {subLink?.text && ( + <> + · + {subLink.text} + + )} + + {title} + {subtitle} + + + ); +} diff --git a/components/custom-ad.tsx b/components/custom-ad.tsx new file mode 100644 index 000000000..c883062d1 --- /dev/null +++ b/components/custom-ad.tsx @@ -0,0 +1,37 @@ +export const CustomAd = () => { + return ( +
+ + + + FM Logo + + + He Went from ZERO TO $74,000 as a Full Time Developer in 7 Weeks + + + + Sponsored by + + +
+ ); +}; diff --git a/components/dimmed-more.tsx b/components/dimmed-more.tsx new file mode 100644 index 000000000..fda55c8a8 --- /dev/null +++ b/components/dimmed-more.tsx @@ -0,0 +1,46 @@ +import { Box, Link, Text } from '@chakra-ui/react'; + +type DimmedMoreProps = { + text: string; + href: string; +}; + +export function DimmedMore(props: DimmedMoreProps) { + const { text, href } = props; + + return ( + + + + + {text} + + + + ); +} diff --git a/components/footer.tsx b/components/footer.tsx new file mode 100644 index 000000000..48d8d9808 --- /dev/null +++ b/components/footer.tsx @@ -0,0 +1,79 @@ +import { Box, Container, Flex, Image, Link, Stack, Text } from '@chakra-ui/react'; +import siteConfig from '../content/site.json'; +import { CustomAd } from './custom-ad'; + +function NavigationLinks() { + return ( + <> + + Roadmaps + Guides + Videos + About + YouTube + + + + Roadmaps + Guides + Videos + Thanks + About + YouTube + + + ); +} + +export function Footer() { + return ( + + + + + + + + + roadmap.sh + + by + @kamranahmedse + + + Community created roadmaps, articles, resources and + journeys to help you choose your path and grow in your career. + + + © roadmap.sh· + FAQs· + Terms· + Privacy + + + + + + {process.env.GA_SECRET && false && ( + + +## This isn't the full story +For brevity, I included only a few of the important snippets of code. Notably, I left out all the glue code, parsing, unit tests, and the boring parts that build character. View my [full implementation](https://github.com/veggiedefender/torrent-client) if you're interested. diff --git a/content/guides/unfamiliar-codebase.md b/content/guides/unfamiliar-codebase.md new file mode 100644 index 000000000..457489c6f --- /dev/null +++ b/content/guides/unfamiliar-codebase.md @@ -0,0 +1,3 @@ +[![](/guides/unfamiliar-codebase.png)](/guides/unfamiliar-codebase.png) + +Here is the [original tweet](https://twitter.com/kamranahmedse/status/1256340163573231616) where this image was posted. diff --git a/content/guides/upcoming.md b/content/guides/upcoming.md new file mode 100644 index 000000000..e38192e38 --- /dev/null +++ b/content/guides/upcoming.md @@ -0,0 +1,11 @@ +> **Roadmap is not ready yet**. Please check back later or [subscribe to get notified](/signup). + +While we prepare the roadmap, follow this simple advice to learn anything + +> Just **pick a project and start working on it**, you will learn all that you need along the way. + +**→**   [All Roadmaps](/roadmaps)  •  [Programming guides](/guides)  •  [Subscribe](/signup) + + + + diff --git a/content/guides/what-is-internet.md b/content/guides/what-is-internet.md new file mode 100644 index 000000000..c3ce448d7 --- /dev/null +++ b/content/guides/what-is-internet.md @@ -0,0 +1,62 @@ +Since the explosive growth of web-based applications, every developer could stand to benefit from understanding how the Internet works. In this article, accompanied with an introductory series of short videos about the Internet from [code.org](https://code.org), you will learn the basics of the Internet and how it works. After going through this article, you will be able to answer the below questions: + +* What is the Internet? +* How does the information move on the internet? +* How do the networks talk to each other and the protocols involved? +* What's the relationship between packets, routers, and reliability? +* HTTP and the HTML – How are you viewing this webpage in your browser? +* How is the information transfer on the internet made secure? +* What is cybersecurity and what are some common internet crimes? + +## What is the Internet? + +The Internet is a global network of computers connected to each other which communicate through a standardized set of protocols. + +In the video below, Vint Cerf, one of the "fathers of the internet," explains the history of how the Internet works and how no one person or organization is really in charge of it. + + + + +## Wires, Cables, and Wi-Fi + +Information on the Internet moves from computer to another in the form of bits over various mediums, including Ethernet cables, fiber optic cables, and wireless signals (i.e., radio waves). + +In the video linked below, you will learn about the different mediums for data transfer on the Internet and the pros and cons for each. + + + +## IP Addresses and DNS + +Now that you know about the physical medium for the data transfer over the internet, it's time to learn about the protocols involved. How does the information traverse from one computer to another in this massive global network of computers? + +In the video below, you will get a brief introduction to IP, DNS, and how these protocols make the Internet work. + + + +## Packets, Routing, and Reliability + +Information transfer on the Internet from one computer to another does not need to follow a fixed path; in fact, it may change paths during the transfer. This information transfer is done in the form of packets and these packets may follow different routes depending on certain factors. + +In this video, you will learn about how the packets of information are routed from one computer to another to reach the destination. + + + +## HTTP and HTML + +HTTP is the standard protocol by which webpages are transferred over the Internet. The video below is a brief introduction to HTTP and how web browsers load websites for you. + + + +## Encryption and Public Keys + +Cryptography is what keeps our communication secure on the Internet. In this short video, you will learn the basics of cryptograpy, SSL/TLS, and how they help make the communication on the Internet secure. + + + +## Cybersecurity and Crime + +In this video, you will learn about the basics of cybersecurity and common cybercrimes + + + +And that wraps it up for this article. To learn more about the Internet, [Kamran Ahmed](https://twitter.com/kamranahmedse) has a nice little guide on [DNS: How a website is found on the Internet](/guides/dns-in-one-picture). Also, go through the episodes of [howdns.works](https://howdns.works/) and read this [cartoon intro to DNS over HTTPS](https://hacks.mozilla.org/2018/05/a-cartoon-intro-to-dns-over-https/). diff --git a/content/guides/why-build-it-and-they-will-come-wont-work-anymore.md b/content/guides/why-build-it-and-they-will-come-wont-work-anymore.md new file mode 100644 index 000000000..f406c140a --- /dev/null +++ b/content/guides/why-build-it-and-they-will-come-wont-work-anymore.md @@ -0,0 +1,69 @@ +We all have heard the mantra *"build it and they will come"* many times. Stories of people building a startup or project and seemingly stumbling upon a goldmine aren't few, but they aren't the rule. These stories are still the exception in the mass of launched projects and startups. + +Before the [Wright brothers](https://en.wikipedia.org/wiki/Wright_brothers) built their Kitty Hawk, people generally believed heavy objects could not fly - physics simply forbade it. The idea to regularly board airplanes as we do it these days was unthinkable. It was considered an unrealistic daydream for humans to ever claim the sky. When the first airplanes took off, people were fascinated, of course. It was a topic people continued to talk about for ages. Technology had made something impossible possible. While the wording "build it and they will come" originated from the movie [Field of Dreams](https://en.wikipedia.org/wiki/Field_of_Dreams), this and similar historic events gave birth to the idea behind it. + +The engineers' and inventors' dreams came true: spend time doing what you love while the success follows magically. The internet and web-standards democratized access to this dream. But with it, the idea behind it faded and became less and less powerful. In 2020, there are very strong signs the popular saying isn't correct anymore. + + +Why doesn't "build it and they will come" work anymore? +------------------------------------------------------- + +There are a few reasons working hard to make "build it and they will come" a thing of the past. This being said, it doesn't mean you can't succeed building a side-project anymore. You've just got to adjust the way you are building it. + +### Building got much easier + +As a software engineer, some websites are a blessing. Most of us couldn't work without GitHub, Stackoverflow and of course Google, ahem, DuckDuckGo. These powerful sites help us to solve problems, learn new techniques and find the right libraries to make building projects easier. If any of these sites are down, most engineers take a break and go for a coffee instead of trying to continue working. Combine this with more sophisticated web-standards and easier access to tooling, and you arrive at a world where building projects isn't just a job for highly specialist developers anymore. Powerful frameworks such as [Laravel](https://laravel.com/) and [Quasar Framework](https://quasar.dev/) are available for anyone to build projects on - for free. + +In fact, building projects got to a point where some people simply build them as an exercise or hobby. If you spend some time browsing GitHub you will be surprised by the open source projects people built without any commercial goals. "Low code" and "No code" are the next wave of people building projects with less technological background. + +### Too much going on: information overload + +We are living in a world with information overload. In the online sphere, you can find a lot of useful information. But there is also a lot of noise. For each piece of information or advice you can find a number of opposing statements. This is partly due to the fact that the internet made it much easier to publish and share information. Everyone has been given a voice - for good or bad. This makes it much harder to reach potential users. Your new project probably just drowns amongst kitten videos, opinions, and news. Never has the average lifetime of published content been so low. You've got to come up with a marketing plan before setting out on the journey. + +### Smaller Problems + +Besides building being easier than ever before and attention being in short supply, there is another issue making the life of makers, inventors and engineers harder: today's problems are much smaller. Back when the previously mentioned Wright Brothers set out, they fascinated people with the problem they were aiming to address: flying. Unless your name is Elon, your problem is unlikely to attract many people naturally. As a solo developer or indie hacker, the chances are higher for having a much smaller problem in a niche (of a niche). With the information overload mentioned before, niches are pretty much the only way to build a side-project or startup and succeed. + +Does sound pretty grim for inventors, developers and engineers? Well, yes and no. We've got to tweak the approach to get in front of the eye of potential users and customers. + + +How to market your project nowadays? +------------------------------------ + +The very first step to improving the odds of success is [idea validation](https://peterthaleikis.com/business-idea-validation/). While this sounds fairly obvious, many engineers and developers still don't validate their ideas before starting to build the MVP. The result is another stale project and wasted effort. To succeed you need to work on marketing before you start building anything. In the link mentioned before, I describe my approach to validation and collecting useful marketing information at the same time. + +### Build your Audience first and the project after. + +Build your audience before you build your project. Spend your time connecting with potential users, learn from their needs and talk about their problems. This will help you market your project later on. Audience first, project second. There are numerous ways to build an audience. One of the simplest and easiest is to start with a personal or [project blog](https://startupnamecheck.com/blog/how-to-start-a-small-business-blog). + +Don't use Medium or a similar service - opt for a self-hosted blog as it allows you to build the blog freely to your needs and have decent links back to your project later on. Don't forget to add a newsletter. Newsletters are a key to reconnect in our world of short attention spans. + +### Tool by Tool + +Another approach is the "Tool by Tool" approach. I've first noticed this approach being used by Shopify. The team at Shopify are providing little tools such as a [logo generator](https://hatchful.shopify.com/) and release these tools free for anyone to use. This not just builds goodwill with people; it also allows Shopify to attract powerful backlinks to their projects. As developers we are in the perfect position to build such mini-tools. It boosts morale and drives attention at the same time. + +Spend some time evaluating where your project or product will deliver value to the end-user. Look at options to split off small, independent tools. Build these and launch them before launching the whole product. This allows you to practice launching and promoting your part-projects at the same time. With each backlink to your part-projects you will enhance your ranking in Google. An example for a maker following this approach is [Kamban](https://kambanthemaker.com/) with [FlatGA](https://flatga.io/). He built FlatGA as phase one of a bigger project currently in development. + +### Join a Maker community + +While you are building your part-projects, don't forget to discuss the progress publicly. This helps to attract an audience around your work and makes the launches easier. You can use Twitter threads and Reddit posts to share updates. A maker community such as [makerlog](https://getmakerlog.com/) or [WIP.chat](https://wip.chat) can also extend your reach. These allow you to get instant feedback, keep yourself accountable and they will enhance your reach at the same time. + +### Getting ready to Launch + +Launching seems like this special moment when you release your project into the wide world. Often this moment is combined with high expectations and developers consider launching their project the key - if not only - part of their approach to marketing. While launching can help to attract some initial customers, it shouldn't be your only idea when it comes to marketing. You should also know that launching isn't a single event. You can (and should) launch again and again. Every time you launch you are increasing the chance to reach more and new customers. After the launch is before the launch. + +### Marketing Is an On-going Fight + +Many developers plan to launch their product on a few sites and see where it takes their project from there on. This works well, if your product goes viral by luck. A much more sustainable approach is constantly working a little on it. Marketing is most effective, if done consistently. That holds true for blogging as well as most other forms of marketing. A simple approach to keep you on the path to market your project regularly is subscribing to a free [newsletter with small marketing opportunities](https://wheretopost.email). This way, you are regularly reminded and given bite-sized tasks to complete. + + +Closing Words +------------- + +I hope the article helped you to wrap your head around the idea that building side-projects alone doesn't solve any issues anymore. If you like what you've just read and want to read more, please consider subscribing to [my newsletter](https://peterthaleikis.com/newsletter). I'll send out the occasional email about interesting new articles or side-projects. + + +About the author +---------------- + +[Peter Thaleikis](https://peterthaleikis.com/) a software engineer and business owner. He has been developing web applications since around 2000. Before he started his own software development company [Bring Your Own Ideas Ltd.](https://bringyourownideas.com/), he has been Lead Developer for multiple organisations. \ No newline at end of file diff --git a/content/pages/about.md b/content/pages/about.md new file mode 100644 index 000000000..98f2b0f39 --- /dev/null +++ b/content/pages/about.md @@ -0,0 +1,67 @@ +## What is roadmap.sh? + +Roadmap.sh is the place containing community curated roadmaps, study plans, paths and resources for the budding +developers. It started as a [set of charts to guide the developers](https://github.com/kamranahmedse/developer-roadmap) +who are confused about what should they learn next but that alone wasn't enough so I expanded it into the website to get +more contributors involved. + +## What are the plans for roadmap.sh? + +The website started off as +a [simple repository containing a few charts](https://github.com/kamranahmedse/developer-roadmap) for developers and +based on my personal opinions but it could have been much more than that so I decided to expand it to a website where +people can contribute to study plans with their areas of expertise as well, add more roadmaps, write guides etc. + +We haven't opened up the sign ups for now but we will be doing. My long term plans for this website are to turn it into +a goto place for the developers to seek guidance about their careers, help others, share their journeys, incentivize the +learnings, get feedbacks on their projects etc. + +## How did you build roadmap.sh? + +The basic version of the website has been built with [Next.js](https://github.com/zeit/next.js/), is opensource and can +be found on [github](https://github.com/kamranahmedse/roadmap.sh). It was hastily done to get it out in front of the +people and get people to start contributing so it might be rough on the edges, but that is where we need your help. + +## How does it make money? + +It doesn't make any money. I have been using my personal time and budget to build it. I did not create this website with +any intentions of monetization but as a good will, to help the people get out of the frustration that I was once in. + +Having said that, I love teaching and my future plans are to be able to work full-time on roadmap.sh for which it has to +make enough money to pay for my rent, groceries, bills, travel expenses, etc but even if it doesn't it's likely I'll +continue growing the site however I can. My focus at the moment is not making money from it and just add content that +creates value for the people. + +> Sponsor the efforts by [paying as little as 5$ per month](https://github.com/sponsors/kamranahmedse) or with [one time payment via paypal](https://paypal.me/kamranahmedse). Alternatively, reach out to me at [kamranahmed.se@gmail.com](mailto:kamranahmed.se@gmail.com). + +## Can I contribute? + +You definitely can, infact you are encouraged to do that. Even your minor contributions such as typo fixes count. The +source code of the website can be [found on Github](https://github.com/kamranahmedse/roadmap.sh). Your contributions can +be: + +* Adding a new roadmap +* Updating existing roadmap +* Suggesting changes to the existing roadmaps +* Writing a Guide +* Updating an existing guide +* Fixing grammar mistakes, typos on the website or the content +* Updating the UI of the website +* Refactoring the codebase +* Becoming a sponsor + +Just make sure +to [follow the contribution guidelines](https://github.com/kamranahmedse/roadmap.sh/tree/master/contributing) when you +decide to contribute. + +## Can I redistribute the content? + +No, the license of the content on this website does not allow you to redistribute any of the content on this website +anywhere. You can use it for personal use or share the link to the content if you have to but redistribution is not +allowed. + +## What is the best way to contact you? + +Tweet or send me a message [@kamranahmedse](https://twitter.com/kamranahmedse) or email me +at [kamranahmed.se@gmail.com](mailto:kamranahmed.se@gmail.com). I get lots of messages so apologies in advance if you don't hear back +from me soon but I do reply to everyone. diff --git a/content/pages/privacy.md b/content/pages/privacy.md new file mode 100644 index 000000000..003dfc024 --- /dev/null +++ b/content/pages/privacy.md @@ -0,0 +1,78 @@ +# Privacy Policy + +By using or accessing the Services in any manner, you acknowledge that you accept the practices and policies outlined in this Privacy Policy, and you hereby consent that we will collect, use, and share your information in the following ways. Remember that your use of roadmap.sh’s Services is at all times subject to the [Terms of Use](/terms), which incorporates this Privacy Policy. Any terms we use in this Policy without defining them have the definitions given to them in the Terms of Use. + +## What does this Privacy Policy cover? + +This Privacy Policy covers our treatment of personally identifiable information ("Personal Information") that we gather when you are accessing or using our Services, but not to the practices of companies we don’t own or control, or people that we don’t manage. We gather various types of Personal Information from our users, as explained in more detail below, and we use this Personal Information internally in connection with our Services, including to personalize, provide, and improve our services, to allow you to set up a user account and profile, to contact you and allow other users to contact you, to fulfill your requests for certain products and services, and to analyze how you use the Services. In certain cases, we may also share some Personal Information with third parties, but only as described below. + +As noted in the Terms of Use, we do not knowingly collect or solicit personal information from anyone under the age of 13. If you are under 13, please do not attempt to register for the Services or send any personal information about yourself to us. If we learn that we have collected personal information from a child under age 13, we will delete that information as quickly as possible. If you believe that a child under 13 may have provided us personal information, please contact us at kamranahmed.se@gmail.com. + +## Will roadmap.sh ever change this Privacy Policy? + +We’re constantly trying to improve our Services, so we may need to change this Privacy Policy from time to time as well, but we will alert you to changes by updating the services on the website, placing a notice on the Services, by sending you an email, and/or by some other means. Please note that if you’ve opted not to receive legal notice emails from us (or you haven’t provided us with your email address), those legal notices will still govern your use of the Services, and you are still responsible for reading and understanding them. If you use the Services after any changes to the Privacy Policy have been posted, that means you agree to all of the changes. Use of information we collect now is subject to the Privacy Policy in effect at the time such information is used or collected. + +## What Information does roadmap.sh Collect? + +Information You Provide to Us: + +We receive and store any information you knowingly provide to us. For example, through the registration process and/or through your account settings, we may collect Personal Information such as your name, title, email address, phone number, and third-party account credentials (for example, your log-in credentials for Twitter or other third party sites. If you provide your third-party account credentials to us or otherwise sign in to the Services through a third party site or service, you understand some content and/or information in those accounts (“Third Party Account Information”) may be transmitted into your account with us if you authorize such transmissions], and that Third Party Account Information transmitted to our Services is covered by this Privacy Policy. Certain information may be required to register with us or to take advantage of some of our features. + +We may communicate with you if you’ve provided us the means to do so. For example, if you’ve given us your email address, we may send you promotional email offers on behalf of other businesses, or email you about your use of the Services. Also, we may receive a confirmation when you open an email from us. This confirmation helps us make our communications with you more interesting and improve our services. If you do not want to receive communications from us, please email us at kamranahmed.se@gmail.com. + +## Information Collected Automatically + +Whenever you interact with our Services, we automatically receive and record information on our server logs from your browser or device, which may include your IP address, geolocation data, device identification, “cookie” information, the type of browser and/or device you’re using to access our Services, and the page or feature you requested. “Cookies” are identifiers we transfer to your browser or device that allow us to recognize your browser or device and tell us how and when pages and features in our Services are visited and by how many people. You may be able to change the preferences on your browser or device to prevent or limit your device’s acceptance of cookies, but this may prevent you from taking advantage of some of our features. Our advertising partners may also transmit cookies to your browser or device, when you click on ads that appear on the Services. Also if you click on a link to a third party website or service, such third party may also transmit cookies to you. Again, this Privacy Policy does not cover the use of cookies by any third parties, and we aren’t responsible for their privacy policies and practices. + +When we collect the usage information described above, we only use this data in aggregate form, and not in a manner that would identify you personally. For example, this aggregate data can tell us how often users use a particular feature of the Services, and we can use that knowledge to make the Services interesting to as many users as possible. + +## Will roadmap.sh Share Any of the Personal Information it Receives? + +We may share your Personal Information with third parties as described in this section: + +Information that’s no longer personally identifiable. We may anonymize your Personal Information so that you are not individually identified, and provide that information to our partners. We may also provide aggregate usage information to our partners, who may use such information to understand how often and in what ways people use our Services, so that they, too, can provide you with an optimal online experience. However, we never disclose aggregate information to a partner in a manner that would identify you personally, as an individual. + +Advertisers: We may allow advertisers and/or merchant partners (“Advertisers”) to choose the demographic information of users who will see their advertisements and/or promotional offers and you agree that we may provide any of the information we have collected from you in non-personally identifiable form to an Advertiser, in order for that Advertiser to select the appropriate audience for those advertisements and/or offers. For example, we might use the fact you are located in San Francisco to show you ads or offers for San Francisco businesses, but we will not tell such businesses who you are. Note that if an advertiser asks us to show an ad to a certain audience or audience segment and you respond to that ad, the advertiser may conclude that you fit the description of the audience they were trying to reach. + +We may deliver a file to you through the Services (known as a “web beacon”) from an ad network. Web beacons allow ad networks to provide anonymized, aggregated auditing, research and reporting for us and for advertisers. Web beacons also enable ad networks to serve targeted advertisements to you when you visit other websites. Because your web browser must request these advertisements and web beacons from the ad network’s servers, these companies can view, edit, or set their own cookies, just as if you had requested a web page from their site. You may be able to opt-out of web beacon tracking by adjusting the settings on your browser. + +Affiliated Businesses: In certain situations, businesses or third party websites we’re affiliated with may sell or provide products or services to you through or in connection with the Services (either alone or jointly with us). You can recognize when an affiliated business is associated with such a transaction or service, and we will share your Personal Information with that affiliated business only to the extent that it is related to such transaction or service. One such service may include the ability for you to automatically transmit Third Party Account Information to your Services profile or to automatically transmit information in your Services profile to your third party account; for example, you may sign into your roadmap.sh account using your Twitter account. We have no control over the policies and practices of third party websites or businesses as to privacy or anything else, so if you choose to take part in any transaction or service relating to an affiliated website or business, please review all such business’ or websites’ policies. + +Our Agents: We employ other companies and people to perform tasks on our behalf and need to share your information with them to provide products or services to you. Unless we tell you differently, our agents do not have any right to use the Personal Information we share with them beyond what is necessary to assist us. + +User Profiles and Submissions: Certain user profile information, including your name, location, and any video or image content that such user has uploaded to the Services, may be displayed to other users to facilitate user interaction within the Services or address your request for our services. Please remember that any content you upload to your public user profile, along with any Personal Information or content that you voluntarily disclose online in a manner other users can view (on discussion boards, in messages and chat areas, etc.) becomes publicly available, and can be collected and used by anyone. Your user name may also be displayed to other users if and when you send messages or comments or upload images or videos through the Services and other users can contact you through messages and comments. Additionally, if you sign into the Services through a third party social networking site or service, your list of “friends” from that site or service may be automatically imported to the Services, and such “friends,” if they are also registered users of the Services, may be able to access certain non-public information you have entered in your Services user profile. Again, we do not control the policies and practices of any other third party site or service. + +Business Transfers: We may choose to buy or sell assets. In these types of transactions, customer information is typically one of the business assets that would be transferred. Also, if we (or our assets) are acquired, or if we go out of business, enter bankruptcy, or go through some other change of control, Personal Information could be one of the assets transferred to or acquired by a third party. + +Protection of roadmap.sh and Others: We reserve the right to access, read, preserve, and disclose any information that we reasonably believe is necessary to comply with law or court order; enforce or apply our terms of use and other agreements; or protect the rights, property, or safety of roadmap.sh, our employees, our users, or others. + +## Is Personal Information about me secure? + +Your account is protected by a password for your privacy and security. If you access your account via a third party site or service, you may have additional or different sign-on protections via that third party site or service. You must prevent unauthorized access to your account and Personal Information by selecting and protecting your password and/or other sign-on mechanism appropriately and limiting access to your computer or device and browser by signing off after you have finished accessing your account. We endeavor to protect the privacy of your account and other Personal Information we hold in our records, but unfortunately, we cannot guarantee complete security. Unauthorized entry or use, hardware or software failure, and other factors, may compromise the security of user information at any time. + +## What Personal Information can I access? + +Through your account settings, you may access, and, in some cases, edit or delete the following information you’ve provided to us: + +- first and last name +- location of residence +- age or birthday +- username + +The information you can view, update, and delete may change as the Services change. If you have any questions about viewing or updating information we have on file about you, please contact us at kamranahmed.se@gmail.com. + +Under California Civil Code Sections 1798.83-1798.84, California residents are entitled to ask us for a notice identifying the categories of Personal Information which we share with our affiliates and/or third parties for marketing purposes, and providing contact information for such affiliates and/or third parties. If you are a California resident and would like a copy of this notice, please submit a written request to: kamranahmed.se@gmail.com. + +## What choices do I have? + +You can always opt not to disclose information to us, but keep in mind some information may be needed to register with us or to take advantage of some of our features. + +You may be able to add, update, or delete information as explained above. When you update information, however, we may maintain a copy of the unrevised information in our records. You may request deletion of your account by contacting us at kamranahmed.se@gmail.com and we will disassociate our email address and Twitter account from any content or other information provided to us. Some information may remain in our records after your deletion of such information from your account. We may use any aggregated data derived from or incorporating your Personal Information after you update or delete it, but not in a manner that would identify you personally. + +## What if I have questions about this policy? + +If you have any questions or concerns regarding our privacy policies, please send us a detailed message to kamranahmed.se@gmail.com, and we will try to resolve your concerns. + + + + diff --git a/content/pages/terms.md b/content/pages/terms.md new file mode 100644 index 000000000..8d3e02932 --- /dev/null +++ b/content/pages/terms.md @@ -0,0 +1,125 @@ +# Terms of Service + +PLEASE NOTE THAT YOUR USE OF AND ACCESS TO OUR SERVICES (DEFINED BELOW) ARE SUBJECT TO THE FOLLOWING TERMS; IF YOU DO NOT AGREE TO ALL OF THE FOLLOWING, YOU MAY NOT USE OR ACCESS THE SERVICES IN ANY MANNER. + +Welcome to roadmap.sh. Please read on to learn the rules and restrictions that govern your use of our website(s), products, services and applications (the “Services”). If you have any questions, comments, or concerns regarding these terms or the Services, please contact us at kamranahmed.se@gmail.com. + +These Terms of Use (the “Terms”) are a binding contract between you and roadmap.sh (“roadmap.sh,” “we”, and “us”). You must agree to and accept all of the Terms, or you don’t have the right to use the Services. Your using the Services in any way means that you agree to all of these Terms, and these Terms will remain in effect while you use the Services. These Terms include the provisions in this document, as well as those in the Privacy Policy and Copyright Dispute Policy. + +## Will these Terms ever change? + +We are constantly trying to improve our Services, so these Terms may need to change along with the Services. We reserve the right to change the Terms at any time, but if we do, we will bring it to your attention by updating the terms on the roadmap.sh website, by sending you an email, and/or by some other means. + +If you don’t agree with the new Terms, you are free to reject them, however it means you will no longer be able to use the Services. If you use the Services in any way after a change to the Terms is effective, that means you agree to all of the changes. + +Except for changes by us as described here, no other amendment or modification of these Terms will be effective unless in writing and signed by both you and us. + +## Do these terms cover privacy? + +You can view the current roadmap.sh Privacy Policy [here](/privacy). + +The Children’s Online Privacy Protection Act (“COPPA”) requires that online service providers obtain parental consent before they knowingly collect personally identifiable information online from children who are under 13. We do not knowingly collect or solicit personally identifiable information from children under 13. If you are a child under 13, please do not attempt to register for the Services or send any personal information about yourself to us. If we learn we have collected personal information from a child under 13, we will delete that information as quickly as possible. If you believe that a child under 13 may have provided us personal information, please contact us at kamranahmed.se@gmail.com. + +## What are the basics of using roadmap.sh? + +You may be required to sign up for an account, and select a password and username. You agree to provide us with accurate, complete, and up-to-date registration information about yourself. You may not select as your username a name that you don’t have the right to use, or another person’s name with the intent to impersonate that person. You may not transfer your account to anyone else without our prior written permission. + +You represent and warrant that you are an individual of legal age to form a binding contract, or if not, you’ve received your parent’s or guardian’s permission to use the Services and gotten your parent or guardian to agree to these Terms on your behalf. + +You will only use the Services for your own internal, personal, non-commercial use, and not on behalf of or for the benefit of any third party, and only in a manner that complies with all laws that apply to you. If your use of the Services is prohibited by applicable laws, then you aren’t authorized to use the Services. We can’t and won’t be responsible for your using the Services in a way that breaks the law. + +You will not share your account or password with anyone, and you must protect the security of your account and your password. You’re responsible for any activity associated with your account. + +## Your use of the Services is subject to the following additional restrictions: + +You represent, warrant, and agree that you will not contribute any Content or User Submission (each of those terms is defined below) or otherwise use the Services or interact with the Services in a manner that: + +(a) Infringes or violates the intellectual property rights or any other rights of anyone else (including roadmap.sh); (b) Violates any law or regulation, including any applicable export control laws; (c) Is harmful, fraudulent, deceptive, threatening, harassing, defamatory, obscene, or otherwise objectionable; (d) Jeopardizes the security of your roadmap.sh account or anyone else’s (such as allowing someone else to log in to the Services as you); (e) Attempts, in any manner, to obtain the password, account, or other security information from any other user; (f) Violates the security of any computer network, or cracks any passwords or security encryption codes; (g) Runs Maillist, Listserv, any form of auto-responder or “spam” on the Services, or any processes that run or are activated while you are not logged into the Services, or that otherwise interfere with the proper working of the Services (including by placing an unreasonable load on the Services’ infrastructure); (h) “Crawls,” “scrapes,” or “spiders” any page, data, or portion of or relating to the Services or Content (through use of manual or automated means); (i) Copies or stores any significant portion of the Content; (j) Decompiles, reverse engineers, or otherwise attempts to obtain the source code or underlying ideas or information of or relating to the Services. + +A violation of any of the foregoing is grounds for termination of your right to use or access the Services. + +## What are my rights in roadmap.sh? + +The materials displayed or performed or available on or through the Services, including, but not limited to, text, graphics, data, articles, photos, images, illustrations, User Submissions, and so forth (all of the foregoing, the “Content”) are protected by copyright and/or other intellectual property laws. You promise to abide by all copyright notices, trademark rules, information, and restrictions contained in any Content you access through the Services, and you won’t use, copy, reproduce, modify, translate, publish, broadcast, transmit, distribute, perform, upload, display, license, sell or otherwise exploit for any purpose any Content not owned by you, (i) without the prior consent of the owner of that Content or (ii) in a way that violates someone else’s (including roadmap.sh’s) rights. + +You understand that roadmap.sh owns the Services. You won’t modify, publish, transmit, participate in the transfer or sale of, reproduce (except as expressly provided in this Section), create derivative works based on, or otherwise exploit any of the Services. + +The Services may allow you to copy or download certain Content; please remember that just because this functionality exists, doesn’t mean that all the restrictions above don’t apply – they do! + +## Do I have to grant any licenses to roadmap.sh or to other users? + +Anything you post, upload, share, store, or otherwise provide through the Services is your “User Submission.” Some User Submissions are viewable by other users. In order to display your User Submissions on the Services, and to allow other users to enjoy them (where applicable), you grant us certain rights in those User Submissions. Please note that all of the following licenses are subject to our Privacy Policy to the extent they relate to User Submissions that are also your personally-identifiable information. + +For all User Submissions, you hereby grant roadmap.sh a license to translate, modify (for technical purposes, for example making sure your content is viewable on an iPhone as well as a computer) and reproduce and otherwise act with respect to such User Submissions, in each case to enable us to operate the Services, as described in more detail below. This is a license only – your ownership in User Submissions is not affected. + +If you store a User Submission in your own personal roadmap.sh account, in a manner that is not viewable by any other user except you (a “Personal User Submission”), you grant roadmap.sh the license above, as well as a license to display, perform, and distribute your Personal User Submission for the sole purpose of making that Personal User Submission accessible to you and providing the Services necessary to do so. + +If you share a User Submission only in a manner that only certain specified users can view (for example, a private message to one or more other users) (a “Limited Audience User Submission”), then you grant roadmap.sh the licenses above, as well as a license to display, perform, and distribute your Limited Audience User Submission for the sole purpose of making that Limited Audience User Submission accessible to such other specified users, and providing the Services necessary to do so. Also, you grant such other specified users a license to access that Limited Audience User Submission, and to use and exercise all rights in it, as permitted by the functionality of the Services. + +If you share a User Submission publicly on the Services and/or in a manner that more than just you or certain specified users can view, or if you provide us (in a direct email or otherwise) with any feedback, suggestions, improvements, enhancements, and/or feature requests relating to the Services] (each of the foregoing, a “Public User Submission”), then you grant roadmap.sh the licenses above, as well as a license to display, perform, and distribute your Public User Submission for the purpose of making that Public User Submission accessible to all roadmap.sh users and providing the Services necessary to do so, as well as all other rights necessary to use and exercise all rights in that Public User Submission in connection with the Services and/or otherwise in connection with roadmap.sh’s business for any purpose, provided that roadmap.sh will try to notify you if it uses your Public User Submission for any reason other than displaying it on the Services. Also, you grant all other users of the Services a license to access that Public User Submission, and to use and exercise all rights in it, as permitted by the functionality of the Services. + +You agree that the licenses you grant are royalty-free, perpetual, sublicenseable, irrevocable, and worldwide, provided that when you delete your roadmap.sh account, we will stop displaying your User Submissions (other than Public User Submissions, which may remain fully available)] to other users (if applicable), but you understand and agree that it may not be possible to completely delete that content from roadmap.sh’s records, and that your User Submissions may remain viewable elsewhere to the extent that they were copied or stored by other users. + +Finally, you understand and agree that roadmap.sh, in performing the required technical steps to provide the Services to our users (including you), may need to make changes to your User Submissions to conform and adapt those User Submissions to the technical requirements of connection networks, devices, services, or media, and the foregoing licenses include the rights to do so. + +## What if I see something on the Services that infringes my copyright? + +You may have heard of the Digital Millennium Copyright Act (the “DMCA”), as it relates to online service providers, like roadmap.sh, being asked to remove material that allegedly violates someone’s copyright. We respect others’ intellectual property rights, and we reserve the right to delete or disable Content alleged to be infringing, and to terminate the accounts of repeat alleged infringers. + +## Who is responsible for what I see and do on the Services? + +Any information or content publicly posted or privately transmitted through the Services is the sole responsibility of the person from whom such content originated, and you access all such information and content at your own risk, and we aren’t liable for any errors or omissions in that information or content or for any damages or loss you might suffer in connection with it. We cannot control and have no duty to take any action regarding how you may interpret and use the Content or what actions you may take as a result of having been exposed to the Content, and you hereby release us from all liability for you having acquired or not acquired Content through the Services. We can’t guarantee the identity of any users with whom you interact in using the Services and are not responsible for which users gain access to the Services. + +You are responsible for all Content you contribute, in any manner, to the Services, and you represent and warrant you have all rights necessary to do so, in the manner in which you contribute it. You will keep all your registration information accurate and current. You are responsible for all your activity in connection with the Services. + +The Services may contain links or connections to third party websites or services that are not owned or controlled by roadmap.sh. When you access third party websites or use third party services, you accept that there are risks in doing so, and that roadmap.sh is not responsible for such risks. We encourage you to be aware when you leave the Services and to read the terms and conditions and privacy policy of each third party website or service that you visit or utilize. + +roadmap.sh has no control over, and assumes no responsibility for, the content, accuracy, privacy policies, or practices of or opinions expressed in any third party websites or by any third party that you interact with through the Services. In addition, roadmap.sh will not and cannot monitor, verify, censor or edit the content of any third party site or service. By using the Services, you release and hold us harmless from any and all liability arising from your use of any third party website or service. + +Your interactions with organizations and/or individuals found on or through the Services, including payment and delivery of goods or services, and any other terms, conditions, warranties or representations associated with such dealings, are solely between you and such organizations and/or individuals. You should make whatever investigation you feel necessary or appropriate before proceeding with any online or offline transaction with any of these third parties. You agree that roadmap.sh shall not be responsible or liable for any loss or damage of any sort incurred as the result of any such dealings. + +If there is a dispute between participants on this site, or between users and any third party, you agree that roadmap.sh is under no obligation to become involved. In the event that you have a dispute with one or more other users, you release roadmap.sh, its officers, employees, agents, and successors from claims, demands, and damages of every kind or nature, known or unknown, suspected or unsuspected, disclosed or undisclosed, arising out of or in any way related to such disputes and/or our Services. If you are a California resident, you shall and hereby do waive California Civil Code Section 1542, which says: "A general release does not extend to claims which the creditor does not know or suspect to exist in his or her favor at the time of executing the release, which, if known by him or her must have materially affected his or her settlement with the debtor." + +## Will roadmap.sh ever change the Services? + +We’re always trying to improve the Services, so they may change over time. We may suspend or discontinue any part of the Services, or we may introduce new features or impose limits on certain features or restrict access to parts or all of the Services. We’ll try to give you notice when we make a material change to the Services that would adversely affect you, but this isn’t always practical. Similarly, we reserve the right to remove any Content from the Services at any time, for any reason (including, but not limited to, if someone alleges you contributed that Content in violation of these Terms), in our sole discretion, and without notice. + +## Does roadmap.sh cost anything? + +The roadmap.sh Services are currently free, but we reserve the right to charge for certain or all Services in the future. We will notify you before any Services you are then using begin carrying a fee, and if you wish to continue using such Services, you must pay all applicable fees for such Services. + +## What if I want to stop using roadmap.sh? + +You’re free to do that at any time, by contacting us at kamranahmed.se@gmail.com; please refer to our Privacy Policy, as well as the licenses above, to understand how we treat information you provide to us after you have stopped using our Services. roadmap.sh is also free to terminate (or suspend access to) your use of the Services or your account, for any reason in our discretion, including your breach of these Terms. roadmap.sh has the sole right to decide whether you are in violation of any of the restrictions set forth in these Terms. + +Account termination may result in destruction of any Content associated with your account, so keep that in mind before you decide to terminate your account. We will try to provide advance notice to you prior to our terminating your account so that you are able to retrieve any important User Submissions you may have stored in your account (to the extent allowed by law and these Terms), but we may not do so if we determine it would be impractical, illegal, not in the interest of someone’s safety or security, or otherwise harmful to the rights or property of roadmap.sh. + +Provisions that, by their nature, should survive termination of these Terms shall survive termination. By way of example, all of the following will survive termination: any obligation you have to pay us or indemnify us, any limitations on our liability, any terms regarding ownership or intellectual property rights, and terms regarding disputes between us. + +## What if I use roadmap.sh via an app available on the Apple App Store? + +These Terms apply to your use of all the Services, including the iOS applications available via the Apple, Inc. (“Apple”) App Store (the “Application”), but the following additional terms also apply to the Application: + +(a) Both you and roadmap.sh acknowledge that the Terms are concluded between you and roadmap.sh only, and not with Apple, and that Apple is not responsible for the Application or the Content; (b) The Application is licensed to you on a limited, non-exclusive, non-transferrable, non-sublicensable basis, solely to be used in connection with the Services for your private, personal, non-commercial use, subject to all the terms and conditions of these Terms as they are applicable to the Services; (c) You will only use the Application in connection with an Apple device that you own or control; (d) You acknowledge and agree that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the Application; (e) In the event of any failure of the Application to conform to any applicable warranty, including those implied by law, you may notify Apple of such failure; upon notification, Apple’s sole warranty obligation to you will be to refund to you the purchase price, if any, of the Application; (f) You acknowledge and agree that roadmap.sh, and not Apple, is responsible for addressing any claims you or any third party may have in relation to the Application; (g) You acknowledge and agree that, in the event of any third party claim that the Application or your possession and use of the Application infringes that third party’s intellectual property rights, roadmap.sh, and not Apple, will be responsible for the investigation, defense, settlement and discharge of any such infringement claim; (h) You represent and warrant that you are not located in a country subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country, and that you are not listed on any U.S. Government list of prohibited or restricted parties; (i) Both you and roadmap.sh acknowledge and agree that, in your use of the Application, you will comply with any applicable third party terms of agreement which may affect or be affected by such use; and (j) Both you and roadmap.sh acknowledge and agree that Apple and Apple’s subsidiaries are third party beneficiaries of these Terms, and that upon your acceptance of these Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce these Terms against you as the third party beneficiary hereof. + + +## What are roadmap.sh's Terms of Sale? + +If you purchase any goods or services or license any software through the site whether or not in connection with an Offer or Discount, in addition to agreeing to these Terms of Use, you are agreeing to the Terms of Sale, available here. + +## What else do I need to know? + +Warranty Disclaimer. Neither roadmap.sh nor its licensors or suppliers makes any representations or warranties concerning any content contained in or accessed through the Services, and we will not be responsible or liable for the accuracy, copyright compliance, legality, or decency of material contained in or accessed through the Services. We (and our licensors and suppliers) make no representations or warranties regarding suggestions or recommendations of services or products offered or purchased through the Services. Products and services purchased or offered (whether or not following such recommendations and suggestions) through the Services are provided “AS IS” and without any warranty of any kind from roadmap.sh or others (unless, with respect to such others only, provided expressly and unambiguously in writing by a designated third party for a specific product). THE SERVICES AND CONTENT ARE PROVIDED BY ROADMAP.SH (AND ITS LICENSORS AND SUPPLIERS) ON AN “AS-IS” BASIS, WITHOUT WARRANTIES OR ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR THAT USE OF THE SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE. SOME STATES DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATIONS MAY NOT APPLY TO YOU. + +Limitation of Liability. TO THE FULLEST EXTENT ALLOWED BY APPLICABLE LAW, UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, TORT, CONTRACT, STRICT LIABILITY, OR OTHERWISE) SHALL ROADMAP.SH (OR ITS LICENSORS OR SUPPLIERS) BE LIABLE TO YOU OR TO ANY OTHER PERSON FOR (A) ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY KIND, INCLUDING DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, ACCURACY OF RESULTS, OR COMPUTER FAILURE OR MALFUNCTION, OR (B) ANY AMOUNT, IN THE AGGREGATE, IN EXCESS OF THE GREATER OF (I) $100 OR (II) THE AMOUNTS PAID BY YOU TO ROADMAP.SH IN CONNECTION WITH THE SERVICES IN THE TWELVE (12) MONTH PERIOD PRECEDING THIS APPLICABLE CLAIM, OR (III) ANY MATTER BEYOND OUR REASONABLE CONTROL. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES, SO THE ABOVE LIMITATION AND EXCLUSIONS MAY NOT APPLY TO YOU. + +Indemnity. To the fullest extent allowed by applicable law, You agree to indemnify and hold roadmap.sh, its affiliates, officers, agents, employees, and partners harmless from and against any and all claims, liabilities, damages (actual and consequential), losses and expenses (including attorneys’ fees) arising from or in any way related to any third party claims relating to (a) your use of the Services (including any actions taken by a third party using your account), and (b) your violation of these Terms. In the event of such a claim, suit, or action (“Claim”), we will attempt to provide notice of the Claim to the contact information we have for your account (provided that failure to deliver such notice shall not eliminate or reduce your indemnification obligations hereunder). + +Assignment. You may not assign, delegate or transfer these Terms or your rights or obligations hereunder, or your Services account, in any way (by operation of law or otherwise) without roadmap.sh’s prior written consent. We may transfer, assign, or delegate these Terms and our rights and obligations without consent. + +Choice of Law; Arbitration. These Terms are governed by and will be construed under the laws of the State of California, without regard to the conflicts of laws provisions thereof. Any dispute arising from or relating to the subject matter of these Terms shall be finally settled in San Francisco County, California, in English, in accordance with the Streamlined Arbitration Rules and Procedures of Judicial Arbitration and Mediation Services, Inc. ("JAMS") then in effect, by one commercial arbitrator with substantial experience in resolving intellectual property and commercial contract disputes, who shall be selected from the appropriate list of JAMS arbitrators in accordance with such Rules. Judgment upon the award rendered by such arbitrator may be entered in any court of competent jurisdiction. Notwithstanding the foregoing obligation to arbitrate disputes, each party shall have the right to pursue injunctive or other equitable relief at any time, from any court of competent jurisdiction. For all purposes of this Agreement, the parties consent to exclusive jurisdiction and venue in the state or federal courts located in, respectively, San Francisco County, California, or the Northern District of California. Any arbitration under this Agreement will take place on an individual basis: class arbitrations and class actions are not permitted. YOU UNDERSTAND AND AGREE THAT BY ENTERING INTO THIS AGREEMENT, YOU AND ROADMAP.SH ARE EACH WAIVING THE RIGHT TO TRIAL BY JURY OR TO PARTICIPATE IN A CLASS ACTION. + +Miscellaneous. You will be responsible for paying, withholding, filing, and reporting all taxes, duties, and other governmental assessments associated with your activity in connection with the Services, provided that roadmap.sh may, in its sole discretion, do any of the foregoing on your behalf or for itself as it sees fit. The failure of either you or us to exercise, in any way, any right herein shall not be deemed a waiver of any further rights hereunder. If any provision of these Terms is found to be unenforceable or invalid, that provision will be limited or eliminated, to the minimum extent necessary, so that these Terms shall otherwise remain in full force and effect and enforceable. You and roadmap.sh agree that these Terms are the complete and exclusive statement of the mutual understanding between you and roadmap.sh, and that it supersedes and cancels all previous written and oral agreements, communications and other understandings relating to the subject matter of these Terms. You hereby acknowledge and agree that you are not an employee, agent, partner, or joint venture of roadmap.sh, and you do not have any authority of any kind to bind roadmap.sh in any respect whatsoever. Except as expressly set forth in the section above regarding the Apple Application, you and roadmap.sh agree there are no third party beneficiaries intended under these Terms. + + + diff --git a/content/roadmaps.json b/content/roadmaps.json new file mode 100644 index 000000000..4d9d8835c --- /dev/null +++ b/content/roadmaps.json @@ -0,0 +1,284 @@ +[ + { + "seo": { + "title": "Learn to become a modern frontend developer", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for modern frontend development. Learn to become a modern frontend developer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming a developer", + "guide to becoming a frontend developer", + "frontend developer", + "frontend engineer", + "frontend skills", + "frontend development", + "javascript developer", + "frontend development skills", + "frontend development skills test", + "frontend engineer roadmap", + "frontend developer roadmap", + "become a frontend developer", + "frontend developer career path", + "javascript developer", + "modern javascript developer", + "node developer", + "skills for frontend development", + "learn frontend development", + "what is frontend development", + "frontend developer quiz", + "frontend developer interview questions" + ] + }, + "title": "Frontend Developer", + "description": "Step by step guide to becoming a modern frontend developer in 2021", + "featuredTitle": "Frontend", + "featuredDescription": "Step by step guide to becoming a frontend developer in 2021", + "author": { + "name": "Kamran Ahmed", + "url": "https://twitter.com/kamranahmedse" + }, + "featured": true, + "imagePath": "/roadmaps/frontend.png", + "resourcesPath": "/roadmaps/1-frontend/resources.md", + "pdfUrl": "https://kamranahmedse.gumroad.com/l/frontend-roadmap", + "id": "frontend", + "isUpcoming": false + }, + { + "seo": { + "title": "Learn to become a modern backend developer", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for modern backend development. Learn to become a modern backend developer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming a developer", + "guide to becoming a backend developer", + "backend developer", + "backend engineer", + "backend skills", + "backend development", + "javascript developer", + "backend development skills", + "backend development skills test", + "backend engineer roadmap", + "backend developer roadmap", + "become a backend developer", + "backend developer career path", + "javascript developer", + "modern javascript developer", + "node developer", + "skills for backend development", + "learn backend development", + "what is backend development", + "backend developer quiz", + "backend developer interview questions" + ] + }, + "title": "Backend Developer", + "description": "Step by step guide to becoming a modern backend developer in 2021", + "featuredTitle": "Backend", + "featuredDescription": "Step by step guide to becoming a backend developer in 2021", + "featured": true, + "imagePath": "/roadmaps/backend.png", + "resourcesPath": "/roadmaps/2-backend/resources.md", + "author": { + "name": "Kamran Ahmed", + "url": "https://twitter.com/kamranahmedse" + }, + "pdfUrl": "https://kamranahmedse.gumroad.com/l/backend-roadmap", + "id": "backend", + "isUpcoming": false + }, + { + "seo": { + "title": "DevOps Roadmap: Learn to become a DevOps Engineer or SRE", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for DevOps. Learn to become a modern DevOps engineer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming a devops enginer", + "devops roadmap", + "sre roadmap", + "site reliability engineer roadmap", + "operations roles", + "become devops", + "devops skills", + "modern devops skills", + "devops skills test", + "skills for devops", + "learn devops", + "what is devops", + "what is sre", + "devops quiz", + "devops interview questions" + ] + }, + "title": "DevOps Roadmap", + "description": "Step by step guide for DevOps, SRE or any other Operations Role in 2021", + "featuredTitle": "DevOps", + "featuredDescription": "Step by step guide for DevOps or operations role in 2021", + "featured": true, + "imagePath": "/roadmaps/devops.png", + "resourcesPath": "/roadmaps/3-devops/resources.md", + "versions": [ + "latest", + "2018", + "2017" + ], + "author": { + "name": "Kamran Ahmed", + "url": "https://twitter.com/kamranahmedse" + }, + "pdfUrl": "https://kamranahmedse.gumroad.com/l/devops-roadmap", + "id": "devops", + "isUpcoming": false + }, + { + "seo": { + "title": "React Developer Roadmap: Learn to become a React developer", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for react development. Learn to become a modern React developer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming a react developer", + "react developer roadmap", + "react roadmap", + "become react developer", + "react developer skills", + "react skills test", + "skills for react development", + "learn react development", + "what is react", + "react quiz", + "react interview questions" + ] + }, + "title": "React Developer", + "description": "Everything that is there to learn about React and the ecosystem in 2021.", + "featuredTitle": "React", + "featuredDescription": "Step by step guide to become a React Developer in 2021", + "isTextHeavy": false, + "isCommunity": false, + "featured": true, + "contentPath": "/roadmaps/4-react/landscape.md", + "resourcesPath": "/roadmaps/4-react/resources.md", + "versions": [ + "latest", + "2018", + "2017" + ], + "author": { + "name": "Kamran Ahmed", + "url": "https://twitter.com/kamranahmedse" + }, + "pdfUrl": "https://kamranahmedse.gumroad.com/l/react-roadmap", + "id": "react", + "isUpcoming": false + }, + { + "seo": { + "title": "DBA Roadmap: Learn to become a database administrator with PostgreSQL", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for DevOps. Learn to become a modern DevOps engineer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming a database administrator", + "guide to becoming a DBA", + "dba roadmap", + "db administrator roadmap", + "database administrator roadmap", + "postgresql roadmap", + "dba skills", + "db administrator skills", + "become dba", + "postgresql skills", + "modern dba skills", + "dba skills test", + "skills for dba", + "skills for database administrator", + "learn dba", + "what is dba", + "database administrator quiz", + "dba interview questions" + ] + }, + "title": "PostgreSQL DBA", + "description": "Step by step guide to becoming a modern PostgreSQL DB Administrator in 2021", + "featuredTitle": "DBA", + "featuredDescription": "Step by step guide to become a PostgreSQL DBA in 2021", + "contentPath": "/roadmaps/5-postgresql-dba/landscape.md", + "resourcesPath": "/roadmaps/5-postgresql-dba/resources.md", + "author": { + "name": "Alexey Lesovsky", + "url": "https://github.com/lesovsky" + }, + "isCommunity": true, + "isTextHeavy": true, + "featured": true, + "detailed": false, + "versions": [], + "id": "postgresql-dba", + "isUpcoming": false + }, + { + "seo": { + "title": "Android Developer Roadmap: Learn to become an Android developer", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for android development. Learn to become a modern Android developer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming an android developer", + "android developer roadmap", + "android roadmap", + "become android developer", + "android developer skills", + "android skills test", + "skills for android development", + "learn android development", + "what is android", + "android quiz", + "android interview questions" + ] + }, + "title": "Android Developer", + "description": "Step by step guide to becoming an Android developer in 2021", + "featuredTitle": "Android", + "featuredDescription": "Step by step guide to becoming an Android Developer in 2021", + "isTextHeavy": true, + "isCommunity": true, + "featured": true, + "contentPath": "/roadmaps/6-android/landscape.md", + "resourcesPath": "/roadmaps/6-android/resources.md", + "versions": [ + "latest", + "2018", + "2017" + ], + "author": { + "name": "Kamran Ahmed", + "url": "https://twitter.com/kamranahmedse" + }, + "id": "android", + "isUpcoming": false + }, + { + "seo": { + "title": "QA Roadmap: Learn to become a modern QA engineer", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for modern QA development. Learn to become a modern QA engineer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming a QA engineer", + "QA engineer", + "QA skills", + "QA development skills", + "QA development skills test", + "QA engineer roadmap", + "become a QA engineer", + "QA engineer career path", + "skills for QA development", + "what is QA engineer", + "QA engineer quiz", + "QA engineer interview questions" + ] + }, + "title": "QA Engineer", + "description": "Steps to follow in order to become a modern QA Engineer in 2021", + "featuredTitle": "QA", + "featuredDescription": "Step by step guide to becoming a modern QA Engineer in 2021", + "isUpcoming": true, + "contentPath": "/roadmaps/7-qa/landscape.md", + "resourcesPath": "/roadmaps/7-qa/resources.md", + "author": { + "name": "Anas Fitiani", + "url": "https://github.com/anas-qa" + }, + "id": "qa" + } +] \ No newline at end of file diff --git a/content/roadmaps/1-frontend/meta.json b/content/roadmaps/1-frontend/meta.json new file mode 100644 index 000000000..08a0470ab --- /dev/null +++ b/content/roadmaps/1-frontend/meta.json @@ -0,0 +1,41 @@ +{ + "seo": { + "title": "Learn to become a modern frontend developer", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for modern frontend development. Learn to become a modern frontend developer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming a developer", + "guide to becoming a frontend developer", + "frontend developer", + "frontend engineer", + "frontend skills", + "frontend development", + "javascript developer", + "frontend development skills", + "frontend development skills test", + "frontend engineer roadmap", + "frontend developer roadmap", + "become a frontend developer", + "frontend developer career path", + "javascript developer", + "modern javascript developer", + "node developer", + "skills for frontend development", + "learn frontend development", + "what is frontend development", + "frontend developer quiz", + "frontend developer interview questions" + ] + }, + "title": "Frontend Developer", + "description": "Step by step guide to becoming a modern frontend developer in 2021", + "featuredTitle": "Frontend", + "featuredDescription": "Step by step guide to becoming a frontend developer in 2021", + "author": { + "name": "Kamran Ahmed", + "url": "https://twitter.com/kamranahmedse" + }, + "featured": true, + "imagePath": "/roadmaps/frontend.png", + "resourcesPath": "./resources.md", + "pdfUrl": "https://kamranahmedse.gumroad.com/l/frontend-roadmap" +} diff --git a/content/roadmaps/1-frontend/resources.md b/content/roadmaps/1-frontend/resources.md new file mode 100644 index 000000000..c60e71242 --- /dev/null +++ b/content/roadmaps/1-frontend/resources.md @@ -0,0 +1,76 @@ +
+ This page is incomplete and is being worked upon. Please check back later or subscribe / follow me on twitter to get notified. Also, feel free to contribute by suggesting the resources in the issues. +
+ +# Become a Frontend Developer +Before I go ahead and list down the resources, please know that the roadmap and the list below is exhaustive and you don't need to know it all from the get go. For frontend development, all you need to get started with is learn some basic HTML, CSS and JavaScript and start working on projects; everything else you will learn along the way. + +## Internet and how it works? + +Get the basic understanding of internet, browsers, networks and other relevant knowledge. + +* What is Internet? +* How the internet works in 5 minutes +* What is HTTP and how it evolved? +* HTTP/3: the past, the present, and the future +* What Is HTTP/3 – Lowdown on the Fast New UDP-Based Protocol +* How Browsers Work: Behind the scenes of modern web browsers +* DNS as Fast As Possible +* How DNS works? +* DNS in One Picture + +## Learn HTML +HTML provides the skeleton of a webpage. Learn the basics of HTML; learn the basic tags, learn how to write semantic HTML, understand basic SEO, learn how to divide your pages into sections that will help you style them. + +Please know that I have put multiple links for each resource. While you may pick something new while going through each, you don't need to go through all of them - if you feel like you have understood the concepts and are just repeating what you learnt, you may skip the resource and move to exercises section. + + +* HTML Crash Course For Absolute Beginners +* W3Schools – HTML Tutorial +* HTML Full Course - Build a Website Tutorial +* A few HTML tips +* Six tips to set up a better HTML document +* HTML Semantic Elements +* HTML elements reference + +## Style your pages with CSS +With the help of HTML, you create structure for your pages. CSS allows you to style your pages and make them pretty. If you take the analogy of human body, the skeleton would be the HTML, skin would be the CSS and muscles that help us move would be JavaScript - we will learn more about JavaScript in the coming sections. + +* W3Schools – CSS Tutorial +* CSS Crash Course For Absolute Beginners +* Build An HTML5 Website With A Responsive Layout +* Flexbox CSS In 20 Minutes + +## Basics of JavaScript +JavaScript allows you to add interactivity to your pages. Common examples that you may have seen on the websites are sliders, click interactions, popups and so on. In this section, you will learn the basics of JavaScript. + +* W3Schools – JavaScript Tutorial +* JavaScript Crash Course for Beginners +* Build a Netflix Landing Page Clone with HTML, CSS & JS + +## Version Control Systems and Git + +Version control systems allow you to track changes to your codebase/files over time. They allow you to go back to some previous version of the codebase without any issues. Also, they help in collaborating with people working on the same code – if you’ve ever collaborated with other people on a project, you might already know the frustration of copying and merging the changes from someone else into your codebase; version control systems allow you to get rid of this issue. + +In this section, you will learn what version control systems are and understand how to use Git which is the de facto VCS. + +* Version Control System Introduction +* Git & GitHub Crash Course For Beginners +* Learn Git in 20 Minutes + +Now that you know what git is go ahead and create an account on [GitHub](https://github.com) and push everything that you do from now on to GitHub so that you can get the practice and get it reviewed from the other people in the community. + +## Modern JavaScript + +In this section you will learn how to use package managers and get started with the "modern JavaScript". + +* Modern JavaScript for Dinosaurs (Don't worry if you don't understand some parts of it) +* What is NPM and how to use it +* NPM Crash Course + +
+
+
+
+
+
diff --git a/content/roadmaps/2-backend/meta.json b/content/roadmaps/2-backend/meta.json new file mode 100644 index 000000000..076cd855e --- /dev/null +++ b/content/roadmaps/2-backend/meta.json @@ -0,0 +1,41 @@ +{ + "seo": { + "title": "Learn to become a modern backend developer", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for modern backend development. Learn to become a modern backend developer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming a developer", + "guide to becoming a backend developer", + "backend developer", + "backend engineer", + "backend skills", + "backend development", + "javascript developer", + "backend development skills", + "backend development skills test", + "backend engineer roadmap", + "backend developer roadmap", + "become a backend developer", + "backend developer career path", + "javascript developer", + "modern javascript developer", + "node developer", + "skills for backend development", + "learn backend development", + "what is backend development", + "backend developer quiz", + "backend developer interview questions" + ] + }, + "title": "Backend Developer", + "description": "Step by step guide to becoming a modern backend developer in 2021", + "featuredTitle": "Backend", + "featuredDescription": "Step by step guide to becoming a backend developer in 2021", + "featured": true, + "imagePath": "/roadmaps/backend.png", + "resourcesPath": "./resources.md", + "author": { + "name": "Kamran Ahmed", + "url": "https://twitter.com/kamranahmedse" + }, + "pdfUrl": "https://kamranahmedse.gumroad.com/l/backend-roadmap" +} diff --git a/content/roadmaps/2-backend/resources.md b/content/roadmaps/2-backend/resources.md new file mode 100644 index 000000000..9ea876887 --- /dev/null +++ b/content/roadmaps/2-backend/resources.md @@ -0,0 +1,7 @@ +> **We are still preparing the resources**. Please check back later or [subscribe to get notified](/signup). + +While we prepare the list, follow this simple advice to learn anything + +> Just **pick a project and start working on it**, you will learn all that you need along the way. + +**→**   [All Roadmaps](/roadmaps)  •  [Programming guides](/guides)  •  [Subscribe](/signup) diff --git a/content/roadmaps/3-devops/meta.json b/content/roadmaps/3-devops/meta.json new file mode 100644 index 000000000..238876eea --- /dev/null +++ b/content/roadmaps/3-devops/meta.json @@ -0,0 +1,40 @@ +{ + "seo": { + "title": "DevOps Roadmap: Learn to become a DevOps Engineer or SRE", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for DevOps. Learn to become a modern DevOps engineer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming a devops enginer", + "devops roadmap", + "sre roadmap", + "site reliability engineer roadmap", + "operations roles", + "become devops", + "devops skills", + "modern devops skills", + "devops skills test", + "skills for devops", + "learn devops", + "what is devops", + "what is sre", + "devops quiz", + "devops interview questions" + ] + }, + "title": "DevOps Roadmap", + "description": "Step by step guide for DevOps, SRE or any other Operations Role in 2021", + "featuredTitle": "DevOps", + "featuredDescription": "Step by step guide for DevOps or operations role in 2021", + "featured": true, + "imagePath": "/roadmaps/devops.png", + "resourcesPath": "./resources.md", + "versions": [ + "latest", + "2018", + "2017" + ], + "author": { + "name": "Kamran Ahmed", + "url": "https://twitter.com/kamranahmedse" + }, + "pdfUrl": "https://kamranahmedse.gumroad.com/l/devops-roadmap" +} diff --git a/content/roadmaps/3-devops/resources.md b/content/roadmaps/3-devops/resources.md new file mode 100644 index 000000000..9ea876887 --- /dev/null +++ b/content/roadmaps/3-devops/resources.md @@ -0,0 +1,7 @@ +> **We are still preparing the resources**. Please check back later or [subscribe to get notified](/signup). + +While we prepare the list, follow this simple advice to learn anything + +> Just **pick a project and start working on it**, you will learn all that you need along the way. + +**→**   [All Roadmaps](/roadmaps)  •  [Programming guides](/guides)  •  [Subscribe](/signup) diff --git a/content/roadmaps/4-react/landscape.md b/content/roadmaps/4-react/landscape.md new file mode 100644 index 000000000..444f08245 --- /dev/null +++ b/content/roadmaps/4-react/landscape.md @@ -0,0 +1,7 @@ +The intent of this guide is to give you an idea about the React ecosystem and to help guide your learning if you are confused. We have another [roadmap on the Frontend Development](/frontend) that focuses on the frontend development if you are interested in that. + +Also, please note that the list below is exhaustive, and the items are listed in no particular order. You don't need to learn everything listed in the picture, however knowing what you don't know is as important as knowing things. + +![](/roadmaps/react.png) + +Please note that the list is opinionated, and you might have different opinions than those of the author. Having said that, [we would love to hear your opinions](https://github.com/kamranahmedse/roadmap.sh/issues/new) and incorporate them in the picture if suitable. diff --git a/content/roadmaps/4-react/meta.json b/content/roadmaps/4-react/meta.json new file mode 100644 index 000000000..4d5e28212 --- /dev/null +++ b/content/roadmaps/4-react/meta.json @@ -0,0 +1,38 @@ +{ + "seo": { + "title": "React Developer Roadmap: Learn to become a React developer", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for react development. Learn to become a modern React developer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming a react developer", + "react developer roadmap", + "react roadmap", + "become react developer", + "react developer skills", + "react skills test", + "skills for react development", + "learn react development", + "what is react", + "react quiz", + "react interview questions" + ] + }, + "title": "React Developer", + "description": "Everything that is there to learn about React and the ecosystem in 2021.", + "featuredTitle": "React", + "featuredDescription": "Step by step guide to become a React Developer in 2021", + "isTextHeavy": false, + "isCommunity": false, + "featured": true, + "contentPath": "./landscape.md", + "resourcesPath": "./resources.md", + "versions": [ + "latest", + "2018", + "2017" + ], + "author": { + "name": "Kamran Ahmed", + "url": "https://twitter.com/kamranahmedse" + }, + "pdfUrl": "https://kamranahmedse.gumroad.com/l/react-roadmap" +} diff --git a/content/roadmaps/4-react/resources.md b/content/roadmaps/4-react/resources.md new file mode 100644 index 000000000..9ea876887 --- /dev/null +++ b/content/roadmaps/4-react/resources.md @@ -0,0 +1,7 @@ +> **We are still preparing the resources**. Please check back later or [subscribe to get notified](/signup). + +While we prepare the list, follow this simple advice to learn anything + +> Just **pick a project and start working on it**, you will learn all that you need along the way. + +**→**   [All Roadmaps](/roadmaps)  •  [Programming guides](/guides)  •  [Subscribe](/signup) diff --git a/content/roadmaps/5-postgresql-dba/landscape.md b/content/roadmaps/5-postgresql-dba/landscape.md new file mode 100644 index 000000000..45ea55ff3 --- /dev/null +++ b/content/roadmaps/5-postgresql-dba/landscape.md @@ -0,0 +1,180 @@ +The intent of this guide is to give you an idea about the DBA landscape and to help guide your learning if you are confused. The roadmap is highly opinionated — neither, knowing everything listed in the roadmap, nor the order of items given in the roadmap is required to be followed in order to be a DBA. + +## Learn basic RDBMS terms and concepts +Get basic understanding of Postgres key terms and basic RDBMS concepts. + +- **Object model**: data types, columns, rows, tables, schemas, databases, queries. +- **Relational model**: domains, attributes, tuples, relations, constraints, NULL. +- **Databases high-level concepts**: ACID, MVCC, transactions, write-ahead log, query processing. +- **Links**: + - [Postgres Glossary](https://www.postgresql.org/docs/13/glossary.html) + - SQL and Relational Theory - Christopher J. Date, 2009 + - Database Design and Relational Theory - Christopher J. Date, 2012 + +## Learn how to install and run PostgreSQL +Get practical skills of how to set up and run Postgres to get a working environment for further learning. + +- Using package managers (APT, YUM, etc.) +- Using `docker`. +- Managing Postgres service using `systemd` (start, stop, restart, reload). +- Managing Postgres service using `pg_ctl`, or OS-specific tools (like `pg_ctlcluster`). +- Connect to Postgres using `psql`. +- Deploy database service in cloud environment (AWS, GCE, Azure, Heroku, DigitalOcean, etc...). +- **Links**: + - [Official download and install instructions](https://www.postgresql.org/download/) + - [Official Docker images](https://hub.docker.com/_/postgres) + +## Learn SQL concepts +Get practical skills of how to create and manipulate database objects and how to execute queries using `psql` client. +- Understand basic data types. +- **DML queries**: querying data, modifying data, filtering data, joining tables. + - **Advanced topics**: transactions, CTE, subqueries, lateral join, grouping, set operations. +- **DDL queries**: managing tables and schemas (create, alter, drop). +- Import and export data using `COPY`. +- **Links**: + - [DB Fiddle](https://www.db-fiddle.com/) + - [PostgreSQL Tutorial](https://www.postgresqltutorial.com/) + - [PostgreSQL SQL Getting Started](https://www.postgresql.org/docs/current/tutorial-sql.html) + - [The SQL Language](https://www.postgresql.org/docs/current/sql.html) + +## Learn how to configure Postgres +Get understanding of the main aspects of how Postgres could be configured. Deep understanding of Postgres internals is not yet necessary here. + +- postgresql.conf: + - Resources usage + - Write-ahead Log + - Checkpoints and Background Writer + - Cost-based vacuum and auto-vacuum + - Replication + - Query planner + - Reporting, logging and statistics + - Adding extra extensions + - ...keep exploring other configuration options +- **Links**: + - [Postgresqlco.nf](http://postgresqlco.nf/) + +## Learn Postgres security concepts +Get understanding about basic security concepts and common ways of how to deploy secure configurations. +- Authentication models, roles, pg_hba.conf, SSL settings. +- **Objects privileges**: grant/revoke, default privileges. +- **Advanced topics** - row-level security, selinux. +- **Links**: + - [Client authentication](https://www.postgresql.org/docs/current/client-authentication.html) + - [Roles and users managements](https://www.postgresql.org/docs/current/user-manag.html) + +## Develop infrastructure DBA skills +Get practical skills of how to deploy, extend, maintain and support Postgres installations and 3rd-party Postgres ecosystem software. +- **Replication**: streaming replication, logical replication +- **Backup/recovery tools**: + - Built-in: `pg_dump`, `pg_dumpall`, `pg_restore`, `pg_basebackup` + - 3rd-party: `barman`, `pgbackrest`, `pg_probackup`, `WAL-G` + - Backup validation procedures +- **Upgrading procedures** + - Minor and major upgrades using `pg_upgrade` + - Upgrades using logical replication +- **Connection pooling**: + - `Pgbouncer` + - Alternatives: `Pgpool-II`, `Odyssey`, `Pgagroal` +- **Infrastructure monitoring**: `Prometheus`, `Zabbix`, other favourite monitoring solution +- **High availability and cluster management tools**: + - `Patroni` + - **Alternatives**: `Repmgr`, `Stolon`, `pg_auto_failover`, `PAF` +- **Applications Load Balancing and Service Discovery**: `Haproxy`, `Keepalived`, `Consul`, `Etcd` +- **Deploy Postgres on `Kubernetes`**: Simple `StatefulSet` setup, `HELM`, operators +- Resource usage and provisioning, capacity planning + +## Learn how to automate routines +Get practical skills, learn automation tools and automate existing routine tasks. +- Automation using shell scripts or any other favourite language (`Bash`, `Python`, `Perl`, etc) +- Configuration management: `Ansible`, `Salt`, `Chef`, `Puppet` + +## Develop application DBA skills +Learn theory and get practical skills of how applications should work with Postgres +- **Migrations**: + - practical patterns and antipatterns + - tools: `liquibase`, `sqitch`, language-specific tools +- Data import/export, bulk loading and processing +- **Queues**: + - practical patterns and anti-patterns + - `Skytools PGQ` +- Data partitioning and sharding patterns. +- Database normalization and normal forms. +- Books: + - The Art of PostgreSQL - Dimitri Fontaine, 2020 + +## Learn Postgres advanced topics +Here is important to continuously extend and develop existing knowledge about Postgres. +- **Low level internals**: + - Processes and memory architecture + - Vacuum processing + - Buffer management + - Lock management + - [Physical storage and file layout](https://www.postgresql.org/docs/current/storage.html) + - [System catalog](https://www.postgresql.org/docs/current/catalogs.html) +- **Fine-grained tuning**: + - Per-user, per-database settings + - [Storage parameters](https://www.postgresql.org/docs/current/sql-createtable.html#SQL-CREATETABLE-STORAGE-PARAMETERS) + - Workload-dependant tuning: OLTP, OLAP, HTAP +- **Advanced SQL topics**: + - PL/pgSQL, procedures and functions, triggers + - Aggregate and window functions + - Recursive CTE +- **Links**: + - [The Internals of PostgreSQL](http://www.interdb.jp/pg/index.html) for database administrators and system developers + - [PL/pgSQL Guide](https://www.postgresql.org/docs/current/plpgsql.html) + +## Learn Postgres troubleshooting techniques +Get basic understanding about troubleshooting tools and get practical skills of how to detect and resolve problems. +- **Operating system tools** + - `top` (`htop`, `atop`) + - `sysstat` + - `iotop` +- **Postgres system views** + - `pg_stat_activity` + - `pg_stat_statements` +- **Postgres tools** + - `pgcenter` - *personal recommendation* +- **Query analyzing**: + - [EXPLAIN](https://www.postgresql.org/docs/current/sql-explain.html) + - [Depesz](https://explain.depesz.com/) online EXPLAIN visualization tool + - [PEV](https://tatiyants.com/pev/#/plans) online EXPLAIN visualization tool + - [Tensor](https://explain.tensor.ru/) online EXPLAIN visualization tool, RU language only +- **Log analyzing**: + - `pgBadger` + - Ad-hoc analyzing using `grep`, `awk`, `sed`, etc. +- **External tracing/profiling tools**: `gdb`, `strace`, `perf-tools`, `ebpf`, core dumps +- **Troubleshooting methods**: USE, RED, Golden signals +- **Links**: + - [Linux Performance](http://www.brendangregg.com/linuxperf.html) by Brendan Gregg + - [USE Method](http://www.brendangregg.com/usemethod.html) + +## Learn SQL optimization technics +Get understanding and practical skills of how to optimize SQL queries. +- **Indexes, and their use cases**: B-tree, Hash, GiST, SP-GiST, GIN, BRIN +- SQL queries patterns and anti-patterns +- SQL schema design patterns and anti-patterns +- **Links**: + - [Use the Index, Luke](https://use-the-index-luke.com/) - a Guide to Database Performance for Developers +- **Books**: + - SQL Antipatterns: Avoiding the Pitfalls of Database Programming - Bill Karwin, 2010 + +## Develop architect skills +Get deeper understanding of Postgres use cases and where Postgres is suitable and where is not. +- **Postgres forks and extensions**: `Greenplum`, `Timescaledb`, `Citus`, `Postgres-XL`, etc. +- RDBMS in general, benefits and limitations +- Differences between Postgres and other RDBMS and NoSQL databases + +## Develop Postgres hacker skills +Get involved to Postgres community and contribute to Postgres; be a useful member of Postgres, and the open source community; use personal experience to help other people. +- Daily reading and answering in [mailing lists](https://www.postgresql.org/list/) + - pgsql-general + - pgsql-admin + - pgsql-performance + - pgsql-hackers + - pgsql-bugs +- Reviewing patches +- Writing patches, attending in [Commitfests](https://commitfest.postgresql.org/) + +
+
+
diff --git a/content/roadmaps/5-postgresql-dba/meta.json b/content/roadmaps/5-postgresql-dba/meta.json new file mode 100644 index 000000000..cffbbc4f9 --- /dev/null +++ b/content/roadmaps/5-postgresql-dba/meta.json @@ -0,0 +1,41 @@ +{ + "seo": { + "title": "DBA Roadmap: Learn to become a database administrator with PostgreSQL", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for DevOps. Learn to become a modern DevOps engineer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming a database administrator", + "guide to becoming a DBA", + "dba roadmap", + "db administrator roadmap", + "database administrator roadmap", + "postgresql roadmap", + "dba skills", + "db administrator skills", + "become dba", + "postgresql skills", + "modern dba skills", + "dba skills test", + "skills for dba", + "skills for database administrator", + "learn dba", + "what is dba", + "database administrator quiz", + "dba interview questions" + ] + }, + "title": "PostgreSQL DBA", + "description": "Step by step guide to becoming a modern PostgreSQL DB Administrator in 2021", + "featuredTitle": "DBA", + "featuredDescription": "Step by step guide to become a PostgreSQL DBA in 2021", + "contentPath": "./landscape.md", + "resourcesPath": "./resources.md", + "author": { + "name": "Alexey Lesovsky", + "url": "https://github.com/lesovsky" + }, + "isCommunity": true, + "isTextHeavy": true, + "featured": true, + "detailed": false, + "versions": [] +} diff --git a/content/roadmaps/5-postgresql-dba/resources.md b/content/roadmaps/5-postgresql-dba/resources.md new file mode 100644 index 000000000..9ea876887 --- /dev/null +++ b/content/roadmaps/5-postgresql-dba/resources.md @@ -0,0 +1,7 @@ +> **We are still preparing the resources**. Please check back later or [subscribe to get notified](/signup). + +While we prepare the list, follow this simple advice to learn anything + +> Just **pick a project and start working on it**, you will learn all that you need along the way. + +**→**   [All Roadmaps](/roadmaps)  •  [Programming guides](/guides)  •  [Subscribe](/signup) diff --git a/content/roadmaps/6-android/landscape.md b/content/roadmaps/6-android/landscape.md new file mode 100644 index 000000000..6bc0baff5 --- /dev/null +++ b/content/roadmaps/6-android/landscape.md @@ -0,0 +1,82 @@ +The intent of this guide is to give you an idea about the Android development landscape and to help guide your learning if you are confused. Before we start, please note that the roadmap is opinionated, and you might have different opinions than those of the author. Having said that, [we would love to hear your opinions](https://github.com/kamranahmedse/roadmap.sh/issues/new) and incorporate them in the roadmap if suitable. + +There are multiple ways to develop applications for the android; you can go down the path of hybrid application development where [flutter](https://flutter.dev/), [react-native](https://reactnative.dev/), or [NativeScript](https://www.nativescript.org/) are the most common contenders. Flutter uses Dart, whereas React Native and Native Script rely on JavaScript. Answering the question of hybrid vs native is out of the scope of this roadmap. This roadmap is focused on the native Android apps development but if you are interested in learning any hybrid framework, my personal preference is [react-native](https://reactnative.dev) and I would recommend you to checkout the [Frontend Developer Roadmap](/frontend). + +## Complete Roadmap + +Here is the full version of the roadmap in a single image and after that we have the broken down version with the resources and links to learn more about each of the boxes. + +[![](/roadmaps/android/roadmap.svg)](/roadmaps/android/roadmap.png) + +## Broken Down Version +Below is the broken down version of the roadmap with links and resources to learn more about each of the items listed in the complete roadmap above. + +## Pick a Language +For the languages, you can develop android apps either by using Kotlin or Java. + +[![](/roadmaps/android/pick-language.svg)](/roadmaps/android/pick-language.svg) + +Although, you can use both [Kotlin](https://en.wikipedia.org/wiki/Kotlin_(programming_language)) and [Java](https://en.wikipedia.org/wiki/Java_(programming_language)) to develop native android apps, [Google announced in 2019](https://android-developers.googleblog.com/2019/05/google-io-2019-empowering-developers-to-build-experiences-on-Android-Play.html) to make Kotlin the preferred way of developing android applications. If you were to start learning android development today, Kotlin should be your language of choice. + +## The Fundamentals +Install the [Android Studio](https://developer.android.com/studio) and learn the basics of Kotlin to get started. + +[![](/roadmaps/android/the-fundamentals.png)](/roadmaps/android/the-fundamentals.png) + +We have also listed down some free resources which you can use for the items listed in the image above. If you have some better ones, please do suggest. Also, you don't need to go through all of them, just go through them and pick what you like. + +* [Learn the basics of Kotlin](https://blog.teamtreehouse.com/absolute-beginners-guide-kotlin) +* [Kotlin Docs](https://kotlinlang.org/docs/reference/basic-syntax.html) and [Official Kotlin Tutorials](https://kotlinlang.org/docs/tutorials/) +* [Data Structures and Algorithms](https://www.studytonight.com/data-structures/introduction-to-data-structures). Also [check this](https://www.tutorialspoint.com/data_structures_algorithms/index.htm). +* [Kotlin DataStructures](https://kotlinlang.org/docs/reference/collections-overview.html) +* [Algorithms and DataStructures in Kotlin](https://github.com/bmaslakov/kotlin-algorithm-club) + +## Version Control Systems +Version control systems record your changes to the codebase and allow you to recall specific versions later. There are multiple Version Control Systems available but [Git](https://git-scm.com/) is the most common one these days. + +[![](/roadmaps/android/git-github.png)](/roadmaps/android/git-github.png) + +Here are some of the resources to get you started. Feel free to google and find something else that you find easier. + +* [Udacity — Version Control with Git](https://www.udacity.com/course/version-control-with-git--ud123) +* [GitHub Hello World](https://guides.github.com/activities/hello-world/) + +## Building an Application + +Here is the list of items that you are going to need when developing Android applications. Please note that, this is an exhaustive list, and you don't need to know it all from the get-go. Get an idea of the items listed, and just start building some apps and keep the items listed in the back of your mind and have a deep dive when using them. + +[![](/roadmaps/android/build-an-application.png)](/roadmaps/android/build-an-application.png) + +To learn more about the items listed in the image above, here are the links to the relevant docs + +* [Using Activities and Activity Life Cycles](https://developer.android.com/guide/components/activities/intro-activities) +* Building Flexible Interfaces using [Fragments](https://developer.android.com/guide/components/fragments) +* [Debugging using Android Studio Debugger](https://developer.android.com/studio/debug) +* [Handling App Configurations](https://developer.android.com/work/managed-configurations) +* [Using Intents and Intent Filters](https://developer.android.com/guide/components/intents-filters) +* [Understand Context](https://guides.codepath.com/android/Using-Context) +* [Learn about Multithreading](https://developer.android.com/training/multiple-threads) +* [Data Privacy](https://www.raywenderlich.com/6901838-data-privacy-for-android) +* [Securing Network Data](https://www.raywenderlich.com/5634-securing-network-data-tutorial-for-android) +* [Dependency Injection](https://developer.android.com/training/dependency-injection) +* [Content Providers](https://developer.android.com/guide/topics/providers/content-providers) +* [Glide](https://github.com/bumptech/glide), [Retrofit](https://square.github.io/retrofit/), [Crashlytics](https://firebase.google.com/docs/crashlytics/get-started), [GSON](https://github.com/google/gson) +* [Room](https://developer.android.com/topic/libraries/architecture/room), [Navigation](https://developer.android.com/guide/navigation/navigation-getting-started), [Work Manager](https://developer.android.com/topic/libraries/architecture/workmanager), [LiveData](https://developer.android.com/topic/libraries/architecture/livedata), [Data Binding](https://developer.android.com/topic/libraries/data-binding) +* [RxJava](https://github.com/ReactiveX/RxJava), [RxKotlin](https://github.com/ReactiveX/RxKotlin) +* [Memory Management Overview](https://developer.android.com/topic/performance/memory-overview) +* [Diving deeper into context-oriented programming in Kotlin](https://proandroiddev.com/diving-deeper-into-context-oriented-programming-in-kotlin-3ecb4ec38814) + +I would highly recommend watching [this free course](https://www.udacity.com/course/developing-android-apps-with-kotlin--ud9012) from google on Developing Android Apps with Kotlin. Also, here are some of the resources to learn more about the topics listed above. + +* [Developing Android Apps with Kotlin](https://www.udacity.com/course/developing-android-apps-with-kotlin--ud9012) +* [Android Developer Guides](https://developer.android.com/guide) +* [Raywenderlich](https://www.raywenderlich.com) + +## Wrap Up + +That wraps it up for the android developer roadmap. Again, remember to not be exhausted by the list; just learn the basics and start working on some project, rest of the learnings will come along the way. Good luck! + +For any suggestions, improvements and feedback, feel free to [submit an issue](https://github.com/kamranahmedse/roadmap.sh) or reach out to me on twitter [@kamranahmedse](https://twitter.com/kamranahmedse). + + +


diff --git a/content/roadmaps/6-android/meta.json b/content/roadmaps/6-android/meta.json new file mode 100644 index 000000000..d52ee4884 --- /dev/null +++ b/content/roadmaps/6-android/meta.json @@ -0,0 +1,37 @@ +{ + "seo": { + "title": "Android Developer Roadmap: Learn to become an Android developer", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for android development. Learn to become a modern Android developer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming an android developer", + "android developer roadmap", + "android roadmap", + "become android developer", + "android developer skills", + "android skills test", + "skills for android development", + "learn android development", + "what is android", + "android quiz", + "android interview questions" + ] + }, + "title": "Android Developer", + "description": "Step by step guide to becoming an Android developer in 2021", + "featuredTitle": "Android", + "featuredDescription": "Step by step guide to becoming an Android Developer in 2021", + "isTextHeavy": true, + "isCommunity": true, + "featured": true, + "contentPath": "./landscape.md", + "resourcesPath": "./resources.md", + "versions": [ + "latest", + "2018", + "2017" + ], + "author": { + "name": "Kamran Ahmed", + "url": "https://twitter.com/kamranahmedse" + } +} diff --git a/content/roadmaps/6-android/resources.md b/content/roadmaps/6-android/resources.md new file mode 100644 index 000000000..9ea876887 --- /dev/null +++ b/content/roadmaps/6-android/resources.md @@ -0,0 +1,7 @@ +> **We are still preparing the resources**. Please check back later or [subscribe to get notified](/signup). + +While we prepare the list, follow this simple advice to learn anything + +> Just **pick a project and start working on it**, you will learn all that you need along the way. + +**→**   [All Roadmaps](/roadmaps)  •  [Programming guides](/guides)  •  [Subscribe](/signup) diff --git a/content/roadmaps/7-qa/landscape.md b/content/roadmaps/7-qa/landscape.md new file mode 100644 index 000000000..75ceb7a41 --- /dev/null +++ b/content/roadmaps/7-qa/landscape.md @@ -0,0 +1,11 @@ +> **Roadmap is not ready yet**. Please check back later or [subscribe to get notified](/signup). + +While we prepare the roadmap, follow this simple advice to learn anything + +> Just **pick a project and start working on it**, you will learn all that you need along the way. + +**→**   [All Roadmaps](/roadmaps)  •  [Programming guides](/guides)  •  [Subscribe](/signup) + + + + diff --git a/content/roadmaps/7-qa/meta.json b/content/roadmaps/7-qa/meta.json new file mode 100644 index 000000000..0ad4591fc --- /dev/null +++ b/content/roadmaps/7-qa/meta.json @@ -0,0 +1,31 @@ +{ + "seo": { + "title": "QA Roadmap: Learn to become a modern QA engineer", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for modern QA development. Learn to become a modern QA engineer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming a QA engineer", + "QA engineer", + "QA skills", + "QA development skills", + "QA development skills test", + "QA engineer roadmap", + "become a QA engineer", + "QA engineer career path", + "skills for QA development", + "what is QA engineer", + "QA engineer quiz", + "QA engineer interview questions" + ] + }, + "title": "QA Engineer", + "description": "Steps to follow in order to become a modern QA Engineer in 2021", + "featuredTitle": "QA", + "featuredDescription": "Step by step guide to becoming a modern QA Engineer in 2021", + "isUpcoming": true, + "contentPath": "./landscape.md", + "resourcesPath": "./resources.md", + "author": { + "name": "Anas Fitiani", + "url": "https://github.com/anas-qa" + } +} diff --git a/content/roadmaps/7-qa/resources.md b/content/roadmaps/7-qa/resources.md new file mode 100644 index 000000000..9ea876887 --- /dev/null +++ b/content/roadmaps/7-qa/resources.md @@ -0,0 +1,7 @@ +> **We are still preparing the resources**. Please check back later or [subscribe to get notified](/signup). + +While we prepare the list, follow this simple advice to learn anything + +> Just **pick a project and start working on it**, you will learn all that you need along the way. + +**→**   [All Roadmaps](/roadmaps)  •  [Programming guides](/guides)  •  [Subscribe](/signup) diff --git a/content/site.json b/content/site.json new file mode 100644 index 000000000..56ddc5e43 --- /dev/null +++ b/content/site.json @@ -0,0 +1,49 @@ +{ + "author": "Kamran Ahmed", + "title": "Roadmaps to becoming a modern developer", + "name": "roadmap.sh", + "description": "Community driven roadmaps, articles, guides, quizzes, tips and resources for developers to learn from, identify their career paths, know what they don't know, find out the knowledge gaps, learn and improve.", + "twitter": "kamranahmedse", + "facebook": "kamranahmedse", + "logo": "/brand.png", + "logoSquare": "/brand-square.png", + "url": { + "web": "https://roadmap.sh", + "twitter": "https://twitter.com/kamranahmedse", + "youtube": "https://youtube.com/theroadmap?sub_confirmation=1", + "repo": "https://github.com/kamranahmedse/roadmap.sh", + "sponsor": "https://github.com/sponsors/kamranahmedse", + "repoData": "https://github.com/kamranahmedse/roadmap.sh/tree/master/content", + "addGuide": "https://github.com/kamranahmedse/roadmap.sh/tree/master/contributing/guide.md", + "addRoadmap": "https://github.com/kamranahmedse/roadmap.sh/tree/master/contributing/roadmap.md", + "addResources": "https://github.com/kamranahmedse/roadmap.sh/tree/master/contributing/resources.md", + "contribute": "https://github.com/kamranahmedse/roadmap.sh/tree/master/contributing", + "issue": "https://github.com/kamranahmedse/roadmap.sh/issues/new" + }, + "keywords": [ + "roadmap", + "developer roadmaps", + "developer roadmap", + "frontend developer", + "frontend developer roadmap", + "frontend", + "frontend roadmap", + "backend", + "backend developer", + "backend developer roadmap", + "devops", + "devops roadmap", + "fullstack developer roadmap", + "guide to becoming a developer", + "sre roadmap", + "sre", + "operations roadmap", + "qa roadmap", + "android roadmap", + "android developer roadmap", + "react roadmap", + "react developer roadmap", + "dba roadmap", + "postgresql dba roadmap" + ] +} diff --git a/content/videos.json b/content/videos.json new file mode 100644 index 000000000..90eb2fb28 --- /dev/null +++ b/content/videos.json @@ -0,0 +1,211 @@ +[ + { + "id": "transport-protocols-tcp-vs-udp", + "title": "Transport Protocols: TCP vs UDP", + "description": "Learn about the Transport Layer of the TCP/IP model and different transport protocols.", + "isPro": false, + "youtubeLink": "https://www.youtube.com/watch?v=37AFBZv4_6Y", + "authorUsername": "kamranahmedse", + "duration": "10 minutes", + "updatedAt": "2020-11-21T19:59:14.191Z", + "createdAt": "2020-11-21T19:59:14.191Z" + }, + { + "id": "tcp-ip-model", + "title": "TCP/IP Model Explained", + "description": "Learn what is TCP/IP Model and the different layers involved.", + "isPro": false, + "authorUsername": "kamranahmedse", + "youtubeLink": "https://www.youtube.com/watch?v=F5rni9fr1yE", + "duration": "5 minutes", + "updatedAt": "2020-11-06T19:59:14.191Z", + "createdAt": "2020-11-06T19:59:14.191Z" + }, + { + "id": "osi-model", + "title": "OSI Model Explained", + "description": "Learn what is OSI Model and the different layers involved.", + "isPro": false, + "youtubeLink": "https://www.youtube.com/watch?v=dV8mjZd1OtU", + "authorUsername": "kamranahmedse", + "duration": "7 minutes", + "updatedAt": "2020-10-24T19:59:14.191Z", + "createdAt": "2020-10-24T19:59:14.191Z" + }, + { + "id": "freeze-and-seal-objects-in-javascript", + "title": "Freeze and Seal in JavaScript", + "description": "Learn what is OSI Model and the different layers involved.", + "youtubeLink": "https://www.youtube.com/watch?v=O3uT2l6vgZ8", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "6 minutes", + "updatedAt": "2020-10-16T19:59:14.191Z", + "createdAt": "2020-10-16T19:59:14.191Z" + }, + { + "id": "all-about-http-caching", + "title": "All about HTTP Caching", + "description": "Learn what is HTTP caching, places for caching and different caching headers.", + "youtubeLink": "https://www.youtube.com/watch?v=HiBDZgTNpXY", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "13 minutes", + "updatedAt": "2020-10-04T19:59:14.191Z", + "createdAt": "2020-10-04T19:59:14.191Z" + }, + { + "id": "content-delivery-networks", + "title": "Content Delivery Networks", + "description": "Learn what the CDNs are and the difference between push CDN vs pull CDN.", + "youtubeLink": "https://www.youtube.com/watch?v=6DXEPcXKQNY", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "4 minutes", + "updatedAt": "2020-09-26T19:59:14.191Z", + "createdAt": "2020-09-26T19:59:14.191Z" + }, + { + "id": "load-balancers-101", + "title": "Load Balancers 101", + "description": "Learn the basics of load balancers, types and different algorithms.", + "youtubeLink": "https://www.youtube.com/watch?v=galcDRNd5Ow", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "9 minutes", + "updatedAt": "2020-09-18T19:59:14.191Z", + "createdAt": "2020-09-18T19:59:14.191Z" + }, + { + "id": "dns-records", + "title": "DNS Records", + "description": "Learn what the DNS is and how a website is found on the internet.", + "youtubeLink": "https://www.youtube.com/watch?v=7lxgpKh_fRY", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "6 minutes", + "updatedAt": "2020-08-31T19:59:14.191Z", + "createdAt": "2020-08-31T19:59:14.191Z" + }, + { + "id": "dns-explained", + "title": "DNS and how does it work?", + "description": "Learn what the DNS is and how a website is found on the internet.", + "youtubeLink": "https://www.youtube.com/watch?v=Wj0od2ag5sk", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "5 minutes", + "updatedAt": "2020-08-17T19:59:14.191Z", + "createdAt": "2020-08-17T19:59:14.191Z" + }, + { + "id": "system-design-101", + "title": "System Design 101", + "description": "Learn about all the bits and pieces of system design.", + "youtubeLink": "https://www.youtube.com/watch?v=Y-Gl4HEyeUQ", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "7 minutes", + "updatedAt": "2020-08-08T19:59:14.191Z", + "createdAt": "2020-08-08T19:59:14.191Z" + }, + { + "id": "javascript-fetch-api", + "title": "JavaScript Fetch API", + "description": "Learn how to use JavaScript's Fetch API to interact with remote API.", + "youtubeLink": "https://www.youtube.com/watch?v=-ZI0ea5O2oA", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "3 minutes", + "updatedAt": "2020-08-02T19:59:14.191Z", + "createdAt": "2020-08-02T19:59:14.191Z" + }, + { + "id": "scaling-the-unscalable", + "title": "Scaling the Unscalable", + "description": "Learn the basics of System Design and understand how to build a scalable application.", + "youtubeLink": "https://www.youtube.com/watch?v=a2rcgzludDU", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "10 minutes", + "updatedAt": "2020-07-26T19:59:14.191Z", + "createdAt": "2020-07-26T19:59:14.191Z" + }, + { + "id": "promises-in-javascript", + "title": "All about Promises in JavaScript", + "youtubeLink": "https://www.youtube.com/watch?v=BvrkobaCVVE", + "description": "Learn how to write asynchronous code in JavaScript using promises.", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "8 minutes", + "updatedAt": "2020-07-20T19:59:14.191Z", + "createdAt": "2020-07-20T19:59:14.191Z" + }, + { + "id": "how-to-use-github-actions", + "title": "Automate with GitHub Actions", + "description": "Learn how to implement CI/CD with GitHub Actions", + "youtubeLink": "https://www.youtube.com/watch?v=nyKZTKQS_EQ", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "6 minutes", + "updatedAt": "2020-07-13T19:59:14.191Z", + "createdAt": "2020-07-13T19:59:14.191Z" + }, + { + "id": "what-is-dependency-injection", + "title": "What is Dependency Injection?", + "description": "Learn what is dependency injection and how to write better code with the help of it.", + "youtubeLink": "https://www.youtube.com/watch?v=0yc2UANSDiw", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "3 minutes", + "updatedAt": "2020-07-04T19:59:14.191Z", + "createdAt": "2020-07-04T19:59:14.191Z" + }, + { + "id": "how-to-use-css-variables", + "title": "How to use CSS Variables?", + "description": "Learn how to write scalable CSS using CSS Variables.", + "youtubeLink": "https://www.youtube.com/watch?v=lgaxU7CRmxU", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "5 minutes", + "updatedAt": "2020-07-03T19:59:14.191Z", + "createdAt": "2020-07-03T19:59:14.191Z" + }, + { + "id": "what-is-dom-shadow-dom-virtual-dom", + "title": "DOM, Shadow DOM, Virtual DOM", + "description": "Learn what is DOM, Shadow DOM and Virtual DOM and how they work.", + "youtubeLink": "https://www.youtube.com/watch?v=7Tok22qxPzQ", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "6 minutes", + "updatedAt": "2020-07-20T19:59:14.191Z", + "createdAt": "2020-07-20T19:59:14.191Z" + }, + { + "id": "practical-intro-to-react", + "title": "Practical Introduction to React", + "description": "Learn how to create a React Application with practical example.", + "youtubeLink": "https://www.youtube.com/watch?v=NyG7YJWJd6s&list=PLkZYeFmDuaN3NDLnBG01-sH2-nwn43mYu", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "40 minutes", + "updatedAt": "2020-07-09T19:59:14.191Z", + "createdAt": "2020-07-09T19:59:14.191Z" + }, + { + "id": "arrays-and-objects-in-javascript", + "title": "Arrays and Objects in JavaScript", + "description": "Learn how to manipulate arrays and objects in JavaScript.", + "youtubeLink": "https://www.youtube.com/watch?v=n3NKGsM3iEw", + "isPro": false, + "authorUsername": "kamranahmedse", + "duration": "12 minutes", + "updatedAt": "2020-05-09T19:59:14.191Z", + "createdAt": "2020-05-09T19:59:14.191Z" + } +] diff --git a/content/videos/all-about-http-caching.md b/content/videos/all-about-http-caching.md new file mode 100644 index 000000000..8a2d6aed4 --- /dev/null +++ b/content/videos/all-about-http-caching.md @@ -0,0 +1 @@ +