Skip to main content

megagigawhat.com (mercan's first website)

megagigawhat.com

Data Manager – Cloud Cost & Data Calculation Platform

MegaGigaWhat is a cloud cost and data calculation platform built to realistically estimate cloud storage costs and large-scale data transfer times.

Storage Cost Calculator

Calculates storage costs for AWS, Azure, and GCP based on storage class and usage type.

I did not use a ready-made SQL or external database. Pricing data is structured manually, and I update the prices myself whenever providers change them.

On the calculation side, the system separately computes Storage,Retrieval,Data egress,API request costs.

All components are calculated individually and returned as a full cost breakdown.

In the future, I plan to fetch pricing dynamically through a FastAPI service.

Transfer Time Calculator

Transfer duration is calculated directly at the bit level.

Data is converted into bits, bandwidth is converted from Mbit to bits, and total time is calculated in seconds. The result is then broken down into days, hours, minutes, and seconds.

It does not rely on approximations — it performs direct mathematical computation.

IP Lookup

The IP page is built with FastAPI.

Users can:View their public IP address,Perform IP trace, See their geolocation displayed on a map

The geolocation system uses a primary + fallback API structure. Folium is used for interactive map rendering.

Overall, the project is not just a combination of ready-made services. The core logic, pricing structure, and calculation systems are built manually. Behind a simple interface, there is a technically structured and clearly defined system.