Empowering Businesses and People with SantiFlow by SantiCode: Building Rock-Solid Systems

In today’s fast-paced business landscape, agility and adaptability are crucial. Yet, too often, companies find themselves reliant on a few key people or on processes so complex that they risk grinding to a halt when someone leaves or a process stumbles. This reliance isn’t sustainable. That’s why I built SantiFlow by SantiCode: a system designed […]

Read More Empowering Businesses and People with SantiFlow by SantiCode: Building Rock-Solid Systems

Achieving 100% Accuracy with a PHP and SQL-Based Production Schedule to Replace Excel

2. Introduction Managing the production schedule using Excel posed significant challenges due to unauthorized edits, data clutter, and inconsistencies. To solve these issues, we implemented a PHP and SQL-based schedule system that improved accuracy and streamlined the process, ensuring a 100% error-free workflow. 3. Problem Statement The shared Excel-based production schedule was prone to unauthorized […]

Read More Achieving 100% Accuracy with a PHP and SQL-Based Production Schedule to Replace Excel

Title: Elevating Inventory Management for Any Business: A Deep Dive into My Custom System

An Inventory management is the backbone of any successful business. Whether you’re handling agricultural products, manufacturing goods, or managing a warehouse full of parts, maintaining precise control over your inventory can make or break your operations. That’s why I decided to build a highly customizable Inventory Management System (IMS) designed to fit any business. From […]

Read More Title: Elevating Inventory Management for Any Business: A Deep Dive into My Custom System

What an IT Admin might have to deal with as a One Man Show.

As an IT administrator, especially if you are the sole IT professional in a company, you have the important task of maintaining and managing the company’s technology infrastructure. This includes everything from servers and desktops, to network security, cloud computing, and mobile device management. The role of an IT administrator can be demanding, especially for […]

Read More What an IT Admin might have to deal with as a One Man Show.

Constants in C++

Why don’t mathematicians like to change constants? Because they’re always set in their ways! A constant in C++ is a value that cannot be changed once it is set. It is like a label or a name for a specific value, and the value itself cannot be altered. For example, if you have a constant […]

Read More Constants in C++

Cyber stuff for your Resume

My Strong skill is coding, I can write scripts like a champ! No Doubt on that, check out under categories cyber in this site and you will see! I mean I went to college for Software Development but I was in the ECPI Cyber Team, While there we competed in a few cyber competitions, and […]

Read More Cyber stuff for your Resume

Functions in C++

Functions in C++ allow you to group a set of statements together and give them a name, so that you can use them multiple times in your program. Functions can also accept parameters and return values. Here’s an example of a simple function in C++ that takes no parameters and returns no value: This function […]

Read More Functions in C++

LOOPS in C++

Why was the for loop feeling cold? Because it left its i out! Loops in C++ allow you to execute a block of code multiple times, based on a certain condition. There are a few types of loops in C++, but the most commonly used are for loops, while loops, and do-while loops. A for […]

Read More LOOPS in C++

If statements in C++

if statement” in C++ is used to check if a certain condition is true or false. If the condition is true, a block of code will be executed. If the condition is false, the block of code will be skipped. Here’s an example of an if statement in C++: In this example, the condition being […]

Read More If statements in C++