Skip to main content

Posts

Create a docker image from your GitHub or Bitbucket repository | 2020

Are you wasting your valuable local resources and internet building your Docker images in your local machine, then its time to shift the gear towards using docker hub. With the docker hub, you can create a docker image just by using your GitHub or Bitbucket repositories as most of the projects are on them. So check out the video below to understand how that can be done. Feel free to post any queries comments below 😎.

How to easily promote your android app.

Have a lot of apps on google play store and want to share them on your website or promote to gain more audience here is a way you can do that simply. Ever wondered whats the best way to get yourself a link that shows "get it on google play" for your application? This is what you would normally get when you want an image to be displayed on your website or where when you want to embed it.This would be much tougher for you so here is an easy way to get this done quicker and safer Head to this website  https://play.google.com/intl/en_us/badges/ And fill all the details you want including the app link in the store and others you have an option to download or you an directly copy-paste the link and embed in your website which comes along with the image Do let me know if you have any questions in the comments below.

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...

Why password security is the weakest among other security measures?

We have all been using passwords to access out personal accounts for various websites, but it's common that most of the people use the same password for every online account as it seems hard for people to remember 10-15 passwords for various different websites which they use every single day. So here comes the other login methods such as Fingerprint, IRIS scanner and RF cards to validate your accounts and many companies these days are even having 2-factor authentications such as sending messages to phones to authenticate which again is not a very secure practice as many spoofing techniques can be implemented to by get access to the messages and google recently released 2-factor authentication that sends a notification as well as a unique number to select for authentication which could be a much better alternative when majority of the people are using android phones, but out of all these fingerprints, IRIS, and RF cards(MFA) are the most secure ways to protect any security a...

Installing packages with apt-get on gitpod

Until recently I did not know that I could install packages with apt-get on gitpod as it always wanted me to have root permissions, here is how it should be done. If you are using a public git repository make sure you have push permissions to the repository or fork the repository unless you are the real owner of the repository. Now you probably should be already aware that there is an actual ` Browser Extension ` for  chrome  and  Mozilla , if not you should install that to make things easy instead of editing the URL( appending  gitpod.io/# ) all the time to open the repository in gitpod. After you open the repository in gitpod run the below command >> gp init This will generate  .gitpod.yml  and  .gitpod.Dockerfile  files. Now modify the docker file something like below( for install  redis-server  in my case) FROM gitpod/workspace-full USER gitpod RUN sudo apt-get update -q && \ sudo apt-get install -yq ...

Extjs - basics on file-system

Hope you created your first project with command prompt and knew some basics of where the application starts loading files and makes up the complete interface and functionalities. if not I recommend you to start from the initial step and come back here. So when you start your project on a desktop it will check for the main file in the classic folder and shows it to the user.   classic > src > view > main > Main.js Now let's start with this Main.js file and understand better about the project. This main file basically has some extended components  Ext.tab.Panel which extends the main page view to have a tab panel view in it. requires has all the other components that are being used in this page as components. Header of the side tab has all the properties such as layout that defines what should be the layout for the header which is aligned to stretchmax, and the title which is being binded which a data feild named name where the name is from ...