How To Fix No Such Table: Sqlite_sequence Error
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 would any table. The only thing you cannot do is to cr...
How To Build Your Own Static Site Generator
Static site generators have quickly grown to become the preferred way to create documentation and simple websites. Unlike dynamic websites, static sites do not require any server-side programming and come with minimal server-side maintenance. Also, static site hosting services such as ...
How To Remove New (untracked) Files From A Git Repo
Sometimes 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...
How To Build A Serverless Contact Form With Digital Ocean Functions
This 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 be st...