KEKade Esterlineinkadeesterline.hashnode.dev·Apr 14, 2022 · 5 min readGet Started With RubyWhat is Ruby? Ruby is a dynamically typed, interpreted, object oriented programming language. Ruby was created by Yukihiro 'Matz' Matsumoto in Japan in the 1990's. Ruby has a very minimal syntax making it very readable and easy to write. If you're al...00
KEKade Esterlineinkadeesterline.hashnode.dev·Apr 13, 2022 · 5 min readGetting Started With ElixirWhat is Elixir? Elixir is a dynamically typed, compiled, functional programming language built on top of the Erlang virtual machine best used for applications that are highly concurrent. Erlang was created in 1986 by Ericcson to create more reliable ...00
KEKade Esterlineinkadeesterline.hashnode.dev·Apr 13, 2022 · 4 min readWhat is Pseudo CSS?Pseudo Classes in CSS When writing CSS you can use a variety of selectors to style different elements of your HTML, these can be things like the class or ID of the element or even the element itself if you want all of that particular element to style...00
KEKade Esterlineinkadeesterline.hashnode.dev·Apr 13, 2022 · 5 min readLooping in RubyLooping in Ruby An important and powerful concept to understand in any programming language is looping. By using loops we can iterate through arrays and interact with each piece of data in the array until a certain condition is met. If you know how t...01K
KEKade Esterlineinkadeesterline.hashnode.dev·Apr 13, 2022 · 7 min readEverything you need to know about fetchUsing Fetch() function getData() { fetch(url) .then(response => { //function for when the response is received }) } getData() The code above shows how you would make a get request using Fetch(). When we make a request to a url...00