Skip to main content

Posts

Showing posts from April, 2020

How to get premium productivity tools for free 😯

Want to get a custom domain name, MongoDB tools, canva.com, unity, and many more for free. When I was just learning web development earlier when I was in college I always wanted to host it somewhere and get a domain name but I was not ready to pay for that as I just wanted to see my static webpages on the web was my only intention, back then I used 000webhosting to host my projects but they had weird and lengthy domain names which became hard for me to share it with my faculty or colleges. So then my quest began to look for free offerings on the internet. To my luck I found GitHub providing several free tools for students which are extremely useful, So I would like to share how anyone can get this benefit from GitHub and use those powerful and useful tools. Let's get started. Head to GitHub Student Developer Pack make sure you already have a GITHUB account or create one by clicking on the link provided. Then choose student or faculty according to your academic status. ...

Python module download stats

I would like to show you how to add a widget to your personal website or blog to show your python package download stats Firstly make sure you have a valid package on  Python Package Index . If you never know that you can upload your own package then head over to  upload your package to the Python Package Index  and upload one. Copy your package name which ends at  https://pypi.org/project/ googleDriveFileDownloader PACKAGE_NAME : googleDriveFileDownloader and replace it in the below URL https://img.shields.io/pypi/dm/ PACKAGE_NAME?color=green You can now go to the link and it would show you the download count on of the package(As shown below). Download stats — Python Package You even have the flexibility to change the color of the count by simply adding a  color  attribute to the link and embed it where ever you want to as an image. Example embed code : <a href=" https://pypi.org/project/ PACKAGE_NAME / " alt="PACKAGE_NAM...