Code Packets
Browse all published coding projects
Concept of 'this' pointer in C++
In this guide we will learn the concept of 'this' pointer, it's use and how to implement in the C++ program.
Learning log using Django
We are going to create learning log Django which will keep track of all the things we learned daily .
Friend Class in C++
In this guide we will see the concept of friend class, it's usage and program in C++.
Concept of Constructor and their types in C++
In this guide we will learn about constructor, their types and how to use them in C++.
Decorators in Python
Imagine working on a large project consisting of tens of thousands of lines of code which may includes multiple functions and classes. Continuous modification in the code could be problematic .
Streamlit application to compare efficiencies of Machine Learning models in Python
This is a streamlit application which is written in Python. The program feeds a dataset (crop dataset) and runs 4 machine learning models on it i.e.: 1. KNN 2. SVM 3. Random forest 4. Naive bayes
Staircase problem using recursion in C++
A child is running up a staircase with N steps and can hop either 1, 2 or 3 steps at a time. Implement a method to count how many possible ways the child can run-up up the stairs.
Animated Face Gesture using Tkinter
Changing pet face gestures by detecting of the cursor the animated face created here will change the expressions.
Paint App in Python
This is a paint application developed in Python using Python PyQt5 framework and designed using QtDesigner.
Timer in Python using PyQt5 Framework
This is a Timer Application developed in Python using Python PyQt5 Framework and designed using QtDesigner.
Famous Minesweeper Game in Python
This is a Minesweeper Game developed in Python using its famous framework called PyQt5 and the game structure is designed using QtDesigner.
Interface in Java
In this tutorial we will learn about the concept of Interface in java. We learn about interface through a simple code.