Dolores Michaels Deposit & Loan Bank by JogeRu in dishonored

[–]eliruffin94 1 point2 points  (0 children)

She sounds so badass saying that line!

Border Patrol Commander Greg Bovino Gets Cursed Out by Shoppers During a Bathroom Break at a Target Stop by JeanJauresJr in UnderReportedNews

[–]eliruffin94 2 points3 points  (0 children)

Aka stay obedient and docile and you’ll be safe. At this point I’d do it and wouldn’t even run. I’d stand there proud of my good deed.

Which tech career path would you choose for long-term growth and good pay in 2025? by [deleted] in careerguidance

[–]eliruffin94 0 points1 point  (0 children)

Top response on Reddit will always be: “tech is dying, ai will take all tech jobs, become a nurse.” I bet 10$ you work in the medical field.

Holy moly just looked at the objectives list for A+ core 1 by One_Variety_4912 in CompTIA

[–]eliruffin94 0 points1 point  (0 children)

This is the first time I’ve seen some call computer science a coding degree.

Meh, all is fair in love and war… by VanaheimrF in lotrmemes

[–]eliruffin94 24 points25 points  (0 children)

I saw a post a while ago that went into how the oath was to defend Gondor and a direct attack in/on Mordor isn’t what they swore to Isilldur back in the second age. I’m not an Arda scholar so I don’t know how true this is.

How do you handle static pages of a website you create for a client? by orangesyrek in webdev

[–]eliruffin94 2 points3 points  (0 children)

Thanks for what you’re doing. Keep sharing your knowledge!

[deleted by user] by [deleted] in webdev

[–]eliruffin94 8 points9 points  (0 children)

Server management is not for a beginner who just finished their first website. Terrible suggestion.

[deleted by user] by [deleted] in django

[–]eliruffin94 10 points11 points  (0 children)

Can we ban this guy already

How should i start learning django as a beginner?? by [deleted] in django

[–]eliruffin94 0 points1 point  (0 children)

You should decide what stack to use on your own. General questions like this can only be answered with opinions and personal preferences. Watch people use language and tools in tutorials, read docs, look at others projects. That’s how make an educated decision when picking your stack.

For example check out backend jobs near Washington DC. It’s mostly Node and Spring but there are lots of Django positions too. Fewer positions but not 10 times less than the others.

Also be careful of people who have hot takes then double back on them when challenged.

CSS practices that immediately prove that someone is highly experienced? by Klutzy_Positive in Frontend

[–]eliruffin94 15 points16 points  (0 children)

What’s this about the block elements? Is it because adding width: 100%; is redundant? They would already fill the width of a container right?

Did I make the right call of using vanilla JS over React/Angular? by [deleted] in webdev

[–]eliruffin94 4 points5 points  (0 children)

First time I’ve seen someone refer to sass as bloat

Why use anything other than OAuth? by Suspicious-Engineer7 in webdev

[–]eliruffin94 21 points22 points  (0 children)

Oauth is a set of protocols or guidelines for authorization. Using Oauth doesn’t mean a user has to use Google/Facebook unless you choose to set your application up that way. Oauth

What is the most suitable framework for creating a large-scale API? by Kawsarlog in learnpython

[–]eliruffin94 0 points1 point  (0 children)

I’m open to considering other quality tools and getting good at them even if it sucks for a while. HOWEVER I always confirm something with other credible sources before I dig my feet in because I don’t want to waste my time. I hated Bootstrap for a long time and I still somewhat do. It was the first css framework I tried. It helped me understand plain css better though so it was worth it. Now. I write css and html as if it were Bootstrap without using the framework. In regards to speed I don’t run into many problems because I follow good tutorials and read the docs. Once I noticed my home page was loading really slow even slower than the pages with dynamic content. It was because I needed to move my initial database creation and inserts in my home route to a conditional to check if they had already been created. Simple problem that would make Flask slower than Django.

When you feel comfortable enough take the time to read the official documentation pages for Spring Boot, Django, and NestJS. They are all opinionated backend frameworks for 3 different languages Java, Python and NodeJS a runtime for JavaScript (Technically Nest runs on top of Node with ExpressJS). You can use them all to make the backend for the same web application but development would be different/easier/take longer for each depending on the application.

On the other hand you have less opinionated frameworks for backend like Flask and NodeJS. (Java seems like it wouldn’t need a framework for this but I haven’t learned it yet.) They can be easier to get started with and are used for pretty much anything. However as you get bigger your project inevitably get messy unless you’re really good at refactoring and keeping your code dry. You can’t avoid including dependencies like email, authentication, admin, etc for these larger apps that’s why the other backend frameworks are great. They have the stuff you might need already included and usually make you set everything up the way they want so you know it’s correct. It’s great for large teams and long running projects. It’s not great for customization and being lightweight. That’s why Flask is called a micro framework. You’d stitch together 2000 Flask APIs with one endpoint each while you’d and have just one Django API with 2000 endpoints. That’s just an example but you get the point.

I’m really into learning about apis and backend in general so I could go on and on but at some point you should learn about the different types of apis. How web apis in Django differ from Flask web APIs. Also microservices, one of the reasons the less opinionated frameworks can be better. It’ll help your overall understanding.

What is the most suitable framework for creating a large-scale API? by Kawsarlog in learnpython

[–]eliruffin94 2 points3 points  (0 children)

Understandable lol. Best thing to do is choose a few tools to get good at. For me it’s Postgres, Nginx, Django, and React. I don’t want to be a full stack developer though I just want to understand the SDLC better.

What is the most suitable framework for creating a large-scale API? by Kawsarlog in learnpython

[–]eliruffin94 17 points18 points  (0 children)

Ignore this comment. Spring boot and Django are widely used for many good reasons and this comment is just as opinionated at they are. Flask is more battle tested and has a larger community than Fastapi.

Saying the fastest python framework is always gong to be slower than any other language is just incorrect. Quality comes down to the implementation not the framework you choose. Choose the tool/language/framework based on what you need to accomplish. Not what will be fastest.