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]
Installing the latest GPS software for iPhone with latest maps can be very tricky, especially if you do not know where to search or how to do it. I have spend quite some time trying to figure out what the best way is but most of the times, either the GPS software was old, or…
Build a proxy server in C using threads and sockets. Every server can have up to two connections on the proxy. Client requests must be satisfied. New servers must be added to a list/array upon a request and must be removed if no request comes within 10 seconds. [Source]
Have you ever needed to lock your personal folder so that no one can access is unless they know the secret password? I have personally searched for such applications many times but all solutions seem to be complex such creating partitions with encryption and so on. Finally I had some free time and decided to create my…
This article explains how to install Windows 10 on an old MacBook running El Capitan. Apple made sure to make our lives difficult but installation is still doable. 1 Download the Windows 10 .iso file from your preferred location (MSDN, torrentz etc) and place the .iso file on the desktop. 2 Insert a…
I have seen many posts out there with people facing the same issue as I did. The problem was appearing when the websites hosted on my Synology DS215j were having medium to heavy load. WebStation or most likely PHP was causing time-outs and the only way I could resolve this was to restart WebStation service….
This post explains how to add any program to start a service/daemon on linux (as long as the program supports this). It was created while attempting to start TeamViewer as a daemon while my home server was booting up. To start any program as a daemon, a link to the daemon script should be placed…