Skip to content

Instantly share code, notes, and snippets.

View thealiilman's full-sized avatar
🎸
T H A T L A D

Ali Ilman thealiilman

🎸
T H A T L A D
View GitHub Profile
@jferris
jferris / configmap.yaml
Last active October 28, 2024 01:42
Rails Kubernetes Manifests
apiVersion: v1
kind: ConfigMap
metadata:
name: example
namespace: default
data:
APPLICATION_HOST: example.com
LANG: en_US.UTF-8
PIDFILE: /tmp/server.pid
PORT: "3000"
@ProGM
ProGM / arel_cheatsheet_on_steroids.md
Last active April 1, 2025 14:10
Arel cheatsheet on Steroids

Arel Cheatsheet on Steroids

A (more) complete cheatsheet for Arel, including NamedFunction functions, raw SQL and window functions.

Tables

posts = Arel::Table.new(:posts)
posts = Post.arel_table # ActiveRecord

Table alias