diff --git a/captures/athlon_pc_bootup_kb.sal b/captures/athlon_pc_bootup_kb.sal new file mode 100644 index 0000000..bb9caf0 Binary files /dev/null and b/captures/athlon_pc_bootup_kb.sal differ diff --git a/captures/athlon_pc_keys.sal b/captures/athlon_pc_keys.sal new file mode 100644 index 0000000..b0f8d6f Binary files /dev/null and b/captures/athlon_pc_keys.sal differ diff --git a/captures/athlon_pc_keys.txt b/captures/athlon_pc_keys.txt new file mode 100644 index 0000000..099d296 --- /dev/null +++ b/captures/athlon_pc_keys.txt @@ -0,0 +1,19 @@ +esc +F2 +F5 +1 +2 +a +b + +insert +delete +screenshot +scrollock +pause +numpad + +numpad 0 +numpad 5 +numpad . + diff --git a/push.sh b/push.sh new file mode 100644 index 0000000..05364e8 --- /dev/null +++ b/push.sh @@ -0,0 +1,15 @@ +if [[ $# -eq 0 ]] ; then + echo 'error: please enter a commit comment' + exit 1 +fi + +find . -type f -name "*.b#*" -exec rm -f {} \; +find . -type f -name "*.s#*" -exec rm -f {} \; +find . -type f -name "*.l#*" -exec rm -f {} \; +find . -type f -name "*.csv#*" -exec rm -f {} \; +find . -type f -name "*.DS_Store*" -exec rm -f {} \; +find . -name "__pycache__" -exec rm -rf {} \; + +git add --all +git commit -m "$@" +git push origin master diff --git a/reset.sh b/reset.sh new file mode 100644 index 0000000..ab0e149 --- /dev/null +++ b/reset.sh @@ -0,0 +1 @@ +git reset --hard HEAD; git clean -f -d