Writing

Blog

Product notes, engineering write-ups, and lessons from building, operating, and buying software at CodeConda.

How to add Stripe payment processing to Django web app

How to add Stripe payment processing to Django web app

In today’s journey, we will delve deep into the realms of Django, a high-level Python Web framework that encourages rapid development and clean, pragmatic design.

How to integrate ChatGPT-3.5 with Node.js

How to integrate ChatGPT-3.5 with Node.js

ChatGPT has blown up recently, and it seems like every company has integrated AI chat into their websites. As a developer, it could be a very useful skill to understand how exactly this gets done.

How to interface with PostgreSQL database in Node.js

How to interface with PostgreSQL database in Node.js

In this article, we'll be walking through how to interface with a PostgreSQL database in a Node.js application using pg-pool, a PostgreSQL connection pool library.

User authentication with Firebase for React

User authentication with Firebase for React

One of the first things any web app developer needs to do after building their React app is implement user authentication. A smooth, secure user authentication process is key.

How to add multiple PostgreSQL databases to a Django app

How to add multiple PostgreSQL databases to a Django app

Make sure you have PostgreSQL installed on your system. You'll also need the psycopg2 package to connect Django to PostgreSQL. Open your Django project's settings.py file.

How to create a Vue.js website from scratch

How to create a Vue.js website from scratch

React is incredibly popular framework for building SPAs (single-page applications). However, there are many options out there, so there's no reason to limit yourself. Vue.js has been gaining significant popularity recently.

Building an ML model using text data

Building an ML model using text data

Creating a text-based machine learning (ML) model typically involves tasks such as text classification or text generation. Let's go through an example of building a text classification model using input text.

How to render a table in React from API call

How to render a table in React from API call

After you've created a clean landing page using React, you might want to start building dynamically rendered pages that load data from a server using an API (if you're lucky, it'll be well-RESTed).

Human pose estimation with MediaPipe

Human pose estimation with MediaPipe

If you're working on a machine vision application that involves any sort of interaction with people, chances are you'll need to perform pose estimation.