Published 2022-07-14 06:56:51
How To Fix No Such Table: Sqlite_sequence ErrorWhat is the sqlite_sequence table for? The sqlite_sequence table keeps track of AUTOINCREMENT columns for tables you create. It's a table like the one you create yourself which means you can UPDATE, INSERT, and, DELETE entries like you wou...
Published 2022-07-01 13:29:55
How To Remove New (untracked) Files From A Git RepoSometimes whiles working on a project you end up with files and or folders that you don't need. This usually happens when you run scaffolders or generators. Git allows you to delete such files and folders. They are known as untracked folders or files as they have never been committed ad tr...
Published 2022-07-01 04:15:52
How To Build A Serverless Contact Form With Digital Ocean FunctionsThis tutorial walks you through creating a serverless contact form handler for your static site using Digital Ocean functions . As part of the setup, we will ...
Published 2022-06-06 08:47:00
Automate Deployment To AWS S3 Using Github ActionsThe first step is to setup an S3 bucket for your static site, I have a different article on how to do that . In other to enable deployment from GitHub to S3 you should also have the sour...
Published 2022-06-05 19:08:37
Deploying A Static Website To AWS S3AWS S3 is a cloud storage service that caters to the storage needs of modern software applications. S3 buckets can be used to host static sites. Any website made up of HTML, CSS, and Javascript can be hosted and made publicly available using S3. Once you hav...
Published 2022-05-24 06:13:07
Javascript Assignment Deconstruction - A Good Use CaseThe Javascript assignment deconstruction syntax simplifies taking values in an array or object and storing each ...