Useful commands:
TODO: rearrange this to bottom = oldest and top = newst (2-27-2020) below dashed line
ln -f -s $(/bin/ls -t tmux_resurrect_*.txt | head -n 1) last
| #!/bin/bash | |
| for arg; do [[ $arg = /* ]] || arg=$PWD/$arg; absargs+=("$arg"); done; | |
| /Applications/p4merge.app/Contents/Resources/launchp4merge "${absargs[@]}" | |
| [user] | |
| name = William <REDACTED> | |
| email = <REDACTED> | |
| [color] | |
| ui = true | |
| branch = true | |
| diff = true | |
| status = true | |
| log = true | |
| [alias] |
| # Source global definitions | |
| if [ -f /etc/bashrc ]; then | |
| . /etc/bashrc | |
| fi | |
| # enable forward search | |
| # http://ruslanspivak.com/2010/11/25/bash-history-incremental-search-forward/ | |
| # https://bugs.launchpad.net/ubuntu/+source/bash/+bug/80635/comments/12 | |
| stty -ixon |
| $graph = {a: [:b, :c], b: [:d, :e], c: [:f, :g]} | |
| def dfs_nr(node) | |
| queue = [node] | |
| seen = {} | |
| while queue.size > 0 | |
| node = queue.pop | |
| puts node | |
| seen[node] = true | |
| if $graph[node] |
| // Expose modules in ./support for demo purposes | |
| /** | |
| * Module dependencies. | |
| */ | |
| var express = require('express'); | |
| // Edit /etc/vhosts |