You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
eval sf ws create --name ${NAME}${NO_CUSTOMIZATION}${ROCKY9}
308
+
eval sf ws ssh ${NAME}
293
309
}
294
310
295
311
alias sfssh='sf ws ssh'
296
312
alias sfls='sf ws ls'
313
+
314
+
functiontmux4() {
315
+
tmux new-session -s dev \; \
316
+
split-window -h \; \
317
+
split-window -v \; \
318
+
select-pane -t 0 \; \
319
+
split-window -v \; \
320
+
select-layout tiled \; \
321
+
attach
322
+
}
323
+
alias tdev='tmux attach -t dev'
324
+
gorun() { local f=$(mktemp -t gorun-XXXX).go; cat >"$f"; go run "$f"; rm "$f"; }
325
+
alias avalanche_up='GODEBUG="x509ignoreCN=0" go run ./cmd/avaServer -yes-i-really-want-to-disable-authentication -mig-bypass-sha256 -overridedb 127.0.0.1'
0 commit comments