Code Packets
Browse all published coding projects
Collection Framework (Lists) in Java
Collection Framework contains all Data Structures in Java. In this packet we will be looking at ArrayList, LinkedList and Stack.
Image classification using CNN in Python using Tensorflow and Keras
We create a convolutional neural network to train on the CIFAR-10 and MNIST datasets to classify data into corresponding classes. The project is in Python using Tensorflow and Keras.
Speech Recognition to search Google and YouTube using Python
Basically, I make a program to detect speech and translate into text and then search Google or YouTube whatever we says. I have used Python language and also used speech_recognition library.
Face Detection in live feed using openCV and Python
Program detects the face in webcam and when we press key 's' from keyboard, it will save all the detected face in your system as desired location. I have used Python language and OpenCV library.
Chatting GUI in Python
This packet contains two Python codes to run a chatting GUI in Python based on sockets, multithreading, and Tkinter.
Car price prediction using linear regression in Python (machine learning).
Prediction of the price of data based on the Car data set using linear regression in Python.
Repeating DNA subsequences using Sliding Window Technique in C++
Finding repeating subsequences of size 10 from a given DNA sequence using sliding window technique in C++
Making Online Shopping Portal Using JAVA
Hi, Today we will learn how to make an online shopping portal using JAVA with two categories of customers.
Casino Number Guessing Game in C++
It is a number Guessing project in which players enter deposits amount to play the game. It is a simple text-based game in which we have used a procedure-oriented method to design it.
Number system conversions in C++
A number system is a writing system for expressing numbers, i.e. mathematical notation for representing numbers of a given set using digits or other symbols in a consistent manner.
Number Series in C++
Number series are various types of sequences that exist in a specific pattern and/or are subjected to certain conditions.
How to convert Hexadecimal to Binary in C++
A hexadecimal number has Base 16. A Binary has base 2. A binary number can contain 0s and 1s. Hexadecimal consists of the digits 0-9, A-F.(A-F represents 10-15)