Skip to content

Latest commit

 

History

History
69 lines (67 loc) · 5.03 KB

20220203105614-programming_posts_of_interest.org

File metadata and controls

69 lines (67 loc) · 5.03 KB

Programming posts of interest

This is list a list of programming articles that I find interesting and may want to reference again in the future. For now I’m going to organize them by language and/or framework.

Ruby

Javascript

Database

DevOps

  • Deploying Ruby on Rails with Dokku: this is a kinda of ultimate guide for using Dokku. Includes deploying with docker.
  • Drifting Ruby: Deploying with MRSK Screen cast of deploying with docker to Digital Ocean using MRSK. There’s a bunch of gotchas to set this up, so worth a watch. This can be used for deploying pretty much anywhere, even on prem. Servers need to be prepared in advance (eg, load balancer, app nodes, database server, etc.)
  • AWS Aurora and RoR: Describes the challenges of reducing both application node and database bottle necks by using auto scaling techniques with EC2 and Aurora; and testing by doing performance tests and failovers. Required careful DB and connection pooling configuration.
  • Load Balancing: A visual guide to load balancing strategies like round robin, least connections, PEWMA

Web Development

  • HTTP caching in RoR: While this is centered on RoR development, the post discusses quite a bit about HTTP cache-related headers.