← Stack

Python

The language that handles everything I don't want to do in C.

SINCE
2022
PROFICIENCY
90%

Python is my primary AI/ML language. GelbIT uses it for the Gemma fine-tuning pipeline, Selenium scraping of municipal rules, and the Ollama inference layer. I also wrote a Python interpreter in vanilla JavaScript for Vira OS — which means I've implemented Python from scratch, in its less-loved cousin.

I USE IT FOR
  • AI/ML pipelines and model fine-tuning
  • Web scraping with Selenium and BeautifulSoup
  • Automation scripts that would be painful in JS
  • Rapid prototyping of algorithms
CODE SAMPLE
def binary_search(arr: list, target: int) -> int:
    lo, hi = 0, len(arr) - 1
    while lo <= hi:
        mid = (lo + hi) // 2
        if arr[mid] == target:
            return mid
        elif arr[mid] < target:
            lo = mid + 1
        else:
            hi = mid - 1
    return -1