Blog of Chamodh

Display web traffic by location with an Earth on your website | Without coding in 3 minutes

October 24, 2020

 Add a world map that shows your visitors' countries without coding in 3 minutes.Do you want to show your web traffic by location on your website? and you don't have time or knowledge to code. Then this article is born for you!!! Just follow the fou…

Read full article →

Updated version of mass telephone number generator. | Short and sweet code.

October 21, 2020

 https://blogofchamodh.blogspot.com/2020/10/generate-all-possible-phone-numbers.htmlHere was the first version of the python script that generates crores of telephone numbers. But that script is complex and here is a simple version of the script.Changes …

Read full article →

Generate all possible phone numbers with Python | Generates Crores of Phone Numbers within minutes.

October 20, 2020

Recently,  I learned about itertools in python. Especially, about the functions permutations, combinations, and products and I tried to make a script that generates all phone numbers in our country. I bet your phone number is too on the list.let the hack…

Read full article →

Single Line White-space remover with Python | Remove all white-spaces of a string with a single line of Python

October 18, 2020

 What is white-space ?Simply a white-space is a character that contains a space. when you hit your space bar on your keyboard it doesn't leave it empty but it add a Character that contains a single white- space.Removing all white spaces in a  string…

Read full article →

Create a simple Digital Clock for Your website with Javascript.

October 15, 2020

You have to create a unordered list using <ul> and</ul> tags in your HTML file. And inside it include 3 <li> elements for Hours, Minutes and Seconds .ul > <li id='hours'></li> <li id = 'minutes'></li> <…

Read full article →