Application

216 articles

Code Reading of Sidekiq
Application 2024-09-21

Code Reading of Sidekiq

Understand Sidekiq architecture for Redis-based asynchronous job queuing, job enqueuing, and execution flow in Ruby applications.

#Ruby#Sidekiq
Ruby on Rails Code Reading Part 3 - Invoking WelcomeController
Application 2024-09-04

Ruby on Rails Code Reading Part 3 - Invoking WelcomeController

Documenting the code reading process for Ruby on Rails.

#Ruby on Rails#Ruby
Ruby on Rails Code Reading Part 1 - Rails Startup
Application 2024-09-02

Ruby on Rails Code Reading Part 1 - Rails Startup

Trace Rails startup sequence from command invocation through Rackup, Puma server initialization, and request handling flow.

#Ruby#Ruby on Rails
Ruby on Rails Code Reading Part 2 - Rails Request Processing
Application 2024-09-02

Ruby on Rails Code Reading Part 2 - Rails Request Processing

Recording the code reading work of Ruby on Rails.

#Ruby#Ruby on Rails
Books to Learn About API Design
Application 2024-08-26

Books to Learn About API Design

Discover recommended books on API design: fundamentals, design phases, testing strategies, and practical design patterns.

#API#Design
Relearning the Basics of TypeScript
Application 2024-07-20

Relearning the Basics of TypeScript

Revisiting the fundamentals of TypeScript.

#TypeScript
Building & Pushing Docker Images with GoReleaser
Application 2024-05-29

Building & Pushing Docker Images with GoReleaser

Automate Docker image builds across multiple platforms using GoReleaser with GitHub Actions for streamlined CI/CD deployment.

#Golang#GitHub Actions
Learning Ruby
Application 2024-05-16

Learning Ruby

Master Ruby fundamentals using official documentation, classic books, object-oriented design patterns and practical implementation practice.

#Ruby
About Ruby Block Syntax
Application 2024-05-15

About Ruby Block Syntax

Learn Ruby block syntax with do..end and {} forms, passing blocks to methods, yield statements, and Proc/lambda closure behavior.

#Ruby
About Ruby Modules
Application 2024-05-15

About Ruby Modules

Understand Ruby modules for namespacing, mixin multiple inheritance, and providing common methods without class instantiation.

#Ruby
About Ruby's Proc and Lambda
Application 2024-05-15

About Ruby's Proc and Lambda

Compare Ruby Proc and Lambda differences in argument handling, return behavior, and jump statement semantics for closures.

#Ruby
About Ruby's Singleton Classes and Singleton Methods
Application 2024-05-15

About Ruby's Singleton Classes and Singleton Methods

Explore Ruby singleton classes, singleton methods, class methods, and object-specific method definitions for advanced metaprogramming.

#Ruby
About Ruby Symbols
Application 2024-05-14

About Ruby Symbols

Understand Ruby symbols as memory-efficient, immutable identifiers for hash keys, method names, and enum-like constants.

#Ruby
Mastering TCP/IP: Introduction (6th Edition)
Application 2024-05-13

Mastering TCP/IP: Introduction (6th Edition)

Mastering TCP/IP: Introduction (6th Edition)

#TCP#IP#Book Review
Fun with Ruby
Application 2024-05-04

Fun with Ruby

Fun with Ruby

#Ruby#Book Review
Perfect Ruby on Rails
Application 2024-05-04

Perfect Ruby on Rails

Perfect Ruby on Rails

#Ruby on Rails#Ruby#Book Review
Perfect Ruby
Application 2024-05-04

Perfect Ruby

Perfect Ruby

#Ruby#Book Review
Introduction to Ruby for Aspiring Professionals
Application 2024-05-04

Introduction to Ruby for Aspiring Professionals

Introduction to Ruby for Aspiring Professionals

#Ruby#Book Review
Why Programs Work, 3rd Edition: Essential Programming Knowledge
Application 2024-05-01

Why Programs Work, 3rd Edition: Essential Programming Knowledge

Why Programs Work, 3rd Edition: Essential Programming Knowledge

#CPU#Memory#Book Review
From Custom HTTP Router to New ServeMux
Application 2024-04-27

From Custom HTTP Router to New ServeMux

Migrate from a custom HTTP router goblin to Go 1.22 enhanced net/http ServeMux. Covers new routing patterns, performance comparison with third-party routers, and when ServeMux is enough.

#Golang#Router