Hi guys! My latest eBook, entitled “Away From Home: Two Stories”, features two original short stories that are about love, including filial love, death and closure. The main characters in both the stories find love away from home. The stories might tug at the reader’s heartstrings, but they are really intended to convey that ordinary … Continue reading Away From Home – eBook
My Recent Paperback Of Short Stories
I recently published a paperback, entitled “Thereepooty And Other Stories” on Amazon. It is an anthology of seventeen short stories of different genres and moods. The different characters in these stories find themselves in different situations. The different genres you will find in this book are science fiction, love and romance, horror, supernatural, humor, animal … Continue reading My Recent Paperback Of Short Stories
Four Ways To Detect Browser Adblockers Using Javascript
Image credit: getadblock.com Hi guys! In this post, I will discuss four ways to detect adblockers in browsers using Javascript with jQuery framework. I shall stick to adblocking browser extensions only. This application of code enables you to notify the user of your site whether an adblocking extension is active in the user’s browser or … Continue reading Four Ways To Detect Browser Adblockers Using Javascript
How to generate combinations from a set of characters
In this post, I shall share a code sample in Java that generates string combinations of characters from a given set of characters over a specified range of lengths of such string combinations. I hope I am not boring you all with this topic,since it’s my third such code sample to this effect. The other … Continue reading How to generate combinations from a set of characters
Sample Code Generating String Combinations of Characters
In my post here, I shared an algorithm to generate all possible combinations of a given set of characters for a specified range of lengths. In this post, I shall share a code sample written in Java that implements the algorithm shared before. It does not use any goto keyword and hence does not create … Continue reading Sample Code Generating String Combinations of Characters
Algorithm Generating String Combinations of Characters
In this post, I shall reveal another algorithm to generate all possible combinations of a given set of characters,of any predetermined range of lengths. For example, if we take a,b,c as possible characters in our combinations, and 1 to 3 as the range of lengths, then we have the following output: a b c aa ab … Continue reading Algorithm Generating String Combinations of Characters
Can mankind bet its future on long distance space travel?
Long distance space travel is the stuff of science fiction. Cosmonauts strap themselves into cryogenic hyper-sleep pods while androids with artificial intelligence pilot the ship to exoplanets several light years away. The cosmonauts remain in suspended animation until they reach a predetermined point on their route. The exoplanets themselves have been found to be habitable … Continue reading Can mankind bet its future on long distance space travel?
News on Eazy Ad Unblocker
Hello everyone! A few months ago, I had launched a wordpress plugin called “Eazy Ad Unblocker”. You can read about it from https://myplugins.net/announcing-eazy-ad-unblocker/. You can download it from https://wordpress.org/plugins/eazy-ad-unblocker/. You can preview it at https://myplugins.net/demo/ Don’t forget to keep your adblocker on while browsing the preview URL. The plugin notifies a user of a wordpress … Continue reading News on Eazy Ad Unblocker
Sample Code for Algorithm to Create Combinations of Characters
In my post here, I described an algorithm to create all possible combinations from a set of characters. However, it allows repetitions of characters in the generated combinations. e.g aas, aaa and so on. In this post, I will demonstrate an implementation of this algorithm in PHP, without any parallelization of any kind. I don’t … Continue reading Sample Code for Algorithm to Create Combinations of Characters
Algorithm to create all combinations from a set of characters
In this post, I shall reveal an algorithm that generates all possible combinations of a given set of characters of a specified range of lengths. The algorithm is as follows: 1. take dict as a character array of possible characters in your string combinations take currLen as integer, startLen as integer, stopLen as integer, chars … Continue reading Algorithm to create all combinations from a set of characters