Skip to content

Instantly share code, notes, and snippets.

View kentoj's full-sized avatar

Kent Johnson kentoj

  • Johnson Consulting
  • Utah
View GitHub Profile
@kentoj
kentoj / osx-setup.md
Last active August 29, 2015 14:08 — forked from zenorocha/.hyper.js

Setup Mac OS X

I'm in a hospital in Spain and my MacBook was stolen.

Hospital Commit

Now I bought a new one and need to configure it. I have an external hard drive that backup everything using Time Machine, but I don't want all the crap I had in the old one.

1. Run Software Update

@kentoj
kentoj / closure-table-operations.sql
Last active December 31, 2021 07:12 — forked from emmanuel/file.sql
Closure Table operations SQL fragments
-- Retrieve descendants
-- ====================
-- retrieve descendants of #4
SELECT c.*
FROM Comments AS c
JOIN TreePaths AS t ON c.comment_id = t.descendant
WHERE t.ancestor = 4;
-- Retrieve ancestors