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

Announcing EZee Copyright Protector

Hello again guys! I wish to announce that I have released a new WordPress Plugin called ‘EZee Copyright Protector’.  You can find this plugin at the URL https://wordpress.org/plugins/ezee-cpyright-protector/. What does the plugin do? Suppose you have a wordpress website where you have created original content painstakingly and published it. Ordinarily, there is nothing to prevent … Continue reading Announcing EZee Copyright Protector

Social Media: Benefits and Dangers

A fairly large proportion of the global population owns computers. The internet has brought different people together, cutting across boundaries of age, race, gender, profession, social and political preferences. People can now access diverse content whether for work or entertainment, from any computing device capable of connecting to the internet. They can send email, visit … Continue reading Social Media: Benefits and Dangers

Announcing Eazy Ad Unblocker!

Hello everyone, I wish to announce that I have released a wordpress plugin named “Eazy Ad Unblocker”. You can find this plugin at the following URL: https://wordpress.org/plugins/eazy-ad-unblocker/ Now, to tell you what this plugin does. Suppose you own a wordpress site and have painstakingly put advertisements on it. Now many of your visitors don’t even … Continue reading Announcing Eazy Ad Unblocker!

Why Digital Marketing Is Important For Your Business

In the digital age, it does not make good business sense for your business not to have a digital presence. This is because you will not be able to reach out to the audiences of digital platforms who are your potential customers. Using social media and search engines is now commonplace. You need to market … Continue reading Why Digital Marketing Is Important For Your Business

A Simple IP Blocker Plugin for WordPress

In my post here, I had shown how to create a basic “Hello World” plugin that greets the user with a simple “hello world” message in the admin dashboard. Now, let me show you how to create a wordpress plugin that actually does something more useful. In this post, I shall discuss a plugin that … Continue reading A Simple IP Blocker Plugin for WordPress

Create a Basic WordPress Plugin From Scratch

In my post here, I had shown you how to create a plugin from existing code. In this post, I will show how to create a basic ‘Hello World’ wordpress plugin from scratch. First of all, create a ‘hello-world’ folder in your plugins subfolder under the wp-content folder of your wordpress installation. Then, create a … Continue reading Create a Basic WordPress Plugin From Scratch

GUI Tic-Tac-Toe in Java Revisited

In my post found here I discussed a tic-tac-toe game coded in Java which was a version using a Graphical User Interface. The code listing for the classes and interfaces can be found in the same post. In this post I will discuss a Graphical User Interface (GUI) version of the same application with some … Continue reading GUI Tic-Tac-Toe in Java Revisited