This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [diff "amxd"] | |
| textconv = awk '(NR>1)' | |
| binary = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Generated by: | |
| ``` | |
| cd /Applications/Ableton\ Live\ 12\ Suite.app/Contents/App-Resources/Max/Max.app/Contents/Resources/C74/interfaces/themes | |
| grep '"id"' *.maxtheme | grep live_ | cut -d '"' -f 4 | sort | uniq | |
| ``` | |
| live_active_automation | |
| live_alert | |
| live_arranger_grid_tiles | |
| live_assignment_text_bg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Shell code to run in the container | |
| cmd () { | |
| echo "Hello, ${OUTER_USER}. I am $(whoami)." | |
| cat /etc/issue | |
| } | |
| # Dockerfile definition | |
| read -r -d '' DOCKERFILE <<EOD |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Configure colors | |
| c_reset='\[\e[0m\]' | |
| c_user='\[\e[1;33m\]' | |
| c_path='\[\e[0;32m\]' | |
| c_git_clean='\[\e[0;36m\]' | |
| c_git_dirty='\[\e[0;31m\]' | |
| # Function to assemble the Git part of our prompt. | |
| git_prompt () | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Push the current branch to a remote with the same branch name then open the | |
| # github page comparing that branch to open a pull request. | |
| # Additional args that are passed to this function are given to the "git push" command. | |
| gpb () | |
| { | |
| remote=$1 | |
| shift | |
| if [ -z $remote ]; then | |
| echo "ERROR: you must specify a remote name" |