You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bank Client Management System in C++ — console-based CRUD app with file persistence, soft-delete pattern, and clean Divide & Conquer architecture. Built as part of Course 7 — Algorithms & Problem Solving Level 3 | Programming Advices Roadmap.
C++ console ATM system with secure login, withdrawals, deposits, balance checking, PIN update, and client management — with file-based persistent storage.
65 advanced C++ problems building a complete Date & Time library from scratch — increment, decrement, comparison, period overlap, and more. Plus 2 real-world projects. Course 8 | Algorithms & Problem Solving Level 4 | Programming Advices Roadmap.
Tax Calculator desktop app built with C# and Windows Forms — features real-time tax computation, session history tracking, and layered input validation. First project in the WinForms self-practice series | Course 14 – C# Level 1 | Programming Advices Roadmap.
Bank System 2nd Extension — adds login, role-based bitwise permissions, and full User Management (CRUD) to the C++ console banking system. Course 8 | Algorithms & Problem Solving Level 4 | Programming Advices Roadmap.
Bank Client Management System — 1st Extension. Adds a full Transactions Menu with Deposit, Withdraw (with balance validation), and Total Balances tracking. Built in C++ using Divide & Conquer structured programming. Part of Course 7 | Programming Advices Roadmap.
A project that simulates a real-world queueing system for managing service lines. It allows issuing tickets, serving clients in order, and viewing the queue in both left-to-right and right-to-left directions.
simple C++ project that implements undo and redo functionality for string operations. It allows users to modify a string and then reverse or reapply changes using stack-based logic. This project demonstrates the use of data structures like stacks to manage a history of edits ...
A simple, template-based queue class in C++ built on top of a custom dynamic array (`clsDynamicArray`). This implementation supports core queue operations such as `push`, `pop`, `front`, and `back`, along with extended utilities like reversing the queue and inserting at custom positions.
Two-player Tic-Tac-Toe game built with C# WinForms. Features custom GDI+ grid drawing, image-based buttons, Tag-based state management, and a single shared event handler for all 9 cells. Course 14 — Programming Advices Roadmap.
Multi-form C# WinForms geography app — 9 forms, interactive world map with hover tooltips, text search, 7 continent info screens with PictureBox resources, and a confirm-exit dialog. First multi-form project | Programming Advices.
An ATM simulator extension for the 'Bank-Management-System-Cpp' repository, developed as part of the ProgrammingAdvices.com to handle client self-service banking operations.
"A simple and interactive Tic-Tac-Toe (XO) desktop game built with C# and Windows Forms (WinForms). Features a graphical UI, dynamic win-logic checking, and a reset option for endless play."