Ruby on Rails Introduction

What is Ruby on Rails Ruby on Rails (or just “Rails” for short) is a server-side web application development framework written in Ruby language by David Heinemeier Hansson. It allows you to write less code than other languages and frameworks. Ruby is a dynamic, reflective, general-purpose object-oriented programming language that combines syntax inspired by Perl … Continue reading Ruby on Rails Introduction

Codeigniter Remove index.php from URL

To remove index.php from url, please use following steps: 1. Open the file config.php located in application/config path.  Find and Replace the below code in config.php  file.    // Find the below code $config['index_page'] = "index.php"    // Remove index.php $config['index_page'] = "" 2. Go to codeigniter application root follow and create .htaccess file. 3. Write following code in … Continue reading Codeigniter Remove index.php from URL

Iot Introduction

What is IoT: IoT is a network of physical devices, including things like smartphones, vehicles, home appliances, and more, that connect to and exchange data with computers. So Internet of Things or IoT basically is connecting Embedded System to internet. The term Internet of Things (often abbreviated IoT) was coined by industry researchers but has emerged … Continue reading Iot Introduction