leepush:$|
Explore my projects:
- Gif Messenger
- File Splitter
- Target Date Coordinator
- NMK TiVi
- TicTacToe AI
My name is Bine Lipuš and I am 2nd year computer science student at University of Ljubljana, Faculty of Computer and Information Science
Some of the languages that I am fluent in include Java and C#, but I am also interested in C, C++ and Python.
You can contact me at the email below
Gif Messenger is an online messaging application that enables you and your friends to communicate through use of GIFs supplied by TENOR's GIF API. This service is currently unavailable.
I made a program that can split files into smaller ones, and than later on merge split files back, therefore they are converted back to their original state. This is done on a byte level, so no data is lost. I have tried it with all kinds of files, and all worked, even executables. It can be very useful, if you are uploading or downloading large files, as in case of a failed transmission, you need to transmit again only one portion of a file rather than the whole one. And the second use case would be if you want to store large files on the filesystem, which is limited by file size as FAT32, which allows files of a maximum size 4GB. The program was made for Windows using C# and .NET Framework 4.7.2 in Visual Studio and it can split the main file into a user-defined number of files or files of user-defined size. With that, it also generates an FSNFO (File Splitter Info) file, which is then selected as a file to merge. In it are saved the number of files that must be merged and file extension, so the program knows how to properly merge created files into the main one. You can try it out by downloading it below. The pictures below represent their simple user experience, ease of use, and output files.
Download File SplitterTarget Date Coordinator is a web application that helps you find the target date that suites all applicants for some event. In the form of the app, you only need to specify the main time period of the event to take place and its length in days. After that, you will need to specify all dates that are not suitable for each applicant individually. The program will try to find all suitable target dates for the event to take place.
Using Python I made TicTacToeAI Server that works over HTTP as an API and TicTacToe client script, which lets you play against AI, that runs on the server. You can connect to it by using domain "server.leepush.eu" and default port "2607" or you can download it and run it on your computer. If you want to change the port on which the AI server runs, you will need to change it in the code of TicTacToeAI.py.
Download TicTacToe AI