Everyone around the world has some idea what an open source is, right? Well, if you don’t actually know, there is no need to feel left behind. Let me simplify it for you! Any product designed to be publicly accessible that can be used, modified, and shared by people is known as “open source”. So, […]
How to create reaction emoji using Ionic Framework
In this blog I am going to show how to create simple reaction emojis in an Ionic app. Please note: I am using free images from google. Let us move on to our first step. Step 1 : Install Node JS first. You can download node js from https://nodejs.org/en/download/ Install Ionic from https://ionicframework.com/getting-started/ If […]
Ruby on rails in ubuntu 16.04
PART -1 (Installation) sudo apt-get update sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev nodejs cd git clone https://github.com/rbenv/rbenv.git ~/.rbenv echo ‘export PATH=”$HOME/.rbenv/bin:$PATH”‘ >> ~/.bashrc echo ‘eval “$(rbenv init -)”‘ >> ~/.bashrc exec $SHELL git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build echo ‘export PATH=”$HOME/.rbenv/plugins/ruby-build/bin:$PATH”‘ >> ~/.bashrc exec $SHELL […]