Application

208 articles

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
Challenges Faced When Checking PHP 8.2 Compatibility with PHPCompatibility
Application 2024-04-14

Challenges Faced When Checking PHP 8.2 Compatibility with PHPCompatibility

Explore PHP 8.2 compatibility checks with PHPCompatibility CodeSniffer, addressing tool limitations and the develop branch.

#PHP CodeSniffer#PHPCompatibility
About Go's rune Type
Application 2024-02-21

About Go's rune Type

Learn what Go rune type is and how it represents Unicode code points (int32 alias). Covers string vs. rune differences, range loop behavior, and multi-byte character handling.

#Golang
One-Liner for Self-Signed Certificates in Go
Application 2024-02-16

One-Liner for Self-Signed Certificates in Go

Generate a self-signed TLS certificate in Go with one command using the built-in generate_cert.go tool. Produces cert.pem and key.pem for local HTTPS without openssl or mkcert.

#Golang#Tips
Implementing Exponential Backoff and Jitter in Go
Application 2024-01-31

Implementing Exponential Backoff and Jitter in Go

Implement exponential backoff with jitter in Go for robust retry logic. Covers multiplying retry delays, adding randomness to prevent thundering herd, retry limits, and timeouts.

#Exponential Backoff#Retry#Jitter
FuelPHP and PHP Update Project Report
Application 2024-01-26

FuelPHP and PHP Update Project Report

Learn how to update FuelPHP applications from PHP 7.3 to 8.1 with monolithic architecture strategies and compatibility tools.

#PHP#FuelPHP
Changes to ServeMux Specification in Go 1.22rc
Application 2024-01-25

Changes to ServeMux Specification in Go 1.22rc

Explore Go 1.22 enhanced ServeMux routing: HTTP method patterns (GET /items), wildcard path params (/items/{id}), the /{$} exact-match wildcard, and Request.PathValue.

#Golang
A Collection of Links for Reviewing gRPC and Protocol Buffers
Application 2024-01-25

A Collection of Links for Reviewing gRPC and Protocol Buffers

Review essential gRPC and Protocol Buffers resources covering load balancing, Kubernetes deployment, and best practices.

#gRPC#Protocol Buffers#Link Collection
Using Workspace Mode with Go's Multi-Module Structure
Application 2024-01-19

Using Workspace Mode with Go's Multi-Module Structure

Learn how Go Workspace mode (Go 1.18+) simplifies multi-module development. Covers go work init, go.work file structure, and referencing local modules without editing go.mod.

#Golang