How to execute an application continuously and attach multiple modules like website, API, parsers? Using go channels and goroutines, we can achieve a periodic run of the application and stop it during predefined system events (like SIGTERM). To enable modular…
Category: Videos
List of published YouTube Videos.
Golang web app with HTML template (coding session for codekn.com)
In this tutorial, I will work on Golang front-end web app for the CODEKN.com project? The goal is to build a very simple web front-end for the CODEKN project.
Multi-stage Docker image for Go application | Sample Golang project
Docker images widely used nowadays. Containerization technologies make it easier to create, deploy, and run applications. In this video, I explain how we can set up a multi-stage Docker image for the Go application. The final version of the application…
KN: Open-source search engine project | System design | Go, Docker, GitHub Actions
Project KN is a real-world project example. In the current state, it is a monorepo project which consists of several back-end components, including service discovery, API, and core back-end called search engine. On the front-end, for now, there is one…
DevHub: Real World Project in Go, Python and JavaScript (React)
Source code – https://github.com/CoderVlogger/devhubPresentation – https://slides.com/codervlogger/chapter3-video1 DevHub – is an open-source and collaborative real-world project. With DevHub I have 2 main goals: Develop a really useful real-world project with a website and mobile application for developers Show the whole development…
Using Makefile in Python and Django project
Makefiles or make commands are used to automate build, test, run and other processes in the software development process. In this video, I will show an example of Makefile which we use in our open source DevHub project (link below)…
Machine Learning with Python: what do I read and watch?
Machine Learning is one of the most popular topics in computer science for the recent few days. As a Python engineer, I am also involved and interested in this Machine Learning and Data Science buzz.
DevHub – Example Django Project
DevHub is our next community project (will be). Technically it is a Django with a Postgres database withing Docker/Docker Compose. I will use this project to demonstrate the whole development/design process for a software development project.
Code review for the Python Mentorship 2.0 Assignment #1
As the next step in our Python Mentorship 2.0 program – Step #5 – I did a code review for the solutions provided by the mentorship members. Here is the video with detailed code review comments: Please check mentorship page…
Remove an element from Linked List / Python Interview Questions
Remove an element from Linked List / Python Interview Questions YouTube: https://youtu.be/ehnBWCIJ_NY In this video, we will solve LeetCode problem on LinkedList and our task is to remove the given element from LinkedList. Example Input: 1-2-6-3-4-5-6, val = 6 Output:…