Creating Powerful Rails Project Templates
Streamlining Your Rails Development Journey with Templates
Last Updated on September 4, 2024 In this article, we’ll dive into how the rails config file can be helpful to streamline your rails project …
CodeTips#10: Throttle and Debounce
Because your code could use a little discipline
Last Updated on September 4, 2024 When you learn to code, you usually start with understanding types and declaring variables, then reusing code through functions, …
Colors on websites: Beyond Aesthetics (Part II)
Finding out why website color palettes are probably way more important than you think.
Creating a cool but simple color palette can be very difficult, right? Designers often focus on UI and UX to get it right. But how …
Colors on websites: Beyond Aesthetics (Part I)
Finding out why colors are probably way more important than you think.
Last Updated on July 10, 2024 Colors are around us everywhere, even in the virtual world. Many people may think that their importance is only …
Miner’s Advice #2: Dare to Experiment
Working in software development means being in a constant state of learning, if not by choice, by necessity; our industry moves exceedingly fast, and there’s …
CodeTips#9: Readable .html.erb files on VSCode
What they won’t tell you about .html.erb… Mystery solved after years
Last Updated on September 4, 2024 If you’re a front-end developer like me, you’ve probably encountered the challenges of coding with Ruby and .html.erb files. It can …
How React 19 (Almost) Made the Internet Slower
It’s no news that React is still the most popular and most used UI framework and powers some big names of the web like Netflix, …
CodeTips#8: SQL Transactions
A Dive into Basic Concepts with Real-World Examples
Last Updated on September 4, 2024 We live in an era when we are increasingly automating our day-to-day processes. We no longer go to bank …
Creating Anonymous sign-in flow with Firebase
Have you noticed that, these days, most services and apps we use require an account before starting the experience of actually using the app/service? It …
Integrating Ruby with Rust with FFI
Transferring numbers, strings and JSON data between Ruby and Rust
Ruby is a great programming language for productivity, but sometimes you need to develop something that is performant or has a low memory footprint. Rust …