Development Logs

Meticulously engineered applications focusing on shared business logic, mathematical rendering accuracy, and strict security architecture boundaries.

01 / Flagship Multiplatform Architecture

school

MaturiMate Ecosystem

Kotlin Multiplatform • Active Production Stage

KMP Core Jetpack Compose

A highly optimized multiplatform application designed to digitize and scale the high school graduation preparation engine. Shared core business logic drives both Android and target platform layouts without performance penalties.

The backend interface features asynchronous JSON5 parsing coupled with KaTeX mathematical rendering, allowing complex algebraic matrices and test modules to render fluidly down to individual viewport fragments.

Built strictly with an MVI / MVVM state flow container, state mutation is fully decoupled from the UI layer, guaranteeing zero-state leaking during high-concurrency local database testing.

Type-Safe SQLDelight Local Verification Driver
// Native cross-platform database interaction driver
class LocalExamQueries(
    private val database: ExamDatabase
) {
    fun getVerifiedQuestions(subjectId: String): Flow<List<QuestionEntity>> {
        return database.examQueries
            .selectActiveQuestionsBySubject(subjectId)
            .asFlow()
            .mapToList(Dispatchers.Default)
    }
}

02 / Enterprise Rules & Security Frameworks

layers

Employee & Security Auditor System

Java

Academic project executing a flawless full score allocation model. Implements Clean Architecture patterns by separating pure business rules from infrastructure boundaries. Features an independent access control validation layer that actively monitors and signs state update sequences without dependency leaks.

shield

Secure Communication Tool

Python

Led a 4-member software engineering engineering division. Responsible for direct architectural design, encrypted network layer packet tracking, and low-level end-to-end encryption (E2EE) secure handshake protocol deployments.