Peg Solitaire
A program that solves the peg solitaire game finding the best possible solution. It is written in C. Input files and source code are found in the attachment. [Source]
A Chosen Ciphertext Attack on RSA Optimal Asymmetric Encryption Padding (OAEP) as Standardized in PKCS #1 v2.0. [Source] Implementation was removed after request from University of Bristol.
Implementation of a text version of World of Zuul adventure game using Java. The implementation follows the Object Oriented Programming principles. [Source]
This is a short article describing how to install an SSL Let’s Encrypt certificate on Ubiquiti Unifi Controller that is installed on Synology using Docker. The article assumes that Docker and Unifi Controller are already installed on your Synology NAS and that the Let’s Encrypt certificate is already added in Synology’s Control Panel. Also that…
A couple of years ago trying to get a grasp of java interfaces I created this simple java calculator. I just remembered this now so I am posting it. It works very nicely for regular numbers. Rounding may not be accurate though. Give it a try! [jar and Source]
This article explains how to make Windows BootCamp scrolling as similar to Mac OS X! 1 Reverse scrolling There is a registry setting named FlipFlopWheel that does exactly this and can be found after typing regedit in Run and pressing enter which will launch Registry Editor. Then search for keyword FlipFlopWheel. HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\HID\VID_???\VID_???\Device Parameters. The search…
The aim of this project was to use C posix threads. This is something like the dining philosophers problem but a bit more advanced. A student must find two free markers to mark him and then release them after finishing. More details and souce are found in the attachment. [Source]