Skip to content
View Follyb2810's full-sized avatar

Block or report Follyb2810

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
follyb2810/README.md

Babatunde Yusuf Folorunsho

Software Engineer · Data Architect · Full-Stack Developer · Mobile & Web3 Builder

I design data models first, then build the APIs, mobile apps, and products on top — across insurance, healthcare, gaming, Web3, cultural platforms, and multi-tenant SaaS.

Portfolio LinkedIn Email

Lagos, Nigeria · Open to remote & hybrid roles


About Me

I build production software end to end — but I start with the data layer. Clear entities, relationships, constraints, and migration paths are what make systems reliable as they scale.

My stack: Next.js & React on the frontend, React Native & Expo for mobile apps, Flutter for cross-platform clients, Node.js, .NET, and FastAPI on the backend, Unity (C#) for games, Web3 wallets & multi-chain APIs, and PostgreSQL + MongoDB persistence with Prisma, Mongoose, and Entity Framework Core. I model domains for real products — insurance, telemedicine, chat, gaming, DeFi, event platforms, RBAC systems, bookings — not generic CRUD demos.


Experience

Software Engineer · Top Insurance Company in Nigeria

Digital Insurance Platform — full-stack insurance operations for life and non-life products.

  • Built and extended a modular monolith ASP.NET Core Web API covering product catalog, quoting, policy lifecycle, payments, claims, and partner onboarding
  • Modeled insurance domain data in PostgreSQL with EF Core — products, cover types, term rates, quote insured/beneficiary flows, and versioned migrations
  • Integrated TurnKey GIS/LMS for policy issuance and Paystack for payment checkout across life and non-life journeys
  • Implemented product availability controls and service-layer filtering to expose selected life products online while keeping the full catalog manageable
  • Worked across auth (JWT/Identity), Redis caching, Hangfire jobs, Azure Blob storage, and certificate generation for motor policies

ASP.NET Core 8 · Entity Framework Core · PostgreSQL · Redis · Paystack · TurnKey · Azure · Hangfire


Backend Engineer · MongoDB APIs

Node/Express backends backed by MongoDB + Mongoose for auth, content, chat, and gaming workflows.

  • Built Abino_backend — JWT auth, user registration, and blog CMS APIs with Mongoose schemas and protected routes
  • Extended Chat_App — MERN real-time chat with MongoDB document models for users, groups, and messages, plus Socket.IO and Redux on the client
  • Built bet_server — TypeScript/Express API with Mongoose models, Socket.IO, background workers, and wallet/payment integrations for a betting platform

Node.js · Express · MongoDB · Mongoose · Socket.IO · JWT · TypeScript


Game Developer · Unity

Unity (C#) gameplay and systems for mobile-friendly word and action games, with backend APIs where needed.

  • Built ScrableX — battle-style Scrabble with board generation, zone effects, perks, combo chains, dictionary validation, turn/score managers, and responsive UI
  • Developed ArrowMen_Unity — Unity game project with core gameplay, scene, and asset pipeline setup
  • Connected game/product flows to MongoDB-backed APIs for auth, messaging, and real-time updates

Unity · C# · TextMesh Pro · Mobile UI · Game Systems · REST APIs


Mobile Application Builder

Cross-platform mobile apps with React Native, Expo, Flutter, and Unity for production user experiences.

  • Built Bet_App — Expo Router mobile app with native navigation, splash screens, and platform-ready UI for a betting product
  • Developed airbnb-clone-react-native — React Native marketplace app with Clerk auth, maps, clustering, bottom sheets, and Reanimated transitions
  • Contributed to DigiDokita — Flutter patient/doctor mobile apps connected to telemedicine APIs and clinical data flows
  • Shipped ScrableX and ArrowMen_Unity — mobile-friendly Unity games with responsive layouts and touch-first gameplay

React Native · Expo · Flutter · Unity · Mobile UI · Clerk · Maps


Web3 Developer

Wallet-connected apps and blockchain-backed backends across Ethereum, Solana, Tron, and Cosmos ecosystems.

  • Built Add-Token — MetaMask dapp for suggesting/importing ERC-20 tokens with wallet provider detection
  • Extended bet_server — multi-chain backend using Ethers.js, Web3.js, Solana, TronWeb, and CosmJS for wallet flows, auth, and real-time betting events
  • Built chaincart_v2 — Web3 commerce frontend with Abstraxion wallet integration, on-chain UX, and TanStack Query state
  • Backed chain commerce with chain_api_v1 — TypeScript/Express API with MongoDB models for users, products, and marketplace workflows

Web3 · MetaMask · Ethers.js · Solana · Tron · CosmJS · WalletConnect · DeFi


Data Modeling — What I Do

This is the core of how I work. Every project below starts with a schema that reflects the business domain.

Modeling focus How I apply it
Entity–relationship design Users, roles, appointments, events, bookings — modeled with correct cardinality and foreign keys
Document modeling (MongoDB) Users, chats, blogs, bets, and wallet data — flexible schemas with Mongoose validation and indexed lookups
Web3 & on-chain product flows Wallet auth, token imports, multi-chain payments, and marketplace APIs across EVM and non-EVM chains
Multi-schema PostgreSQL Separate schemas (public, medical, user_management) for domain isolation in healthcare systems
RBAC & multi-tenant identity App-scoped roles with composite unique constraints (userId + roleId + app)
Enum-driven domains RoleName, App, UserType, appointment status — enforced at the database layer
Migration discipline SQLite → PostgreSQL upgrades, pooled vs direct URLs, versioned Prisma migrations
Validation at the boundary Zod + DTOs aligned with Prisma models so bad data never hits the DB
Seed & fixture strategy Reproducible dev/staging data for roles, festivals, admin users, and test patients

Example — Multi-app RBAC model

enum App { YORUBA_CALENDAR  TAX_FLOW  CLEANING_SERVICE  TICKETING }
enum RoleName { USER  CREATOR  ADMIN  SUPERADMIN  CALENDAR_MANAGER }

model UserRole {
  userId String
  roleId String
  app    App
  @@unique([userId, roleId, app])  // one role per app context
}

Example — Healthcare domain (multi-schema)

datasource db {
  provider = "postgresql"
  schemas  = ["medical", "public", "user_management"]
}

model HospitalUser {
  role      String   // STI pattern: Doctor | Patient | LabOfficer
  email     String   @unique
  appointmentsReceived  Appointment[] @relation("recipient")
  appointmentsRequested Appointment[] @relation("requester")
  messagesSent          Message[]
  @@schema("public")
}

Modeling patterns I use regularly

  • Single-table inheritance (STI)HospitalUser.role for doctor/patient/lab officer variants
  • Soft status fieldsstatus, account_status, verification_status with audit timestamps
  • Junction tablesUserRole, ticket assignments, festival–Orisa links
  • Audit columnscreatedAt, updatedAt, created_by, last_modified_by
  • Indexed lookups — email, userId, and foreign keys indexed for query performance

Architecture & Diagramming

I document every data model and system design before writing code — using tools that render directly on GitHub.

Tool What I use it for
draw.io ER diagrams, C4 architecture, deployment & data flow diagrams
Mermaid ER/sequence/flow charts embedded in GitHub READMEs (no export needed)
dbdiagram.io (DBML) Shareable database schema docs with export to PNG
PlantUML Sequence diagrams & component diagrams
Prisma Studio / ERD Live schema inspection & auto-generated entity graphs

Sample diagram repo — host on GitHub

data-architecture-diagrams — sample project with .drawio, Mermaid, DBML, and PlantUML files for Platform API, Video Call API, Yoruba Calendar, and PCSS.

erDiagram
    User ||--o{ UserRole : has
    Role ||--o{ UserRole : assigned
    User ||--o{ UserAppProfile : owns
    User {
        string id PK
        string email UK
        enum app
    }
Loading

Open .drawio files in diagrams.net → export SVG → embed in any README.


Featured Projects

Portfolio repo of ER diagrams, system architecture, and data flows — draw.io, Mermaid, DBML, PlantUML — mapped to real projects.

Includes: Platform API RBAC · Video Call telemedicine · Yoruba Calendar · PCSS content model

draw.io · Mermaid · DBML · PlantUML · GitHub-hosted


Real-time telemedicine backend — video sessions, live chat, appointment scheduling, and notifications for doctors and patients.

Data modeling: Multi-schema PostgreSQL (medical, public, user_management), STI user hierarchy, appointment/message relations, activity logs.

Node.js · TypeScript · PostgreSQL · Prisma · Socket.io · Redis · RabbitMQ · WebRTC · JWT


Shared backend powering multiple products with unified identity and app-scoped authorization.

Data modeling: Central User + Role + UserRole with App enum; per-app profiles via UserAppProfile; festival/Orisa/ticket domain entities.

Node.js · TypeScript · PostgreSQL · Prisma · Clean Architecture


Community platform for Yoruba festivals, Orisa references, event ticketing, and cultural content management.

Data modeling: Orisa → Festival relations, role-based event publishing, order/ticket entities, OAuth-linked user accounts.

Next.js 16 · PostgreSQL · Prisma 7 · NextAuth · Paystack


Full-stack nonprofit site with inquiries, events, gallery, testimonials, and admin CMS.

Data modeling: Normalized content models (Event, Inquiry, GalleryItem, Testimonial, SiteSettings) with status workflows.

Next.js 16 · PostgreSQL · Prisma · TanStack Query · Docker


Broader telemedicine work — patient–doctor mobile apps, AI-assisted nursing, and clinical data flows.

Data modeling: Patient health records, test results, triage data, notification preferences per user type.

FastAPI · Flutter · Prisma · scikit-learn · PostgreSQL


.NET API for bookings, subscriptions, cleaner assignment, and service lifecycle management.

Data modeling: EF Core entities for Customer/Cleaner/Admin roles, booking state machine, subscription plans.

ASP.NET Core 8 · Entity Framework Core · PostgreSQL · JWT


Express backend for authentication, user management, and blog content.

Data modeling: Mongoose schemas for users and blog posts with JWT-protected routes and refresh flows.

Node.js · Express · MongoDB · Mongoose · JWT


Real-time chat platform with group messaging, notifications, and auth.

Data modeling: MongoDB collections for users, chats, and group membership with Socket.IO event streams.

Node.js · MongoDB · Mongoose · Socket.IO · React · Redux


TypeScript backend for a betting platform with wallets, workers, and real-time updates.

Data modeling: Mongoose document models for users, bets, and transactions with queue-driven processing.

TypeScript · Express · MongoDB · Mongoose · Socket.IO · Bull


ScrableX — Unity Battle Scrabble

Mobile-friendly Unity word-battle game with zone-based mechanics and advanced board modes.

Game systems: Board generation, tile placement, dictionary validation, perks, traps, freeze effects, and match flow.

Unity · C# · TextMesh Pro · Mobile UI


Unity game project with gameplay assets, scenes, and project configuration.

Unity · C#


Cross-platform mobile app for a betting product with Expo Router and native-ready navigation.

React Native · Expo · TypeScript


Mobile marketplace clone with Clerk auth, map clustering, bottom sheets, and animated UI.

React Native · Expo · Clerk · Reanimated · Maps


MetaMask dapp for suggesting and importing custom ERC-20 tokens into compatible wallets.

React · MetaMask · Web3 · Etherscan


On-chain commerce frontend with wallet connection, product flows, and modern React UI.

Next.js · Abstraxion · Web3 · TanStack Query · Zustand


TypeScript API backing chain-commerce flows with MongoDB models and JWT auth.

TypeScript · Express · MongoDB · Mongoose · Zod


What I Bring to a Team

Software Engineering Data Architecture & Modeling
Full-stack apps with Next.js, React, TypeScript Relational schema design (PostgreSQL, Prisma, EF Core)
React Native, Expo, and Flutter mobile apps Document modeling with MongoDB & Mongoose
Unity game systems, mobile UI, and C# gameplay logic Multi-schema layouts & domain-driven table design
Web3 dapps, wallet flows, and multi-chain backends RBAC models, STI patterns, composite constraints
REST APIs, real-time (Socket.io), admin dashboards Web3 commerce and wallet-integrated product design
Dockerized deployments & CI-ready workflows Migration governance, seed strategies, Zod validation
Healthcare, insurance, gaming, DeFi & marketplace experience SQLite → Postgres upgrade paths & connection pooling
Architecture docs with draw.io, Mermaid, DBML ER diagrams, sequence flows, schema docs on GitHub

Tech Stack

Languages TypeScript JavaScript C# Python SQL

Frontend Next.js React Tailwind CSS Flutter React Native Expo Unity

Backend, Data & Web3 Node.js .NET FastAPI PostgreSQL MongoDB Web3.js Ethereum Solana Prisma Redis Docker

Architecture & Diagramming draw.io Mermaid PlantUML DBML


GitHub Activity

GitHub Stats Top Languages


Currently Learning & Exploring

  • PostgreSQL indexing, query plans, and performance tuning
  • Event-driven architecture for multi-tenant data platforms
  • ML feature pipelines integrated with clinical data models

Let's Connect

Open to Software Engineer, Mobile Application Builder, Web3 Developer, Data Architect, and Full-Stack Developer roles — especially where schema design, API platforms, mobile apps, or blockchain products matter.

GitHub Portfolio LinkedIn Twitter Medium


"Good software starts with good data models."

Pinned Loading

  1. food food Public

    CSS 1

  2. folly-email folly-email Public

    JavaScript 1

  3. Learning_Design_Patern_C- Learning_Design_Patern_C- Public

    C# 1

  4. flutter_beginner flutter_beginner Public

    C++ 1

  5. Image_Saver Image_Saver Public

    C# 1

  6. practical-aspnetcore practical-aspnetcore Public

    Forked from dodyg/practical-aspnetcore

    Practical samples of ASP.NET Core 10 Preview 5, 9, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.

    C# 1