AIAleem Isiakainsys.limistah.dev路Jul 28, 2020 路 2 min readFlutter - A PrimerFlutter is a tool that allows you to build native cross-platform (iOS, Android) apps with one single code base and programming language. Components Flutter consists of two main separate tools, an SDK(Software Development Kit) and a framework widget l...00
AIAleem Isiakainsys.limistah.dev路Jul 28, 2020 路 1 min readRoute HTTP to HTTPS [NGINX]There is no magic here, just add the below to your Nginx config file server { listen 80 default_server; server_name _; return 301 https://$host$request_uri; } It is a server block that listens to the default port, and works for every se...00
AIAleem Isiakainsys.limistah.dev路Jul 27, 2020 路 1 min readRewinding a remote branch [GIT]You were working in a feature branch but accidentally pushed commits to the master/develop branch, it happens. First, you have to know the exact commit ID or number of commits that was pushed. You can use git log pretty=oneline to get the information...00
AIAleem Isiakainsys.limistah.dev路Jul 27, 2020 路 1 min readRewinding a remote branch [GIT]You were working in a feature branch but accidentally pushed commits to the master/develop branch. First, you have to know the exact commit ID or number of commits that was pushed. You can use git log pretty=oneline to get the information. If you don...00
AIAleem Isiakainsys.limistah.dev路Jul 24, 2020 路 2 min readDocker file for NodeJS applicationFew weeks before now, I boostrapped a NodeJS codebase using Docker as part of the requirement was that new team member should be able to get up and running as soon as possible. I came up with a Dockerfile that looked like the below: # Base Image. # T...00