6 followers
Working primarily in golang, python, vue, svelte, mongo at HPE, Bangalore. I like gaming, music, sketching, writing and cooking.
Subscribe to my newsletter and never miss my upcoming articles
This is a complete list of examples of all the basic programming concepts of golang. basic golang program structure package main import ( "fmt" ) func main(){ fmt.Println("Hello World!") } to mark the entry point of the application, we must ...
The purpose of this guide is to make a simple telegram bot, which replies with a compliment for each and every message that it receives. Create a bot in telegram Look for a bot named BotFather https://t.me/botfather . This bot is used to create bots...
Both git merge and git rebase are used to integrate the changes from one branch into the other branch. We usually create a feature branch - make the code changes in form of commits and then either merge or rebase it into master. See the below image w...
Its very simple to install git on any platform - Linux Install git on Ubuntu, or RHEL based distros sudo apt-get install git # ubuntu based distro sudo dnf install git # fedora sudo yum install git # centos or rhel Mac If you have homebrew...
What is version control? When we write code in a team of developers, we can expect others to work on the same code base. How can we achieve that? One way is - one person makes the changes and shares the project with next person, then they make more ...
With HTML5 things have become very easy, we get many platform APIs in javascript which were previously not available. Earlier we made use of Flask with action script to achieve a lot of it. HTML Scaffold for our Application We will design a simple HT...