program MinecraftPixelPainter;
var
ProjectInfo:
TProjectRecord;
begin
ProjectInfo.Category :=
'Game Tool / Scripting';
ProjectInfo.TechStack := [
'Python',
'MCRCON Library',
'Image Processing',
'Sound Processing'];
ProjectInfo.Desc :=
'An automation tool that creates images with blocks' +
' and plays MIDI in Minecraft.';
>> OpenProjectDetails();
>> openProjectInGithub();
end.
program TAYOKSIS;
var
ProjectInfo:
TProjectRecord;
begin
ProjectInfo.Category :=
'Web Application / Automation';
ProjectInfo.TechStack := [
'Delphi',
'UniGUI',
'SQL Server'];
ProjectInfo.Desc :=
'It''s an app I developed to make it easier to keep track' +
'of the events we do with my community.';
>> OpenProjectDetails();
>> openProjectInGithub();
end.
program SwalAjaxRequest;
var
ProjectInfo:
TProjectRecord;
begin
ProjectInfo.Category :=
'Auxiliary Tool';
ProjectInfo.TechStack := [
'Delphi',
'UniGUI',
'SweetAlert',
'JavaScript'];
ProjectInfo.Desc :=
'A small application demonstrating how to integrate' +
'SweetAlert into applications built with UniGUI.';
>> OpenProjectDetails();
>> openProjectInGithub();
end.
program PolyBankWEB;
var
ProjectInfo:
TProjectRecord;
begin
ProjectInfo.Category :=
'Auxiliary Tool / Economy';
ProjectInfo.TechStack := [
'Delphi',
'UniGUI'];
ProjectInfo.Desc :=
'This is a web port of an app my classmate developed to' +
'make tracking money easier while playing Monopoly.';
>> OpenProjectDetails();
>> openProjectInGithub();
end.
program BombSniffer;
var
ProjectInfo:
TProjectRecord;
begin
ProjectInfo.Category :=
'Automation / Scripting';
ProjectInfo.TechStack := [
'Python',
'pyAutoGUI'];
ProjectInfo.Desc :=
'A Python script that attempts to solve a' +
'minesweeper on its own until it succeeds.';
>> OpenProjectDetails();
end.
program ArduinoGOL;
var
ProjectInfo:
TProjectRecord;
begin
ProjectInfo.Category :=
'Embedded Systems / Cellular Automation';
ProjectInfo.TechStack := [
'Arduino Nano',
'Conway''s Game of Life',
'Line-based buffering'];
ProjectInfo.Desc :=
'This is an algorithm implementation that balances the' +
'limited RAM capacity of the Arduino Nano with software optimizations.';
>> OpenProjectDetails();
end.
program Wissio;
var
ProjectInfo:
TProjectRecord;
begin
ProjectInfo.Category :=
'Quiz Night Application';
ProjectInfo.TechStack := [
'Delphi',
'UniGUI'];
ProjectInfo.Desc :=
'This is a web application I developed for' +
'our "Quiz Night" events with my community.';
>> OpenProjectDetails();
>> openProjectInGithub();
end.
program Lexio;
var
ProjectInfo:
TProjectRecord;
begin
ProjectInfo.Category :=
'Kelime Oyunu';
ProjectInfo.TechStack := [
'Delphi',
'UniGUI'];
ProjectInfo.Desc :=
'My own reinterpretation of the famous game show we watch on television.';
>> OpenProjectDetails();
end.
program BackInTheDay;
var
ProjectInfo:
TProjectRecord;
begin
ProjectInfo.Category :=
'Digital Media Library';
ProjectInfo.TechStack := [
'Delphi',
'UniGUI',
'REST API',
'IGDB API',
'TMDB API',
'GoogleBooks API'];
ProjectInfo.Desc :=
'B.I.T.D. (Back In The Day) is a cyberpunk-inspired digital archive' +
'that brings your games, movies, TV shows, and books together in one place.' +
'With a neon interface and a smart selection system, it lets you manage' +
'your pop culture journey effortlessly.';
>> OpenProjectDetails();
>> openProjectInGithub();
end.
program Octaily;
var
ProjectInfo:
TProjectRecord;
begin
ProjectInfo.Category :=
'Daily Puzzle Platform';
ProjectInfo.TechStack := [
'Delphi',
'UniGUI',
'REST API',
'Octaily API Service',
'MSSQL Server'];
ProjectInfo.Desc :=
'Octaily is a daily puzzle platform featuring eight different game modes,' +
'offering players a consistent and engaging mental challenge experience.';
>> OpenProjectDetails();
>> openProjectInGithub();
end.
program OctailyAPI;
var
ProjectInfo:
TProjectRecord;
begin
ProjectInfo.Category :=
'API Service';
ProjectInfo.TechStack := [
'Delphi',
'Horse'];
ProjectInfo.Desc :=
'Octaily API powers the platform by providing structured puzzle data,' +
'real-time game logic, and reliable daily content delivery.';
>> OpenProjectDetails();
>> openProjectInGithub();
end.
program Telemetria;
var
ProjectInfo:
TProjectRecord;
begin
ProjectInfo.Category :=
'Analysis Program and Race Engineering Simulator';
ProjectInfo.TechStack := [
'Delphi UniGUI',
'JavaScript',
'Telemetria API'];
ProjectInfo.Desc :=
'An application where you can analyze real Formula 1 races from 2018' +
'to the present and experience a real race engineer simulation for Assetto Corsa.';
>> OpenProjectDetails();
>> openProjectInGithub();
end.