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
| echo "Creating an SSH key for you..." | |
| ssh-keygen -t rsa | |
| echo "Please add this public key to Github \n" | |
| echo "https://github.com/account/ssh \n" | |
| read -p "Press [Enter] key after this..." | |
| echo "Installing xcode-stuff" | |
| xcode-select --install |
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
| kns() { | |
| local contextFlag="--current" | |
| local namespace="" | |
| while [[ $# -gt 0 ]]; do | |
| case "$1" in | |
| -c|--context) | |
| if [[ -z "$2" ]]; then | |
| echo "Usage: kns [-c|--context <context>] <namespace>" | |
| return 1 |
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
| class Keyframe { | |
| int start, end; | |
| public Keyframe(int start, int end) { | |
| this.start = start; | |
| this.end = end; | |
| } | |
| } |
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
| import de.undefinedhuman.projectcreate.engine.utils.Utils; | |
| import de.undefinedhuman.projectcreate.engine.utils.math.Vector2i; | |
| import javax.swing.*; | |
| import java.awt.*; | |
| import java.awt.event.*; | |
| import java.util.ArrayList; | |
| class Keyframe { |