Mongo DB Setup On Windows 11 and Getting started with Mongo DB

Mongo DB is one of the popular databases in the market right now . Versatile , fast , and easy to work with . If you want to get started with MEAN or MERN stack development , you will need a working mongo DB instance . Although we can use online solutions to learn the […]

Fedora 35 : Step By Step Installation on VMware Workstation Pro 16

Recently , Red Hat backed community Linux distribution Fedora has released its latest stable release Fedora 35 . Lot of new changes and improvements were made after Fedora 34. Lets install fedora 35 using one of the popular hypervisors in market . i.e. VMware workstation pro 16 . Follow steps below to get a working […]

Deploy Rails App on AWS Server

This post is very quick guide about how to deploy ruby on rails application on AWS cloud running apache2 webserver. Deploying application means putting it on a Web server so that it can be used either through the Internet or an intranet. This Web server might be local UNIX system, while you develop and debug […]

How To Deploy Ruby App On AWS With Capistrano

This post will show you steps on how to deploy the ruby rails app on the AWS server running apache and phusionpassenger using Capistrano. As you know Capistrano is a widely used deployment automation tool for ruby applications. It uses ‘ssh’ to deploy from the development server or staging server to the production server. There […]

Hello World With Sinatra Web Framework

Sinatra is a lightweight web framework. Sinatra is similar to Ruby on Rails web frameworks. It’s pretty different from Rails as it’s much lighter (less overhead), and you have more fine-grained control over your web app. Additionally, there is no built-in database functionality or page rendering — all of that is done manually. So it […]

Configure Redmine For Employee Referral Program Workflow-ERP

Redmine is one of the popular web based open source free tool for your organization. We being startup use this tool for all our activities, like CRM, Invoicing, Inventory Management, Payroll, Payslip, Leave management, Expense management apart from regular project monitoring and control. In this post I will detailed out how to configure and use […]

How to Backup PostgreSQL Data From Files

This article is about how to make backup of a database from filesystem in PostgreSQL. Also provides details on how to make and restore the database from filesystem. If you have come across case where you are required to start ‘psql’ database from filesystem backup. There might be case that some of Ubuntu files crashed […]

MVC architecture in Ruby On Rails Quick Guide

When we are beginner to Ruby on rails , or just getting started , we come across the term MVC . MVC stands for Model , View and Controller . But there are other components involved also . Following image shows how all the components of MVC relate to each other . Now lets have […]