Skip to content

Instantly share code, notes, and snippets.

@elucid
elucid / 01-table-ownership.png
Created June 19, 2026 18:47
Composable ingest migration plan diagrams
01-table-ownership.png
@elucid
elucid / 01-schema-v3.png
Created June 18, 2026 22:45
Ingestion pipeline architecture diagrams
01-schema-v3.png

Ghostty Keyboard Shortcuts

Default keyboard shortcuts for Ghostty terminal emulator. Platform-specific differences are noted where applicable.

Window Management

Action Windows/Linux macOS
New window Ctrl+Shift+N Cmd+N
Close window Alt+F4 Cmd+Shift+W
import Ember from 'ember';
const decoder =
{
4: "A",
7: "B",
5: "C",
9: "D",
6: "E",
8: "F",
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
initialAmount: null,
hasInitialAmount: Ember.computed.gte('initialAmount', 0),
});
@elucid
elucid / .bash_profile
Created March 13, 2017 20:21
fix ssh-agent in OS X sierra
ssh-add -A
class NoActiveRecordController < ActionController::Metal
include Honeybadger::Rack::UserFeedback
include Honeybadger::Rack::ErrorNotifier
include Rack::Sendfile
include ActionDispatch::Static
include Rack::Lock
include Rack::Runtime
include Rack::MethodOverride
include ActionDispatch::RequestId
include RequestStore::Middleware
@elucid
elucid / .profile
Created November 30, 2016 15:56
fix ssh auth sock on tmux attach
# Predictable SSH authentication socket location.
SOCK="/tmp/ssh-agent-$USER-screen"
if test $SSH_AUTH_SOCK && [ $SSH_AUTH_SOCK != $SOCK ]
then
rm -f $SOCK
ln -sf $SSH_AUTH_SOCK $SOCK
export SSH_AUTH_SOCK=$SOCK
fi
@elucid
elucid / .irbrc.rb
Created September 17, 2016 21:05
save useful stuff from IRB sessions
def save_irb(filename)
File.open(filename,'w') {|f| f.puts Readline::HISTORY.entries[0..-2]}
end
@elucid
elucid / application.controller.js
Last active September 30, 2015 21:08
async computed property experiment
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle'
});