Skip to content

Instantly share code, notes, and snippets.

@thereal-osas
thereal-osas / README.md
Last active April 22, 2026 11:05
README for PropAnalytix — a Go/React property investment analysis tool. Covers the calculator architecture, feature set, security configuration, and project structure.

PropAnalytix

Property investment analysis for landlords and investors.

propanalytix.com · Built with Go · Gin · React · TypeScript


Overview

@thereal-osas
thereal-osas / calculation.go
Created April 22, 2026 11:01
Controller handling property investment ROI calculations in PropAnalytix. Includes seasonal revenue modelling, per-month occupancy, usage-limit enforcement, and JWT-authenticated request tracking. Built in Go.
package controllers
import (
"fmt"
"log"
"net/http"
"strconv"
"strings"
"github.com/Wembz/propanalytix/backend/services"