Fake boost your github profile page visit counts
Run this code to fake boost the visitor counter numbers displaying on github profile pages Specifically for popular github profile visit counter:
- github-profile-views-counter
- hit-counter
- Almost anything that integrated with camo that look similar as above
Notes: the code can take a while to finish if the number of increments of views is very large (above 1000)
There are different types of page visits:
- Unique visitors
- Repeat visitors
- Page visitors
- Page views per user
- etc...
Page visitors is used in the counters listed above. This works because it only checks if certain page is visited, and the visitor can be from the same user.
However, Unique visitors, for example, will check the if the visitor is unique by looking at IP address or other forms of identification so that the number of views from the same user is not counted repeatedly. This is used in most websites, such as personal blogs and company websites where page views are representative for popularity and critical for marketing.
Therefore, this program only works on any view counters with Page visitors.
The logic of the code is very simple: since for Page visitors, the counter increases whenever a webpage is visited and a HTTP request is sent.
So to "visit" this counter, we can fake a HTTP request and use python's requests
package to send requests with corresponding url.
Join this discussion on this repo if you are interested to share thoughts with others!
Should we use this?
A billion fake profile views doesn't make you a very popular person, it makes you a person with a billion number in the counter.
This is meant to be a learning opportunity/little trick.
What it boosts is only a number, one's ego, but NOT one's ability or capability.
*Plus, this doesn't work for most other authoritative website. Learn how this actually works in How this works section below
- Clone this repository
- Copy the link of the page after clicking on the displaying counter
- Run the python script
count-booster.py
- Follow the instruction once the code is executed