Skip to content

Instantly share code, notes, and snippets.

@graimon
graimon / app.js
Created April 19, 2018 15:11
Sample Node app using knex.js with postgres. Used to test the active connections on an Azure Web App.
//set DEBUG=knex* to get more info
let activeConnections = 0;
const knexSettings = {
client: 'pg',
pool: {
min: 2,
max: 10,
afterCreate: function (conn, done) {
@graimon
graimon / .ruby-version
Created January 18, 2020 11:46
Flatten Exercise for Theorem
2.5.3
@graimon
graimon / my-claude-setup-guide.md
Last active March 10, 2026 15:09
My Claude Code Setup Guide

My Claude Code Setup Guide (macOS)

A step-by-step guide to installing and configuring Claude Code on macOS, the way I use it. This isn't meant to be the definitive reference -- it's just my personal setup that's been working well for me. Things change fast, so if something looks off, check the official docs or let me know.


Table of Contents

  1. Install Claude Code
  2. Install GitHub CLI (gh)