Mini-Projects

Receipt Printing for Cafés

A project for automating receipt printing for orders from various delivery services: Yandex.Delivery, EK DELIVERY, Delivery Club, and the café’s own website.

Main challenges:

  1. Understanding printer control with limited documentation.
  2. Exploring delivery service APIs without official documentation.
  3. Unifying diverse APIs into a single structure.

Tools & Technologies: DevTools, REST API, encodings, Python, escpos, wxPython, unittest

Patient Registry

A web application for registering ophthalmologists and maintaining a database of patients undergoing surgical treatment.

Tools & Technologies: Bootstrap, CSS, Python, FastAPI, Jinja

c2dll Library

from c2dll import dllfunc, as_ptr
import numpy as np

def my_func(eps, n):
    d = dllfunc('''
        DLL_API void f(double* params, int n, double* out) {
            for (int i=0; i<n; i++) {
                out[i] = ... // some heavy calculations
            }
        }''')
    n = int(n)
    results = np.zeros(shape=(n))
    d.f(as_ptr([eps,]), n, as_ptr(results))
    return results

print(my_func(0.1, 1000))

A library for simplified integration of small C code fragments into Python projects.
PyPI Page
Download Statistics
GitHub Repository

Tools & Technologies: Python, ctypes, PyPI, MSVC Build Tools

Marker Plugin

Over 2000 downloads

A plugin for IntelliJ IDEA (and other IDEs based on it) that allows highlighting text in different colors.
JetBrains Marketplace Page

Tools & Technologies: Java, IntelliJ Platform Plugin SDK

Equipment Settings Check

An organization faced a recurring issue: several dozen devices would randomly switch to an incorrect radio frequency. A script was developed to regularly check their settings and automatically restore the correct parameters when necessary.

Tools & Technologies: Python, Flask, SQLite