RSSAmplifier

Blog

codewithstein

RSS feed of CodeWithStein

codewithstein.comRSS feed ↗209 posts

Latest posts

Building a platform for launching and discovering apps

Since I've been into building apps lately, I wanted a platform to launch this on. That became GoAppyGo.

Building mobile apps for a living

I have always been intrigued by building something, and making a living of it.

Building mobile apps with React Native

Building apps with React Native is actually a great experience. And lately, i've built two of them.

How to add simple http authentication in Ruby on Rails

Sometimes you don't need a fancy authentication for your website, here's how to can implement that.

How to slugify a string in Ruby on Rails

Slugifying a string in Ruby on Rails is very easy to do. Here's a few examples on how to do it.

Should you use AI as a developer?

What are the benefits, and downside of using AI as a developer? Here's my thoughts as a professional developer

Building my first SaaS in years

It's been a really long time since I've built, and actually finished something.

How To Host Multiple Django Projects On One Server | Using UpCloud

Learn how to host multiple Django projects on one server in this tutorial.

Choosing the correct tech stack

There are so many languages, frameworks, database, etc, to choose from. Show how do you decide?

HTMX And Django - Click to edit

Learn how to use Htmx with Django to create a text you can click to edit without refreshing the browser.

Django + Htmx = True

Recently I've been really intrigued by the combination of Django and Htmx.

Make your own decorators using Django

By using a decorator, you can save your self both time and prevent repeating your code.

Learn Django in 8 Steps | Django Roadmap

Learning a new framework can be overwhelming. In this video, I will go through a roadmap that will take you from a to z.

Django Tips - Using empty in for loops

There are different ways to check if a list is empty, but this is by far the best.

Should I learn Django in 2024?

JavaScript frameworks like React, Vue, etc, are really popular these days. But what about Django?

How Does Django Work | Django Bits

Learn how the different parts of Django is connected, and the flow of a user request.

I built a new MVP - IndieGui.de

I love building stuff, and recently I just build IndieGuide using Django.

Django Tutorial For Beginners - Celery and Deployment

Learn how to implement a queue solution like Celery into your Django projects.

Launched Roadlifer - Discover more

Roadlifer is an app for the vanlife community. I have built it using React Native in the front end, and used Django for the backend.

My 5 most popular Django tutorials

I have created a lot of Django tutorials. In this post, I will write a summary of the 5 most popular.

What are the different database solutions for Django?

You can pretty much choose whatever database you want when working with Django. Here are a few of them.

How to include templates | Django

Template inheritance is a powerful feature of Django's templating system that allows you to build a base skeleton template that contains all the common elements of your site and defines blocks that child templates can override.

What are Django Inclusion Tags?

Django inclusion tags are a way to include a pre-rendered piece of a Django template within another template.

RESIST The Urge To Build Your Dream Project

Building your dream project always seems like a good idea when you’re learning web development. But it might not be the smartest thing to do, and in this video I will talk a little bit about this .

Django Wagtail CMS | Building A Blog In 20 Minutes

In this video, I go through installation and how to build a simple blog using the CMS.

How Long Time Does It Take To LEARN Django

One of the questions I get asked most about here on YouTube is “How long time does it take to learn Django” and similar.

How To SUCCEED As a Self Taught Developer

I’m a self taught developer, I work remotely and I earn more than average here in Norway. In this video, I will talk about how I got here and how you can do it too.

Python Django Social Authentication | Django AllAuth Tutorial

Learn how to authenticate users using social authentication.

Django Contact Form | How To Send Email Using Django?

Learn how to set up a contact form which will send email to a SMTP backend using Django.

Django and Vue - Upload Files | Single and Multiple | Axios

Learn how to use Python Django and Vue to build a multiple/single file uploader. Select the files in your browser, and upload them using Axios to the backend (Django).

Django Blog - Tutorial with no script

Watch how I build a simple Django blog from scratch. For the frontend, I use Tailwind to make it look great.

Django Contact Manager

Watch how I build a simple Django contact manager from scratch. For the frontend, I use Tailwind to make it look great.

Where to continue? - 30 days of Django

After a month of learning Django, where do you go for the next step?

The Messages Framework - 30 days of Django

Django comes with a cool message framework which let's us use session to show messages to the user.

Pagination - 30 days of Django

Learn how to add pagination so you can split your items into multiple pages.

Template filters - 30 days of Django

Let's learn what a template filter is and how to use one.

Creating a model function - 30 days of Django

A common practice in Django is making fat models and thin views. Keep reading to learn more.

Show only your data - 30 days of Django

Learn how to connect data in a model to the authenticated user.

Logging out - 30 days of Django

In this part we will make it possible to log out, plus do some other configurations to the project.

Logging in - 30 days of Django

In this part, we will learn more concepts of the Django authentication system.

Make it possible to sign up - 30 days of Django

It would be cool to make it possible to separate tasks based on the user. So let's learn about authentication today.

Prettying up the design a little bit - 30 days of Django

Let's make the project a little more visually appealing.

Adding a simple search - 30 days of Django

Let's make a simple search for our task manager so it get easier to find your tasks.

Completing and deleting tasks - 30 days of Django

Let's work more with the tasks. It's time to make it possible to completing and deleting tasks.

Editing tasks - 30 days of Django

Let's learn more about forms and how to create an edit form for the tasks.

Adding tasks in the front end - 30 days of Django

We have already learned how to add data in the admin interface. Now, let's make it possible to add them in the front end.

Separate url files and why - 30 days of Django

Learn how and why it's important to have separate urls.py file for each of the Django apps

Category detail page - 30 days of Django

In this part, we are going to make it possible to go into a category detail page.

Show list of categories - 30 days of Django

In this part, we are going to show all of the categories in a sidebar on our template.

Connecting two models - 30 days of Django

Today, we are going to make it possible to connect a task to a category.