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

Grammarly vs ProWritingAid vs Hemingway 2026 Compared

Grammarly vs ProWritingAid vs Hemingway 2026 Compared

Writing quality matters for Filipino freelancers and business professionals communicating with US, Australian, and UK clients. A well-written email or proposal wins deals that a clunky one loses. This guide …

Read more

Best AI Meeting Recorders: Otter vs Fireflies vs Grain 2026

Best AI Meeting Recorders: Otter vs Fireflies vs Grain 2026

AI meeting recorders turn every Zoom, Google Meet, or Microsoft Teams call into searchable text with automatic summaries, action items, and sentiment analysis. For Filipino remote teams working across time …

Read more

Loom vs Vidyard vs Berrycast: Async Video Tools 2026

Loom vs Vidyard vs Berrycast: Async Video Tools 2026

Async video messaging tools let you record a screen + camera + voice message and share as a link, replacing meetings that could have been an email. For Filipino remote …

Read more

Best Time Tracking Software for Remote Teams 2026

Best Time Tracking Software for Remote Teams 2026

Time tracking software solves two problems: billing clients accurately for freelance and agency work, and understanding where your team’s hours actually go. For Filipino remote teams and freelancers working with …

Read more

HubSpot vs Zoho vs Salesforce: 2026 SMB Comparison

HubSpot vs Zoho vs Salesforce: 2026 SMB Comparison

HubSpot, Zoho CRM, and Salesforce are the three CRM platforms most commonly considered by Filipino small-to-mid businesses (SMBs) planning to scale past 20 employees. Choosing one is a 3-5 year …

Read more

Best CRM for Small Filipino Businesses 2026 Ranking

Best CRM for Small Filipino Businesses 2026 Ranking

A CRM (Customer Relationship Management tool) tracks your leads, deals, and customer conversations in one system. For a small Filipino business, the right CRM turns messy Gmail conversations and Viber …

Read more

Slack vs Microsoft Teams: Honest 2026 Comparison

Slack vs Microsoft Teams: Honest 2026 Comparison

Slack and Microsoft Teams are the two dominant team chat platforms in 2026. If your workplace uses one, you probably have opinions about the other. The honest truth is that …

Read more

Airtable vs Google Sheets: When to Upgrade (2026)

Airtable vs Google Sheets: When to Upgrade (2026)

Google Sheets is free, familiar, and handles 90 percent of everyday data work well. Airtable costs USD 20/user/month at the Team tier and looks like a spreadsheet at first glance. …

Read more

Best Project Management Software for Filipino Agencies 2026

Best Project Management Software for Filipino Agencies 2026

Filipino digital agencies in 2026 face specific project management challenges that generic “best PM tool” guides miss. You are managing US and Australian clients across time zones, handling PHP client …

Read more

Asana vs monday.com vs ClickUp 2026: Which for Your Team

Asana vs monday.com vs ClickUp 2026: Which for Your Team

Asana, monday.com, and ClickUp are the three most-recommended project management tools for teams under 100 people. All three call themselves “the all-in-one workspace” and all three cost roughly the same …

Read more

Phishing Awareness for Filipino SMB Teams 2026 Guide

Phishing Awareness for Filipino SMB Teams 2026 Guide

Phishing costs Filipino small and medium businesses (SMBs) more than most owners realize. A single successful business email compromise (BEC) can drain the business bank account, expose customer data triggering …

Read more

VPN vs SmartDNS vs Proxy: Which One and When (2026)

VPN vs SmartDNS vs Proxy: Which One and When (2026)

VPN, SmartDNS, and proxy are three different tools that solve overlapping but distinct problems. Confusing them (which most guides do) leads to picking the wrong solution and either overspending or …

Read more

How to Enable Google Advanced Protection Program 2026

How to Enable Google Advanced Protection Program 2026

Google Advanced Protection Program (APP) is the strongest security tier Google offers for consumer and G Suite accounts. It is designed for people at elevated risk of targeted attacks: journalists, …

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.