General Linux Scripts
auto_restart.sh:
After a specified local-time, this script continuously restarts the machine after a specific time interval.
move2Trash.sh:
This script will alias 'rm' in such a way that when a file/folder is deleted from command line, it will be moved into Trash.
random_seq_gen.cpp:
A Linear congruential generator. This code will generate a random sequence for a given "seed" and "length", after skipping "skip_cnt" elements.This can be used to genarate passwords, key-files and so on. All that user have to remember are "seed", "skip_cnt" and "length".