Idea Blog

Page 6 of 10

Previous page

7 Interesting Ruby Array Methods 

Shristina Nakarmi (Software Engineer (Ruby on Rails)) 6 Min. Read Sep 8, 2019

Arrays are one of the fundamental structures of programming. Being able to quickly manipulate and read data out of them is vital to success in building stuff with computers. Here are six methods you can’t do without:.
Read More..

Introduction To Monolith And Microservice Archtecture 

Rojan Sunar (Software Engineer (Ruby on Rails)) 1 Min. Read Sep 8, 2019

Monolith is the traditional architectural style for software development in which different components such as Authorization, Business logic, Database layer, Notification Module, etc are working together to perform certain functionalities.Microservice architecture is a suite of independent modules and each serves to deliver it's own specific service.
Read More..

Ruby Mixin 

Suman Tiwari (Software Engineer (Ruby on Rails)) 1 Min. Read Sep 2, 2019

Ruby mixin is the easiest way to add functionality to classes. It is more powerful than inheritance in terms of usage. So, it is the best way to inherit features in Ruby.
Read More..

Jquery On Method 

Roman Khadka (Team Lead (Ruby on Rails)) 3 Min. Read Sep 2, 2019

In this post we'll learn to bind event handlers using jquery's on method.
Read More..

Event Bubbling 

Shristina Nakarmi (Software Engineer (Ruby on Rails)) 4 Min. Read Sep 1, 2019

The bubbling principle is simple. When an event happens on an element, it first runs the handlers on it, then on its parent, then all the way up on other ancestors.
Read More..

Ruby On Rails Application Vulnerabilities 

Rojan Sunar (Software Engineer (Ruby on Rails)) 4 Min. Read Sep 1, 2019

The Ruby on Rails framework is consider to highly secure for building the web applications. However, it is necessary to understand what kind of vulnerabilities a rails application might have.
Read More..

Include, Extend, And Prepend In Ruby 

Rojan Sunar (Software Engineer (Ruby on Rails)) 2 Min. Read Aug 28, 2019

Ruby provides a feature to attach a specific behaviour/methods in the classes using the keyword `include`,`extends`, and `prepend`.
Read More..

Digital Signage 

Shristina Nakarmi (Software Engineer (Ruby on Rails)) 4 Min. Read Aug 26, 2019

Digital signage is a sub-segment of electronic signage. Digital displays use technologies such as LCD, LED, projection and e-paper to display digital images, video, web pages, weather data, restaurant menus, or text.
Read More..

Active Jobs In Rails 

Suman Tiwari (Software Engineer (Ruby on Rails)) 2 Min. Read Aug 26, 2019

Active Job is a framework in Ruby on Rails for creating, scheduling and executing background jobs. This will help users to perform jobs separately from the normal execution cycle of the system.
Read More..

Security Problems In Web Application 

Rojan Sunar (Software Engineer (Ruby on Rails)) 2 Min. Read Aug 25, 2019

However,the sharing of the data over the internet has also attracted the malicious hackers.
Read More..

Next page