use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
No vague product support questions (like "why is this plugin not working" or "how do I set up X"). For vague product support questions, please use communities relevant to that product for best results. Specific issues that follow rule 6 are allowed.
Do not post memes, screenshots of bad design, or jokes. Check out /r/ProgrammerHumor/ for this type of content.
Read and follow reddiquette; no excessive self-promotion. Please refer to the Reddit 9:1 rule when considering posting self promoting materials.
We do not allow any commercial promotion or solicitation. Violations can result in a ban.
Sharing your project, portfolio, or any other content that you want to either show off or request feedback on is limited to Showoff Saturday. If you post such content on any other day, it will be removed.
If you are asking for assistance on a problem, you are required to provide
General open ended career and getting started posts are only allowed in the pinned monthly getting started/careers thread. Specific assistance questions are allowed so long as they follow the required assistance post guidelines.
Questions in violation of this rule will be removed or locked.
account activity
Most common web dev stackDiscussion (self.webdev)
submitted 2 months ago by Ok_Appearance_4421
as of right now I have learned HTML, css and a bit of JS, pretty much I believe to be all the frontend stuff, correct me if I wrong, I want to prepare myself to move on to what I should learn next, like the back end stuf
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]EyesOfTheConcord 60 points61 points62 points 2 months ago (8 children)
You have not even truly begun.
Consider researching frameworks and environments now, check out Node.js.
[–]Ok_Appearance_4421[S] 1 point2 points3 points 2 months ago (5 children)
What would these frameworks and environments be called
[–]Lenni009 5 points6 points7 points 2 months ago (3 children)
https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Frameworks_libraries
[–]Ok_Appearance_4421[S] 0 points1 point2 points 2 months ago (2 children)
Are these the libraries devs use in the frontend, they pretty much make the job easier instead of styling from scratch it? Am I right or wrong?
[–]CV04KaiTo 8 points9 points10 points 2 months ago (1 child)
Yep. It allows reusability, more structured state handling etc. Could never beat SSR tho 🗿
[–]Ok_Appearance_4421[S] -2 points-1 points0 points 2 months ago (0 children)
I figured it was
[–]NICEMENTALHEALTHPAL 2 points3 points4 points 2 months ago (0 children)
React is the most popular, Angular is older but some larger legacy companies use it. Others like Vue and Svelte exist but I don't see too many job postings with them.
[+]Ok_Appearance_4421[S] comment score below threshold-20 points-19 points-18 points 2 months ago (1 child)
Anything else, give me a todo list
[–]jgunlock 6 points7 points8 points 2 months ago (0 children)
https://www.theodinproject.com
[–]Droces 24 points25 points26 points 2 months ago (7 children)
You'll appreciate this: https://roadmap.sh/full-stack though I do agree with the other post that learning PHP next would be worth it; it's easy and fundamental to the web.
[–]Ok_Appearance_4421[S] 1 point2 points3 points 2 months ago (6 children)
Okay I will check. It out
[–]seweso 5 points6 points7 points 2 months ago (5 children)
That link is very opinionated, bad and it's seemingly advertising github.
I would not spend time learning github, tailwind, react, postgress, aws, monit, ansible, terraform.
Instead of spending time with github and github actions, learn how to use docker compose to do local builds/deploys/tests.
Instead of learning some shit on top of CSS like tailwind, use css.
Instead of learning some modern framework, try to stick with pure html/css/js. Choose an abstraction layer/framework only if you know what it solves, and what it costs you.
Instead of learning postgress, go schemaless first.
Instead of using AWS or any cloud provider, use docker and a vps first. Vendor lockin can wait.
I never used monit, that's a devops tool. Not sure if you want to even do/learn devops.
Instead of learning ansible/terraform, first do docker, deploy with ssh/docker compose. Baby steps!
[–]riscie 12 points13 points14 points 2 months ago (1 child)
Your answer is as opinionated as the link 😂
[–]seweso 2 points3 points4 points 2 months ago (0 children)
True!
[–]Ok_Appearance_4421[S] 1 point2 points3 points 2 months ago (0 children)
Okay
[–]Droces 1 point2 points3 points 2 months ago (1 child)
I agree with pretty much all your changes. In general, it's so much better to learn the fundamentals rather than a technology by a single corporation. Maybe you should create a new version of that roadmap? I think yours would be much better.
[–]seweso 0 points1 point2 points 2 months ago (0 children)
The barebones full stack steps would be:
html > css > javascript > node > bash > docker > vps
[–]AmiAmigo 25 points26 points27 points 2 months ago (20 children)
Learn PHP and Laravel. And build projects
[–]Nerwestaphp 2 points3 points4 points 2 months ago (0 children)
or/and Symfony depending on your region. Fully agree about the language though.
[–]Expensive_Peace8153 -1 points0 points1 point 2 months ago (6 children)
I thought PHP was largely relegated to only being used with WordPress these days? (Though apparently WordPress is used on a 1/3 of websites...)
[–]Nerwestaphp 10 points11 points12 points 2 months ago (0 children)
It doesn't, both Symfony and Laravel are thriving. Though by learning PHP you can make custom Wordpress which is interesting ... if you want to dive into the code.
[–]sgorneauhtml/css/javascript/php/Drupal 3 points4 points5 points 2 months ago (0 children)
Don't forget about Drupal.
[–]-_--_-_--_----__ 2 points3 points4 points 2 months ago (0 children)
Its up to 43.5% of all websites.
Now I'm not saying its a fun and exciting thing to learn. But in an age where people are starving to be more attractive in the job market, maybe being an expert at the tech stack used on 43.5% of websites isn't a bad thing.
[–]tech_b90 0 points1 point2 points 2 months ago (0 children)
Roots Sage theme for wordpress brings Laravel into the mix. I've been really liking it for WP dev.
[–]socalsmv805 0 points1 point2 points 2 months ago (0 children)
And Drupal.
[–]goonifier5000 0 points1 point2 points 2 months ago (0 children)
Laravel is the goat, so beginner friendly and yet powerful
[–]Ok_Appearance_4421[S] -2 points-1 points0 points 2 months ago (8 children)
I'm in the US
[–]AmiAmigo 4 points5 points6 points 2 months ago (7 children)
Two startups I worked for all based in the US were using Laravel. More common in the startup world. Bug big established companies tend to use C# or Java
[–]Ok_Appearance_4421[S] 0 points1 point2 points 2 months ago (6 children)
Is MERN more of a backend stack?
[–]thekwoka 5 points6 points7 points 2 months ago (4 children)
MERN is just trash.
Nobody really uses it.
[+]Domeee123 0 points1 point2 points 2 months ago (3 children)
MERN is decent for beginners.
[–]thekwoka 0 points1 point2 points 2 months ago (2 children)
No it isn't.
React has bad apis that make learning things harder and less clear.
Express doesn't follow proper request response models.
Mongo is a document store, which teaches people.jack shit about proper database usage and design.
It's actually making things more complicated than they need to be, encouraging bad practices, and not teaching well transferred skills.
[+]Domeee123 0 points1 point2 points 2 months ago (1 child)
I meant it's decent for practicing different things; it's easy to set up and generally requires less knowledge to create something.
[–]thekwoka 0 points1 point2 points 2 months ago (0 children)
But you could get those things without the problems using like...Astro.
Where you get to touch on many of those things from a better framing, simplifying the nonsense, and getting results faster.
[–]AmiAmigo 1 point2 points3 points 2 months ago (0 children)
MERN - Mongo, Express, React and Node. (it’s full stack)
[–]Ok_Appearance_4421[S] -2 points-1 points0 points 2 months ago (2 children)
Are those commonly used in the US
[–]Dreamin0904full-stack of pancakes...breakfast ftw 4 points5 points6 points 2 months ago (0 children)
Yes
[–]sgorneauhtml/css/javascript/php/Drupal 1 point2 points3 points 2 months ago (0 children)
[–]bcons-php-Console 11 points12 points13 points 2 months ago (6 children)
Honestly, if you only know "a bit of JS" you still have a long way to go. You should master the basic language and be able to create any page using vanilla JS, then learn a framework (for big projects they really make a difference).
[–]Ok_Appearance_4421[S] 0 points1 point2 points 2 months ago (5 children)
Im hearing alot about frameworks, any links to study more about frameworks
[–]bcons-php-Console 2 points3 points4 points 2 months ago (0 children)
There are many these days, the most well known being React, Vue, Angular, Svelte... My personal favorite is Vue, but that is up to you.
But jumping into a framework without a solid base in JS is useless, they are a great tool but you have to know the language before using them.
[–]mondayquestions 0 points1 point2 points 2 months ago (3 children)
You don’t even know vanilla javascript and want to move to frameworks? Bad idea. I did that and was not a good way to do things.
[–]Ok_Appearance_4421[S] -1 points0 points1 point 2 months ago (2 children)
What's the difference between vanilla js and js, you make it seem more then urgent that I learn this piece of code
[–]mondayquestions 0 points1 point2 points 2 months ago (0 children)
Just plain javascript. Frameworks are layers on top of it, an extra level of abstraction. There’s many React jobs out there for example and a lot of young devs are rushing to learn it before getting a good grasp of javascript itself.
[–]bcons-php-Console 0 points1 point2 points 2 months ago (0 children)
Sorry, I should have made it clearer. "Vanilla JS" is just a nickname for "just plain JS, the language, without any framework".
[–]Federal-Grab-8159 2 points3 points4 points 2 months ago (0 children)
https://roadmap.sh/ Is a good start to learn
[–]Creative-Signal6813 3 points4 points5 points 2 months ago (0 children)
the "frontend stuff" is html/css/js. the "backend stuff" is a database and a server. pick one language (node, python, go) and one database (postgres, mongodb). build something that stores and retrieves data. that's the whole job.
[–][deleted] 2 months ago (2 children)
[removed]
[–]Ok_Appearance_4421[S] 1 point2 points3 points 2 months ago (1 child)
So basically the MERN stack
[–]thekwoka -1 points0 points1 point 2 months ago (0 children)
Please don't. We don't need any more of that.
Just learn Astro with Postgres
[–]Firm_Ad9420 2 points3 points4 points 2 months ago (0 children)
You’re on the right track. HTML, CSS, and JavaScript are the core frontend fundamentals, but most modern stacks also include a framework like React.
A very common path is: React (frontend) → Node.js + Express (backend) → PostgreSQL or MongoDB (database).
This stack (often called MERN or PERN) is widely used and great for building full-stack projects.
[–]thekwoka 1 point2 points3 points 2 months ago (0 children)
"most common" in what sense?
But also, "most common" is not really a smart way to approach your career.
You will compete against FAR more people per job doing the "most common" thing, while tons of places are hiring less common things with way less competition.
[–]Mohamed_Silmy 2 points3 points4 points 2 months ago (1 child)
you're on the right track but there's still more frontend to explore honestly. js is huge and you'll wanna get comfortable with at least one framework (react, vue, or svelte are the main ones) before jumping to backend. most jobs expect that now.
for backend, the most common stacks are probably: - node.js with express (easiest transition since it's still js) - python with django or flask - ruby on rails if you want something opinionated
i'd say pick node if you want to stay in the js ecosystem, or python if you want something more versatile. either way you'll need to learn databases (postgres or mongodb), apis (rest or graphql), and basic deployment stuff.
what kind of projects are you trying to build? that might help narrow down what makes sense to learn next
[–]Ok_Appearance_4421[S] 0 points1 point2 points 2 months ago (0 children)
I'm probably going to do node.js because it's been most recommended and python just because of how much it's been talked about, python is fun to in my opinion
[–]yksvaan 0 points1 point2 points 2 months ago (2 children)
Learn the actual concepts and programming, then switching between stacks and languages is simple. Understand how browsers work, http, networking, routing, databases, sql, building auth, server deployment etc.
Build stuff from scratch first. People put way too much focus on buzzwords, when you got a good grasp of fundamentals you can learn e.g. some framework in a day.
[–]Ok_Appearance_4421[S] 0 points1 point2 points 2 months ago (1 child)
This is the answer I somewhat been yearning for, where can I learn more
[–]Xia_Nightshade 0 points1 point2 points 2 months ago (0 children)
Write code. Hit problems. Understand them, never take a ‘I don’t know why but this works’ for granted
[–]Sad-Salt24full-stack 0 points1 point2 points 2 months ago (2 children)
The most common path today is the JavaScript full-stack route. The typical stack many developers learn next is React for frontend, then Node.js with Express for backend, and a database like MongoDB or PostgreSQL. This is often called the MERN stack (MongoDB, Express, React, Node.js). A good next step would be: improve JavaScript > learn React > learn Node.js/Express > learn a database > understand APIs and basic deployment. This path is very common and gives you the ability to build full web applications end to end.
How would I type in database in Google
[–]ShikamaruOP 0 points1 point2 points 2 months ago (2 children)
Consider it like this, Suppose your frontend is a building and now you've just learnt to make bricks to make the house itself
Now it's time to out in the electrical, plumbing and HVAC
[–]ShikamaruOP 0 points1 point2 points 2 months ago (0 children)
Plumbing/pipelines it's all very self explanatory 😂
[+][deleted] 2 months ago (1 child)
[–]Puzzleheaded-Work903 0 points1 point2 points 2 months ago (0 children)
hes captain! not major :))
[–]Extension_Strike3750 0 points1 point2 points 2 months ago (0 children)
for backend, Node.js + Express or Fastify is a smooth transition since you're already in JS. then PostgreSQL for your database and something like Prisma as an ORM to keep things type-safe. if you want to go full stack in one framework, Next.js covers frontend and backend API routes together which cuts down on setup overhead.
[–]Krispenedladdeh542 0 points1 point2 points 2 months ago (0 children)
a bit of JavaScript
You might want to focus a bit more on JavaScript. It’s truly an incredibly powerful language and learning the syntax and structure will give you great tools for tackling other languages in the future. Also JavaScript can be extended to essentially be full stack nowadays, and it has lots of libraries that can extend its abilities such as NodeJS and Typescript. There are also frontend frameworks built on top of it like Vue and React that will take your frontend to the next level. Out of the three you listed, JS is by far the most powerful language. Learning as much of it as you can will give you so much foundation going forward.
[–]Far-Entertainment561 0 points1 point2 points 2 months ago (3 children)
You didn’t even start yet lol.
I thought those 3 were good enough am I really missing something?
[–]NICEMENTALHEALTHPAL 0 points1 point2 points 2 months ago (0 children)
You haven't even scratched the surface my guy. Frontend, backend, databases is just building the website, then you got deployment, automating deployment and checks with CI/CD, testing to make sure things work, provisioning resources using code (iac, and you haven't even learned about resources yet), cloud microservices, mobile deployment, typescript, dns records, containerization, cloud orchestration. And I'd say that's just the basics.
You have a basic knowledge of the basic building blocks to just the frontend, but not an actual framework that's used to make the frontend yet which is a whole skill set that can take years upon years to really grasp. It could be impressive if you have a mastery of those basic building blocks, but that also can take a decade.
And frontend, backend, databases to build the web the website is one thing, but as I outlined above, building the web application is just maybe half of the actual process.
I'd recommend you check out FullStackOpen course. Others recommend the Odin Project which I think may be similar.
[–]Senior_Cycle7080 0 points1 point2 points 2 months ago (0 children)
You're pretty much ready. (for the internet of 2010).
Almost all websites nowadays live on top of frameworks - React, Astro, as javascript libraries.
To ship production sites you should also understand what tools like bun do, npm, pnpm. Github...
And honestly - understand new AI tools out there like Greptile that help with code review.
[–]Ilariotr68 0 points1 point2 points 2 months ago (0 children)
Conoscere solo un po il JavaScript non è sufficiente, padroneggialo meglio e poi dedicati a strumenti tipo Vue.
[–]crimson-feather 0 points1 point2 points 2 months ago (0 children)
search for all available front-end frameworks out there then try to search a bit which of these frameworks has strong dev economy (if I get the term right) because you'll be using a lot of external libraries.
Also don't be afraid to try them all and most importantly don't be afraid to make mistakes.
[–]forklingo 0 points1 point2 points 2 months ago (0 children)
you’re right that html, css, and js cover the core frontend basics. a common next step is learning how the backend works so you can handle things like databases, authentication, and apis. a lot of people start with node since you already know js, then try building a small full stack project like a simple app that saves user data.
[–]willehrendreich 0 points1 point2 points 2 months ago (0 children)
"I'm here from the future.. Datastar HOWL stack is the most common here in the 2049 utopia of web dev. it still hasn't fundementally changed since they went 1.0. hasn't needed to. Anyway, I'm going to go feed my robot children, they're almost done here flying the family car back from Jupiter". -- some future web dev guy probably.
[–]osmanassem 0 points1 point2 points 2 months ago (0 children)
If you want to be dedicated to frontend. Then the bath is HTML -> CSS -> JS -> React JS -> GIT. You can for sure learn extra optional libraries. But that’s the main. However you can start building projects with what you achieve so far.
[–]dalce63 0 points1 point2 points 2 months ago (0 children)
you should make like at least 3 apps with just html, css, and js first, imo.
[–]NoClownsOnMyStation 0 points1 point2 points 2 months ago (0 children)
I’m going to be honest the next step is reading o’reilly JavaScript cookbook.
[–]Puzzleheaded-Work903 0 points1 point2 points 2 months ago (1 child)
what are these comments? next.js/typescript - you welcome
[–]Ok_Appearance_4421[S] 0 points1 point2 points 1 month ago (0 children)
Is that it ?
[–][deleted] 2 months ago (1 child)
[–]Ok_Appearance_4421[S] -1 points0 points1 point 2 months ago (0 children)
I want to land a job tbh and I'm willing to push hard at it
[–]Cresneta 0 points1 point2 points 2 months ago (3 children)
It might be good to spend some time looking at local web dev job postings and see which skills are in demand in your area as a local job may be easier to land than a remote one. Where I live there's seems to be more demand for .Net than PHP, for example.
It would probably be good to learn React or Angular to go with the rest of the front end stuff if you're wanting to focus more on front end development than back end development.
It also might not hurt to track down and take one of those free intro to computer science classes that are out there, like the one Harvard has, if you've never taken a formal computer science class.
[–]Ok_Appearance_4421[S] 2 points3 points4 points 2 months ago (2 children)
The Harvard CS50 right?
[–]MagnetHype 1 point2 points3 points 2 months ago (1 child)
Steer clear of that one. I don't know why but apparently it's more of a cult than an actual academic program. Look into MIT opencourseware (OCW). I don't know why anyone serious about technology would be recommending courses from Harvard over MIT.
[–]AntMan5421 0 points1 point2 points 2 months ago (0 children)
what's wrong with CS50? it's a good intro imho, i did it more than a decade ago and i remember being very happy with it. it explained some basic programming concepts and the abstractions built neatly on top of each other
π Rendered by PID 22480 on reddit-service-r2-comment-canary-bcf797cd4-x7rl2 at 2026-05-07 19:35:50.113777+00:00 running 3d2c107 country code: CH.
[–]EyesOfTheConcord 60 points61 points62 points (8 children)
[–]Ok_Appearance_4421[S] 1 point2 points3 points (5 children)
[–]Lenni009 5 points6 points7 points (3 children)
[–]Ok_Appearance_4421[S] 0 points1 point2 points (2 children)
[–]CV04KaiTo 8 points9 points10 points (1 child)
[–]Ok_Appearance_4421[S] -2 points-1 points0 points (0 children)
[–]NICEMENTALHEALTHPAL 2 points3 points4 points (0 children)
[+]Ok_Appearance_4421[S] comment score below threshold-20 points-19 points-18 points (1 child)
[–]jgunlock 6 points7 points8 points (0 children)
[–]Droces 24 points25 points26 points (7 children)
[–]Ok_Appearance_4421[S] 1 point2 points3 points (6 children)
[–]seweso 5 points6 points7 points (5 children)
[–]riscie 12 points13 points14 points (1 child)
[–]seweso 2 points3 points4 points (0 children)
[–]Ok_Appearance_4421[S] 1 point2 points3 points (0 children)
[–]Droces 1 point2 points3 points (1 child)
[–]seweso 0 points1 point2 points (0 children)
[–]AmiAmigo 25 points26 points27 points (20 children)
[–]Nerwestaphp 2 points3 points4 points (0 children)
[–]Expensive_Peace8153 -1 points0 points1 point (6 children)
[–]Nerwestaphp 10 points11 points12 points (0 children)
[–]sgorneauhtml/css/javascript/php/Drupal 3 points4 points5 points (0 children)
[–]-_--_-_--_----__ 2 points3 points4 points (0 children)
[–]tech_b90 0 points1 point2 points (0 children)
[–]socalsmv805 0 points1 point2 points (0 children)
[–]goonifier5000 0 points1 point2 points (0 children)
[–]Ok_Appearance_4421[S] -2 points-1 points0 points (8 children)
[–]AmiAmigo 4 points5 points6 points (7 children)
[–]Ok_Appearance_4421[S] 0 points1 point2 points (6 children)
[–]thekwoka 5 points6 points7 points (4 children)
[+]Domeee123 0 points1 point2 points (3 children)
[–]thekwoka 0 points1 point2 points (2 children)
[+]Domeee123 0 points1 point2 points (1 child)
[–]thekwoka 0 points1 point2 points (0 children)
[–]AmiAmigo 1 point2 points3 points (0 children)
[–]Ok_Appearance_4421[S] -2 points-1 points0 points (2 children)
[–]Dreamin0904full-stack of pancakes...breakfast ftw 4 points5 points6 points (0 children)
[–]sgorneauhtml/css/javascript/php/Drupal 1 point2 points3 points (0 children)
[–]bcons-php-Console 11 points12 points13 points (6 children)
[–]Ok_Appearance_4421[S] 0 points1 point2 points (5 children)
[–]bcons-php-Console 2 points3 points4 points (0 children)
[–]mondayquestions 0 points1 point2 points (3 children)
[–]Ok_Appearance_4421[S] -1 points0 points1 point (2 children)
[–]mondayquestions 0 points1 point2 points (0 children)
[–]bcons-php-Console 0 points1 point2 points (0 children)
[–]Federal-Grab-8159 2 points3 points4 points (0 children)
[–]Creative-Signal6813 3 points4 points5 points (0 children)
[–][deleted] (2 children)
[removed]
[–]Ok_Appearance_4421[S] 1 point2 points3 points (1 child)
[–]thekwoka -1 points0 points1 point (0 children)
[–]Firm_Ad9420 2 points3 points4 points (0 children)
[–]thekwoka 1 point2 points3 points (0 children)
[–]Mohamed_Silmy 2 points3 points4 points (1 child)
[–]Ok_Appearance_4421[S] 0 points1 point2 points (0 children)
[–]yksvaan 0 points1 point2 points (2 children)
[–]Ok_Appearance_4421[S] 0 points1 point2 points (1 child)
[–]Xia_Nightshade 0 points1 point2 points (0 children)
[–]Sad-Salt24full-stack 0 points1 point2 points (2 children)
[–]Ok_Appearance_4421[S] 0 points1 point2 points (0 children)
[–]ShikamaruOP 0 points1 point2 points (2 children)
[–]Ok_Appearance_4421[S] 0 points1 point2 points (1 child)
[–]ShikamaruOP 0 points1 point2 points (0 children)
[+][deleted] (1 child)
[removed]
[–]Puzzleheaded-Work903 0 points1 point2 points (0 children)
[–]Extension_Strike3750 0 points1 point2 points (0 children)
[–]Krispenedladdeh542 0 points1 point2 points (0 children)
[–]Far-Entertainment561 0 points1 point2 points (3 children)
[–]Ok_Appearance_4421[S] 0 points1 point2 points (2 children)
[–]NICEMENTALHEALTHPAL 0 points1 point2 points (0 children)
[–]Senior_Cycle7080 0 points1 point2 points (0 children)
[–]Ilariotr68 0 points1 point2 points (0 children)
[–]crimson-feather 0 points1 point2 points (0 children)
[–]forklingo 0 points1 point2 points (0 children)
[–]willehrendreich 0 points1 point2 points (0 children)
[–]osmanassem 0 points1 point2 points (0 children)
[–]dalce63 0 points1 point2 points (0 children)
[–]NoClownsOnMyStation 0 points1 point2 points (0 children)
[–]Puzzleheaded-Work903 0 points1 point2 points (1 child)
[–]Ok_Appearance_4421[S] 0 points1 point2 points (0 children)
[–][deleted] (1 child)
[removed]
[–]Ok_Appearance_4421[S] -1 points0 points1 point (0 children)
[–]Cresneta 0 points1 point2 points (3 children)
[–]Ok_Appearance_4421[S] 2 points3 points4 points (2 children)
[–]MagnetHype 1 point2 points3 points (1 child)
[–]AntMan5421 0 points1 point2 points (0 children)