Mongodb is one the most popular NoSQL database. And with access to MongoDB atlas for free it become very easy to get started with mongoDB NoSQL database are most used in the case where your table structure is not fixed and you want to have the data stored as one individual entity. e.g if you want […]
ReactJS is one of the most popular frontend technology which uses the power of JavaScript to render a dynamic DOM and provide a object orientated approach to manipulate the document. ReactJS is created by Facebook development team but it’s open source to use, and that gives developer community to really see the actual code before […]
simple PHP REST API Generator tool which takes your database as input and writes a full production ready REST API code for you.
REST API Generator performs an in-depth analysis of your mysql database: all types of relationships between tables, primary and foreign keys, field types and values, validation, etc.
So you have written your first Django App and want to install the app to your Free AWS Ec2 Instance. Here is the steps you can follow to do the same. Connect your EC2 Instance using Putty sudo apt-get update Then you need your webserver (nginx): sudo apt-get install nginx Since we installed Ubuntu 14.04, […]
This is the step to install standalone spark in AWS Ubuntu Ec2. Working and tested steps Install Java ———— sudo apt-add-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java7-installer Install Scala (www.scala-lang.org) ————- sudo mkdir /usr/local/src/scala sudo tar -xvf scala-2.11.7.tgz -C /usr/local/src/scala/ sudo vim .bashrc export SCALA_HOME=/usr/local/src/scala/scala-2.11.7 export PATH=$SCALA_HOME/bin:$PATH . .bashrc Install Git ———– sudo […]
Recently, I come across a simple problem where we have to extract subdomain from different URL. Then I decided to write simple extensions in “C# Subdomain from URL”, which can be used easily across the system. Sharing the code: public enum GetSubDomainEnum { ExcludeWWW, IncludeWWW }; public static class Extentions { public static string GetSubDomain(this […]
Let’s learn how to setup SSL certificate to your domain pointing to AWS EC2 Ubuntu Instance. It’s a quick and easy way to steps without any confusion Step 1: Buy SSL Certificate from a vendor like Godaddy, SSls.com or any. Step 2: Create private key from ubuntu Ec2 instance sudo openssl req -new -newKey rsa:2048 -nodes […]
In this post I am sharing the Cassandra backup script on linux system or AWS Instance. The script includes two steps as per the Cassandra backup requirement. These are given below 1. SCHEMA Backup 2. Taking SNAPSHOT Backup NOTE: The script you have to run in each cassandra node server. You can run this script […]