Latest Posts
Personal blog by Karina Baha.
-
“Hello World” Application using Ruby on Rails 6
This article is a brief introduction to web application development in general and, in particular, to Ruby on Rails. We will create a simple application that will display the text “Hello, World!” in the browser.
-
Export Query Results to Another Database using DBeaver
In this post, we’ll export query results from one database to another using DBeaver. We’ll use the Community Edition 21.2.3.
-
Using JavaScript in Ruby on Rails. Let’s Build a To-Do App!
Rails has a lot of built-in helpers that simplify the process of adding Ajax/JavaScript functionality to our applications. Rails uses an unobtrusive scripting adapter (UJS) that provides helpers to assist in writing JavaScript code. We can make use of these helpers by adding data- attributes to our HTML elements. This, combined with Ruby helpers which…
-
Ruby on Rails Forms. Let’s Build a Sign-Up Form!
Rails has a lot of built-in helpers that assist in generating HTML markup. HTML forms can have complex structures that’s why using these helpers can simplify quite a lot the process of building such forms that are very important for any web application. In this tutorial, we’ll deal with building an HTML form using the…
-
Import Bootstrap into a Ruby on Rails 6 Application
In this article, we will discuss the steps needed to import the Bootstrap library into a Rails 6 app. We will import the 5.1 version, which is the latest version at the time of writing.