programming on the toilet
5 articles tagged “programming on the toilet”
Blog
August 6, 2019
Express Middleware & Memoization
Express middleware Middleware functions are functions that have access to the request object (req ), the response object (res ), and the next function in…
Blog
July 18, 2019
Code Refactoring & Decompose Conditional Technique
Code refactoring Refactoring is the process of changing a software system in such a way that it does not alter the behavior of the code…
Blog
July 9, 2019
Bootstrap partial Sass & ESLint
Bootstrap partial Sass Bootstrap is a component-based library for developing web UI. Not all components are used when developing frontend with Bootstrap. In order to…
Blog
June 12, 2019
Symbols and Variables in Ruby & Destructuring in JS
Symbols and Variables in Ruby Symbols and variables are very different things in Ruby. Symbols are like strings, they’re immutable and behave like constants. All…
Blog
May 14, 2019
Falsy and Truthy values & Arrow Functions in JS
Falsy and truthy values in Javascript Falsy values in JavaScript are false, null, undefined, 0, NaN, ““ (empty strings). The following construct: let val =…