Free Source Code, Capstone Projects & Programming Tutorials

Your trusted resource for downloadable source code, complete capstone projects with ER diagrams and Chapter 1-5 documentation, AI-ready capstones (RAG, ChatGPT, computer vision), and step-by-step tutorials in PHP, Python, Java, JavaScript, and more. Built by working developers, tested before publishing, and updated for 2026.

📅 Updated weekly | ✅ Code tested before publishing | 👨‍💻 Built by PIES IT Solutions developers

C Programming Projects For Beginners with Source Code 2026

Best C Projects with Source Code free download for beginners 2020

This article about Simple C Programming Projects For Beginners with Source Code Free Download , will give all the complete free c projects for beginners, mini-projects, projects, games, software, and …

Read more

Employee Management System in Laravel With Source Code

Employee Management System in Laravel With Source Code

The employee management system project in Laravel is a based program. This is simple, yet it is really educational for educational purposes. This software can be used as a learning …

Read more

Inventory Management System in Laravel With Source Code

Inventory Management System in Laravel with Source Code

The Inventory Management System Project in Laravel is a based program. A web-based tool that allows you to conveniently manage stock inventory: Dashboard, Stock Management, Purchasing, Sales, Suppliers, Customers, Outstanding, …

Read more

Operator in C with Types and Examples

operators in C

Operators in C Programming Language – A symbol that operates on a value or variable is known as C operator. C is a general-purpose, procedural computer programming language supporting structured …

Read more

Cannot Import Name Markup From jinja2 [SOLVED]

Cannot Import Name Markup From jinja2

Cannot Import Name Markup From jinja2 error happens because some of Jinja’s internal modules were changed in a recent release. In one line, if you want to fix this error, …

Read more

AttributeError: HTMLParser Object Has No Attribute Unescape

AttributeError HTMLParser Object Has No Attribute Unescape

Attributeerror: HTMLParser Object Has No Attribute Unescape error happens because Python version 3.9 is not compatible. In Python 3.9.x version series, unescape has been taken out of the htmlparser module. …

Read more

‘Smote’ Object Has No Attribute ‘fit_sample’ [SOLVED]

'Smote' Object Has No Attribute 'fit_sample'

‘Smote’ Object Has No Attribute ‘fit_sample’ error happens when fit sample is wrong. Replace fit_sample() use fit_resample() function. In this article, we’ll look at the whole process with a given …

Read more

AttributeError: Module TensorFlow Has No Attribute Contrib

attributeerror module tensorflow has no attribute contrib

attributeerror: module tensorflow has no attribute contrib usually happens when different versions of the tf.contrib module don’t work together. Since this module isn’t part of TF 2.0, it isn’t available. …

Read more

ModuleNotFoundError: No Module Named Pycocotools [SOLVED]

modulenotfounderror no module named pycocotools

ModuleNotFoundError: No Module Named Pycocotools happens because pycocotools in different top layer packages don’t work well together (TensorFlow etc). In this tutorial we gonna fix the issue about ModuleNotFoundError: No Module …

Read more

C++ Dynamic Memory Tutorial with Program Example

C++ Dynamic Memory Tutorial with Program Example

C++ allows us to set the memory for a variable or an array while the program runs and it’s called C++ dynamic memory allocation. What is C++ Dynamic Memory? C++ …

Read more

Frequently Asked Questions

Are these deep learning projects free for capstone and thesis use?
Yes. All deep learning projects on this hub are free to download, modify, and submit. No attribution required for academic use. Most are MIT-licensed or include source-code packs with sample datasets and pretrained model weights.
What deep learning frameworks do I need installed?
Most projects use OpenCV (cv2) for video capture and image preprocessing, plus one of: TensorFlow / Keras (Caffe model loading via cv2.dnn, custom CNN training), PyTorch (research-style models, YOLO v5+, transformers), or MediaPipe (Google's optimized face/hand/pose detectors). Install with pip install opencv-python tensorflow keras torch torchvision mediapipe numpy. Python 3.10, 3.11, or 3.12 recommended (avoid 3.13 until all wheels catch up).
Do I need a GPU to run these deep learning projects?
For inference (running a pretrained model on your webcam): no, CPU runs at 15-30 FPS for most computer-vision tasks. For training a custom model on your own dataset: GPU strongly recommended (CPU works but is slow). Free GPU options: Google Colab Free (12-hour sessions, sufficient for most BSIT capstones), Kaggle Notebooks Free (30-hour weekly quota), Paperspace Free tier. No need to buy a $1000+ GPU just for a capstone defense.
Deep learning vs classical machine learning, which should I pick for my capstone?
Pick deep learning when your inputs are unstructured (images, audio, video, text) and you have 10,000+ training samples. Pick classical ML (random forest, SVM, logistic regression) for tabular data, small datasets (under 1,000 rows), or when you need explainable predictions for the panel. Many capstones combine both: deep learning for feature extraction (face embedding via FaceNet) plus classical ML on top (SVM classifier for identity matching).
Why is my OpenCV deep learning model running at 2 FPS?
Three usual causes: (1) Resolution too high, resize frames to 640x480 or 320x240 before inference. (2) Wrong cv2.dnn backend, set net.setPreferableBackend(cv2.dnn.DNN_BACKEND_OPENCV) and net.setPreferableTarget(cv2.dnn.DNN_TARGET_CPU). (3) Heavy model on weak hardware, swap YOLO v5 for MobileNet-SSD or use Haar cascades for simple face/eye detection. Also close other applications and disable laptop battery-save throttling.
Can I extend a single OpenCV demo into a full BSIT capstone?
Yes, and you should. A standalone webcam demo (face detection alone) is too narrow for capstone scope. Wrap it in a real system: face recognition becomes Real-Time Attendance System with PHP/MySQL dashboard, object detection becomes Smart CCTV Alert System with email notifications, drowsiness detection becomes Driver Monitoring System for fleet vehicles. Add user accounts, database logging, simple admin UI, and write Chapters 1-5 manuscript to satisfy panel requirements.
How often is this deep learning projects list updated?
New deep learning projects are added periodically as we receive student requests and new models become OpenCV-compatible. Last refreshed June 2026 with 19 vision-focused projects covering face recognition, object detection, traffic-sign classification, OCR, and more.