Skip to content
View TruckerWEST's full-sized avatar
😸
First readme behind me!
😸
First readme behind me!
  • Joined May 16, 2026

Block or report TruckerWEST

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
truckerwest/README.md

Hey, -Unthrottling WEST

I’m a freelance developer specializing in high-performance Minecraft server architecture, custom scripting, and backend optimization. The name means what it says: zero bottlenecks, maximum throughput, and scripts that don't choke under load. Whether it's complex game mechanics in Kotlin or rapid, lightweight automation via JavaScript, I build robust systems designed to handle thousands of players without dropping a single tick.


Core Stack

Kotlin
Kotlin
JavaScript
JavaScript

Code Snippet: Event-Driven Optimization

Here is a quick look at how I handle thread-safe, high-frequency events in Kotlin (Paper/Purpur API) to prevent main-thread stutter:

package com.unthrottlingwest.performance

import org.bukkit.event.EventHandler
import org.bukkit.event.Listener
import org.bukkit.event.player.PlayerMoveEvent
import io.papermc.paper.threadedregions.scheduler.AsyncScheduler

class MoveThrottle(private val scheduler: AsyncScheduler) : Listener {
    @EventHandler
    fun onPlayerMove(event: PlayerMoveEvent) {
        if (!event.hasChangedBlock()) return
        // Offloading heavy calculations away from the main tick loop immediately
        scheduler.runNow(plugin) { _ -> 
            processCustomChunkMechanics(event.player, event.to)
        }
    }
}

Freelance Services & What I Do

Custom Game Modes & Mechanics:

  • Turning complex design documents into lag-free features.
  • Implementing non-blocking Redis/MongoDB synchronization for proxy networks.
  • API - Connecting in-game economies and events securely with Discord, web dashboards, or external APIs.

Let's Talk Speed

Got a project that needs to scale, or a plugin that is currently tanking your TPS? Let’s unthrottle it.

Discord: unthrottling_west Business: contact@unthrottlingwest.dev

Pinned Loading

  1. 2026 2026 Public

    Forked from iclr-blogposts/2026

    ICLR Blogpost track 2026

    HTML 1

  2. Summer2026-Internships Summer2026-Internships Public

    Forked from SimplifyJobs/Summer2026-Internships

    Collection of Summer 2026 tech internships!

    Python 1

  3. truckerwest truckerwest Public

    1

  4. HuckleR2003/PC_Workman_HCK HuckleR2003/PC_Workman_HCK Public

    Real-time system monitor that explains WHY your PC is slow, not just that it's slow. Built over 800 hours on a 94°C laptop. Open source, MIT licensed. HCK_Labs - Marcin Firmuga

    Python 54 8