-
Debugging C++ in Vim
Vim can work with GDB to debug C++ programs. This feature works in Vim version 8.1+. In this blog post, we’ll go through debugging C++ in Vim. Setting Things Up You need to load the plugin using the command: :packadd termdebug You have to do this every time you want...
-
Django Project Structure
Today I aim to make you know more about how a Django project is structured. We’ll start with how to do initial setup, move on to describing how Django apps look like, talk about the request/response cycle, and templates Initial Setup We first have to setup the environment before we...