Programming

Programming

Elixir - Introduction

This post covers some basic concepts including immutability and pattern matching in Elixir.

Read
Programming

JavaScript - Functions

JavaScript's first-class citizen, functions or callable objects.

Read
Programming

JavaScript ES6 - ‘Let' and Destructuring

let statement makes it possible to declare block-specific variables.

Read
Programming

Laravel - Controller

We can sort of think controller as the man in the middle, Controller receives a request, and ask the model for data, then present it to view to render on the screen.

Read
Programming

Laravel - Eloquent

Eloquent is the ORM (Object Relational Mapper) in Laravel, it is a way that you can work with a database with simple syntax instead of writing long queries.

Read