Ruby Style Guide
Link: Ruby Style Guide: "This is a very reasonable, rational, practical style guide. “Shopify's Ruby Style Guide. Always useful to see how the ruby experts do it!”"
Ruby on Whales: Dockerizing Ruby and Rails development — Martian Chronicles
Link: Ruby on Whales: Dockerizing Ruby and Rails development — Martian Chronicles: "I am working on a ruby on rails cluster. There will be many links about my research. An exhaustive and documented Docker configuration for developing Ruby and Rails applications"
The Ultimate Guide to Building Your Personal K3S Cluster
Link: The Ultimate Guide to Building Your Personal K3S Cluster: "There are a lot of reasons why you might want to have your personal Kubernetes cluster. Personally, I like building my own tools and…"
k8s vs k3s: The Comprehensive Difference
Link: k8s vs k3s: The Comprehensive Difference: "Kubernetes is undoubtedly a champion in the container orchestration world. But currently, we see K3s or a lightweight Kubernetes…"
Things You Should Know About Databases
Link: Things You Should Know About Databases: "Things You Should Know About Indexes and Transactions. This post covers internal workings of indexes and transactions of RDBMSs."
The Wiki for Robot Builders
Link: The Wiki for Robot Builders: "The Robotics Knowledgebase exists to advance knowledge in the robotics discipline."
The strange relationship between objects, functions, generators and coroutines
Link: The strange relationship between objects, functions, generators and coroutines: "The strange relationship between objects, functions, generators and coroutines In this article, I’d like to investigate some relationships between functions, objects, generators and coroutines in Python. At a theoretical level, these are very different concepts, but because of Python’s dynamic nature, many of them can appear to be used interchangeably. I discuss useful applications of […]"
A Gentle Introduction to Particle Swarm Optimization
Link: A Gentle Introduction to Particle Swarm Optimization: "Particle swarm optimization (PSO) is one of the bio-inspired algorithms and it is a simple one to search for an optimal solution in the solution space. It is different from other optimization algorithms in such a way that only the objective function is needed and it is not dependent on the gradient or any differential […]"
Coding forces you to understand the problem | Swizec Teller
Link: Coding forces you to understand the problem | Swizec Teller: "Programming translates fuzzy understanding into exacting specifications. That’s why it’s hard. The Illusion of Explanatory Depth reigns supreme"
Dynamically calling functions in Python... Safely
Link: Dynamically calling functions in Python... Safely: "Sometimes you need to call a function in Python but you don't know which one until runtime. Let me show you how to dynamically call a function in Python."