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 := [
'Delph',
'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();
>> openProjectInGithub();
end.