An LMS with teacher, student and management roles: groups, assignments, test taking and results. The centrepiece is analytics: a single SQL query over answers and timestamps yields share correct and average time per question, the distractor that pulls the most students, score distribution and a per-group cut — so a teacher sees which question is badly worded, not just who scored what. Comes up with a single Docker command.
A booking bot for service businesses that runs the schedule itself: the client picks a service and a free slot right in the chat, slots are computed from the service duration, and a partial unique index makes a double booking impossible even under a race. It reminds clients a day and two hours ahead, and the owner gets an admin panel with the schedule, 30-day revenue and conversion. 109 tests, none needing a network or a live token.
lendvis.ru/python-faq-bot/
A shared board where several people draw and type on one canvas at once — strokes and text reach the whole room instantly over WebSocket, with no reloads or lag. Every stroke carries its own id, so participants never overwrite each other even while drawing in the same spot. Opens from a link, nothing to install.
A mobile hotel-booking app with its own “ticket” identity — paper, stamp, perforation: recognisable from the first screen, not assembled from a template. Search and filters, hotel cards with photos and price, trip checkout, history and a profile. A multi-module Jetpack Compose architecture (app / ui-kit / network) so the project grows and is maintained without rewrites. The demo runs on prepared data.
An HR app in a “personnel file” look: vacancies, candidate cards, a profile and a chat assistant that answers with a language model on the device itself (MediaPipe + Qwen). The key advantage is that the model runs offline, so résumés and candidate chats physically never leave the phone — for HR that is a data-protection requirement, not a convenience. A multi-module Jetpack Compose project, built to scale under real load.
An atelier app with a fully bespoke “tailor’s table” world — cloth, chalk, gold thread, a measuring tape: every fabric in the catalogue is drawn on Canvas rather than photographed, so the interface looks richer than stock and weighs less. Orders with tailoring stages, a cart, a profile. A multi-module Jetpack Compose project — an example of giving a mobile app a recognisable brand, not just screens.
An arena app in a “scoreboard” look — asphalt, lime, amber, a live LIVE badge. Rooms with a prize pool, a leaderboard, statistics and a profile — and the reaction game itself is genuinely playable right in the app: wait for the green circle and tap, three tries, best one counts. Not a mock-up or a set of screens, but a working product with a real game loop. A multi-module Jetpack Compose project.
A cloud smart-home backend that plugs into Yandex Alice: OAuth over Yandex’s protocol, a WebSocket down to the devices, telemetry and a web control panel. The same interface runs on demo data or a live server — switched with a token, with channel latency shown in the status bar. It shows we do more than draw screens: we hold persistent connections and integrate with a third-party ecosystem.
An overview of the studio’s blockchain work across four networks at once — TON, Ethereum, Waves Enterprise, Hyperledger Fabric: where a contract bug cannot be rolled back, so we write slowly and cover the logic with tests. Some work is under NDA, some is open with code and tests — a supply-chain chaincode for Fabric and a document registry on Waves Enterprise with SHA-256 integrity checks. A field most contractors will not even take on.
lendvis.ru/blockchain-practice/
A live teardown of four classic React mistakes that trip up inherited code: state lost on rapid clicks, a mutated array, index as a key, a leaking timer. Each one shows the symptom, the cause and the fix side by side, “before” and “after” in one demo. It is a showcase of our support service: we enter an unfamiliar project, find the root cause instead of muting the symptom, and leave code that does not fall apart later.