-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
1,695 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
# ~/.bashrc: executed by bash(1) for non-login shells. | ||
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | ||
# for examples | ||
|
||
# If not running interactively, don't do anything | ||
case $- in | ||
*i*) ;; | ||
*) return;; | ||
esac | ||
|
||
# don't put duplicate lines or lines starting with space in the history. | ||
# See bash(1) for more options | ||
HISTCONTROL=ignoreboth | ||
|
||
# append to the history file, don't overwrite it | ||
shopt -s histappend | ||
|
||
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1) | ||
HISTSIZE=1000 | ||
HISTFILESIZE=2000 | ||
|
||
# check the window size after each command and, if necessary, | ||
# update the values of LINES and COLUMNS. | ||
shopt -s checkwinsize | ||
|
||
# If set, the pattern "**" used in a pathname expansion context will | ||
# match all files and zero or more directories and subdirectories. | ||
#shopt -s globstar | ||
|
||
# make less more friendly for non-text input files, see lesspipe(1) | ||
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" | ||
|
||
# set variable identifying the chroot you work in (used in the prompt below) | ||
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then | ||
debian_chroot=$(cat /etc/debian_chroot) | ||
fi | ||
|
||
# set a fancy prompt (non-color, unless we know we "want" color) | ||
case "$TERM" in | ||
xterm-color|*-256color) color_prompt=yes;; | ||
esac | ||
|
||
# uncomment for a colored prompt, if the terminal has the capability; turned | ||
# off by default to not distract the user: the focus in a terminal window | ||
# should be on the output of commands, not on the prompt | ||
#force_color_prompt=yes | ||
|
||
if [ -n "$force_color_prompt" ]; then | ||
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then | ||
# We have color support; assume it's compliant with Ecma-48 | ||
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such | ||
# a case would tend to support setf rather than setaf.) | ||
color_prompt=yes | ||
else | ||
color_prompt= | ||
fi | ||
fi | ||
|
||
if [ "$color_prompt" = yes ]; then | ||
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' | ||
else | ||
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' | ||
fi | ||
unset color_prompt force_color_prompt | ||
|
||
# If this is an xterm set the title to user@host:dir | ||
case "$TERM" in | ||
xterm*|rxvt*) | ||
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" | ||
;; | ||
*) | ||
;; | ||
esac | ||
|
||
# enable color support of ls and also add handy aliases | ||
if [ -x /usr/bin/dircolors ]; then | ||
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" | ||
alias ls='ls --color=auto' | ||
#alias dir='dir --color=auto' | ||
#alias vdir='vdir --color=auto' | ||
|
||
alias grep='grep --color=auto' | ||
alias fgrep='fgrep --color=auto' | ||
alias egrep='egrep --color=auto' | ||
fi | ||
|
||
# colored GCC warnings and errors | ||
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' | ||
|
||
# some more ls aliases | ||
alias ll='ls -alF' | ||
alias la='ls -A' | ||
alias l='ls -CF' | ||
alias fd='fdfind' | ||
|
||
# Add an "alert" alias for long running commands. Use like so: | ||
# sleep 10; alert | ||
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' | ||
|
||
# Alias definitions. | ||
# You may want to put all your additions into a separate file like | ||
# ~/.bash_aliases, instead of adding them here directly. | ||
# See /usr/share/doc/bash-doc/examples in the bash-doc package. | ||
|
||
if [ -f ~/.bash_aliases ]; then | ||
. ~/.bash_aliases | ||
fi | ||
|
||
# enable programmable completion features (you don't need to enable | ||
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile | ||
# sources /etc/bash.bashrc). | ||
if ! shopt -oq posix; then | ||
if [ -f /usr/share/bash-completion/bash_completion ]; then | ||
. /usr/share/bash-completion/bash_completion | ||
elif [ -f /etc/bash_completion ]; then | ||
. /etc/bash_completion | ||
fi | ||
fi | ||
|
||
eval "$(fasd --init auto)" | ||
set -o vi | ||
export PATH=$PATH:/usr/local/go/bin | ||
export PATH=$PATH:$HOME/go/bin | ||
export GOPROXY=https://goproxy.cn | ||
export EDITOR=vim | ||
|
||
export GPG_TTY=$(tty) | ||
|
||
export NEMU_HOME=/home/ubuntu64/Documents/PA/ics2022/nemu | ||
export AM_HOME=/home/ubuntu64/Documents/PA/ics2022/abstract-machine | ||
|
||
# prepend /usr/lib/ccache to the PATH. /usr/lib/ccache contains symlinks for all compilers currently installed as Debian packages. | ||
export PATH=/usr/lib/ccache:$PATH |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
/home/ubuntu64/Documents/PA|3.55301|1693284329 | ||
/home/ubuntu64/.tmux.conf|3.24483|1692675746 | ||
/home/ubuntu64/Documents/PA/ics2022/nemu/src/nemu-main.c|1|1693315486 | ||
/mnt|2|1693281624 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/.github/workflows|6.72884|1692952406 | ||
/home/ubuntu64/.gnupg|2.5|1693149451 | ||
/home/ubuntu64/Documents/PA/ics2022|9.88257|1693321612 | ||
/home/ubuntu64/Documents/test/pdb-tutorial/solutions|1|1692586766 | ||
/etc|1|1693281675 | ||
/home/ubuntu64/Documents/PA/ics2022/fceux-am|5.7549|1693285114 | ||
/home/ubuntu64/Documents/PA/ics2022/Makefile|4.33944|1693202034 | ||
/dev|1|1693281627 | ||
/home/ubuntu64/Documents|5.39002|1693284325 | ||
/home/ubuntu64/Documents/PA/ics2022/nemu/Makefile|3.83446|1693322420 | ||
/home/ubuntu64/.bashrc|4.33944|1693303012 | ||
/home/ubuntu64/.ssh|5.39002|1692368197 | ||
/home/ubuntu64/Documents/test/paper2.pdf|1|1692866420 | ||
/home/ubuntu64/Documents/test/Super Mario Bros (E).zip|2|1693280575 | ||
/home/ubuntu64/Documents/test/pdb-tutorial/dicegame/runner.py|2.5|1692586904 | ||
/home/ubuntu64/.vim/pack/plugins/start/ctrlp|2.5|1692368630 | ||
/var/lib|2.5|1693283332 | ||
/home/ubuntu64/Documents/test/example.py|3.24483|1692672854 | ||
/home/ubuntu64/Documents/test/want_to_crawl.sh|1|1692778019 | ||
/var|1|1693283335 | ||
/home/ubuntu64/.ssh/id_rsa.pub|3.24483|1692368047 | ||
/home/ubuntu64/.gitconfig|1|1692368585 | ||
/home/ubuntu64/Documents/PA/ics2022/fceux-am/nes/rom|3.83446|1693280664 | ||
/home/ubuntu64/.inputrc|1|1692278145 | ||
/home/ubuntu64/.vimrc|6.72884|1693283900 | ||
/var/lib/VBoxGuestAdditions|1|1693283332 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/.git/MERGE_MSG|1|1692937963 | ||
/home/ubuntu64/Documents/PA/ics2022/nemu|9.46688|1693322420 | ||
/home/ubuntu64/Documents/test/pdb-tutorial/dicegame/__pycache__/test|4.56988|1693357570 | ||
/home/ubuntu64/Documents/PA/ics2022/nemu/src|4.09525|1693315601 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/.git|5.92866|1692947773 | ||
/home/ubuntu64/Documents/test/plot-data.png|1|1692860893 | ||
/home/ubuntu64/Documents/PA/ics2022/abstract-machine|1|1693201187 | ||
/home/ubuntu64/Documents/test/plot.py|2.5|1692860910 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/paper.log|1|1693147652 | ||
/home/ubuntu64/Documents/test/pdb-tutorial/dicegame|4.56988|1693357600 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/Makefile|3.24483|1692895441 | ||
/media/ubuntu64|3.83446|1693283909 | ||
/home/ubuntu64/.gnupg/trustdb.gpg|1|1693149437 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/.github/workflows/ShellCheck.yml|3.55301|1692936819 | ||
/home/ubuntu64/Documents/PA/ics2022/fceux-am/nes/rom/mario.nes|1|1693280664 | ||
/home/ubuntu64/Documents/PA/ics2022/fceux-am/nes|3.24483|1693280683 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/paper.pdf|1|1692936200 | ||
/home/ubuntu64/Documents/test/crime.html|2|1692278453 | ||
/home/ubuntu64/.vim/pack/plugins/start/ale|4.09525|1692698849 | ||
/home/ubuntu64/Documents/test/vim-colors-solarized/colors|2.5|1692673310 | ||
/home/ubuntu64/.vim/pack|3.55301|1692698721 | ||
/home/ubuntu64/Documents/test/Fibonacci_numbers.py|3.24483|1692613609 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/.github|5.19762|1692952407 | ||
/home/ubuntu64/Documents/test/pdb-tutorial/dicegame/utils.py|1|1692586990 | ||
/home/ubuntu64/.vim/pack/plugins|3.55301|1692698773 | ||
/home/ubuntu64/Documents/test/ex.aes256|2.9|1693147242 | ||
/home/ubuntu64/Documents/test/paper.pdf|2.5|1692864996 | ||
/home/ubuntu64/.vim/pack/plugins/start|6.72884|1692698849 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/Dockerfile|2|1692953254 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/.github/workflows/github-actions-demo.yml|2.5|1692936538 | ||
/home/ubuntu64/Documents/test/Makefile|4.09525|1692867258 | ||
/home/ubuntu64/Documents/PA/ics2022/nemu/README.md|1|1693207401 | ||
/media/ubuntu64/VBox_GAs_7.0.6/VBoxLinuxAdditions.run|2|1693283378 | ||
/etc/apt/sources.list|2|1692698499 | ||
/home/ubuntu64/Documents/test/test.sh|2.5|1692673836 | ||
/|5.7549|1693302635 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/action.yml|2.5|1692953032 | ||
/home/ubuntu64/.vim/pack/plugins/start/coc.nvim/doc|2|1692698873 | ||
/home/ubuntu64/Documents/test|30.8021|1693357602 | ||
/usr/lib|2.5|1693302595 | ||
/home/ubuntu64/Documents/test/wget-log|1|1692762480 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/.git/hooks|9.46688|1692896548 | ||
/usr/lib/ccache/gcc|1|1693302520 | ||
/home/ubuntu64/Documents/test/go1.21.0.linux-amd64.tar.gz|1|1692277585 | ||
/home/ubuntu64/Documents/test/vim-colors-solarized|2|1692673286 | ||
/home/ubuntu64/Documents/test/paper.tex|2.9|1692861086 | ||
/home/ubuntu64/.vim|5.57555|1692698717 | ||
/media/ubuntu64/VBox_GAs_7.0.6|5.57555|1693283983 | ||
/home/ubuntu64/Documents/test/data.dat|2.9|1692867174 | ||
/home/ubuntu64|6.57679|1693357618 | ||
/home/ubuntu64/Documents/test/pdb-tutorial/dicegame/__pycache__/test/test|2|1693357567 | ||
/home/ubuntu64/Documents/test/ex.decrpyt|2.5|1693147406 | ||
/usr/lib/apt|1|1692697722 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/.github/workflows/write-good.yml|2.5|1692952406 | ||
/home/ubuntu64/Documents/test/id.txt|1|1692776557 | ||
/home/ubuntu64/Documents/test/pycallgraph.png|2.9|1692613653 | ||
/home/ubuntu64/Documents/test/a.sh|2|1692278772 | ||
/home/ubuntu64/.vim/solarized.vim|1|1692673543 | ||
/home/ubuntu64/Documents/test/pdb-tutorial/dicegame/__pycache__|5.57555|1693357577 | ||
/home/ubuntu64/Documents/test/Fibonacci_numbers|1|1692612718 | ||
/home/ubuntu64/Documents/test/pdb-tutorial|6.42105|1693357602 | ||
/home/ubuntu64/Documents/test/tt.html|2.9|1692776715 | ||
/home|2.5|1692673356 | ||
/home/ubuntu64/Documents/test/a.py.lprof|1|1692278817 | ||
/usr/bin|1|1693302599 | ||
/home/ubuntu64/Documents/test/SHA256SUMS|2|1693148881 | ||
/home/ubuntu64/Documents/test/a.py|7.02285|1692700510 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/.git/hooks/pre-commit|4.33944|1692896548 | ||
/home/ubuntu64/Documents/test/supermario|3.24483|1693280635 | ||
/home/ubuntu64/Documents/test/ex|4.09525|1693148859 | ||
/home/ubuntu64/Documents/test/file1|2|1693199626 | ||
/home/ubuntu64/Documents/test/sorts.py|4.33944|1692542994 | ||
/home/ubuntu64/Documents/test/pdb-tutorial/main.py|4.33944|1692586937 | ||
/home/ubuntu64/.vim/pack/plugins/start/coc.nvim|2.5|1692698868 | ||
/home/ubuntu64/dotfiles|1|1693357766 | ||
/home/ubuntu64/Documents/PA/ics2022/fceux-am/nes/rom/README.md|1|1693279538 | ||
/usr/lib/ccache|2|1693302520 | ||
/home/ubuntu64/Documents/PA/ics2022/init.sh|2.9|1693201187 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io|21.1762|1693150884 | ||
/home/ubuntu64/Documents/test/courseLearn.htm?courseId=271005|1|1692762784 | ||
/home/ubuntu64/Documents/test/test.py|4.7887|1692672966 | ||
/usr/lib/apt/methods|4.7887|1692698366 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/test.sh|5.19762|1692939410 | ||
/usr/lib/apt/methods/https|2.5|1692697783 | ||
/home/ubuntu64/.vim/colors|3.83446|1692673569 | ||
/mnt/cdrom|2|1693281621 | ||
/home/ubuntu64/Documents/test/tooooogu.github.io/.git/hooks/pre-commit.sample|3.55301|1692896514 | ||
/usr|3.55301|1693302635 | ||
/usr/local|4.56988|1692277604 | ||
/home/ubuntu64/.gnupg/pubring.kbx|1|1693149451 | ||
/home/ubuntu64/Documents/test/learn.html|8.45623|1692777986 | ||
/media|3.83446|1693283907 | ||
/usr/local/go|2|1692277597 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Many programs use the GNU Readline library for their command-line interface. Readline supports (basic) Vim emulation too, which can be enabled by adding the following line to the ~/.inputrc file | ||
set editing-mode vi |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# ~/.profile: executed by the command interpreter for login shells. | ||
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login | ||
# exists. | ||
# see /usr/share/doc/bash/examples/startup-files for examples. | ||
# the files are located in the bash-doc package. | ||
|
||
# the default umask is set in /etc/profile; for setting the umask | ||
# for ssh logins, install and configure the libpam-umask package. | ||
#umask 022 | ||
|
||
# if running bash | ||
if [ -n "$BASH_VERSION" ]; then | ||
# include .bashrc if it exists | ||
if [ -f "$HOME/.bashrc" ]; then | ||
. "$HOME/.bashrc" | ||
fi | ||
fi | ||
|
||
# set PATH so it includes user's private bin if it exists | ||
if [ -d "$HOME/bin" ] ; then | ||
PATH="$HOME/bin:$PATH" | ||
fi | ||
|
||
# set PATH so it includes user's private bin if it exists | ||
if [ -d "$HOME/.local/bin" ] ; then | ||
PATH="$HOME/.local/bin:$PATH" | ||
fi |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
-----BEGIN OPENSSH PRIVATE KEY----- | ||
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 | ||
-----END OPENSSH PRIVATE KEY----- |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCcahA7sQYaNEhsedC8VuzHm3XRZQ9tl0xhN1BBprd/nG/fnfQnq6rqo5y6Z1/4Pc2DXkWKlUMIh9seW1fHOywOC45Q3rV//T7fpiQNn+UBM2rcClKtgWSgJuVpfBf63PeMy45LKUat4jIOn1Wf+NdTIvyM+2mKBhFIwtC5KXDKZOyO0wZ9m/8ZhA6YUyeHRpzYD8qAvJcitgkhoAofZl9Lptge28GhKwBCGbsqya2UfFLQizA9TjgAJ5KbyNU0bR+vIqFaK4FbfEN0e7mUgod2QjCcQKnIO4M1RFicayxlQMO5DrEDw3C4pZ41UUCb9Vmm5qmkhl7d0zypxZhvZ9uOvdEXr90xJDL8MA45IBpvgfIJSKBqw9lpyVoSXDBZ2G+S/Iq+cwBXh3AqSz1DXaYuudN/xiAGl8bycU2mR7KCz9NrhYu6PudmOlvQaOcn0vD8QP5L1fMFf8WVQ/EPr2eLnZL+A/wI3spHvTvh0kzcDM+OtM2j5uNREp8Ii+ibKe0= [email protected] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|1|ml571W3Dl+KGr4BDqGOZRHLZH6Q=|YvB+EkZqRw/+8VhI6mVHQrS4E7Y= ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl | ||
|1|6gj23x5MI+zd4785LeFgy8tb030=|24HM6h8VEyuIQ5cEisdzi+k5mhg= ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCj7ndNxQowgcQnjshcLrqPEiiphnt+VTTvDP6mHBL9j1aNUkY4Ue1gvwnGLVlOhGeYrnZaMgRK6+PKCUXaDbC7qtbW8gIkhL7aGCsOr/C56SJMy/BCZfxd1nWzAOxSDPgVsmerOBYfNqltV9/hWCqBywINIR+5dIg6JTJ72pcEpEjcYgXkE2YEFXV1JHnsKgbLWNlhScqb2UmyRkQyytRLtL+38TGxkxCflmO+5Z8CSSNY7GidjMIZ7Q4zMjA2n1nGrlTDkzwDCsw+wqFPGQA179cnfGWOWRVruj16z6XyvxvjJwbz0wQZ75XK5tKSb7FNyeIEs4TT4jk+S4dhPeAUC5y+bDYirYgM4GC7uEnztnZyaVWQ7B381AK4Qdrwt51ZqExKbQpTUNn+EjqoTwvqNj4kqx5QUCI0ThS/YkOxJCXmPUWZbhjpCg56i+2aB6CmK2JGhn57K5mj0MNdBXA4/WnwH6XoPWJzK5Nyu2zB3nAZp+S5hpQs+p1vN1/wsjk= | ||
|1|VsKwlkEQmpT/aq/5LxxRk7adM4A=|BsNL0qH8IiROfjylxZvVizJQFgI= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg= |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|1|ml571W3Dl+KGr4BDqGOZRHLZH6Q=|YvB+EkZqRw/+8VhI6mVHQrS4E7Y= ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl |
Oops, something went wrong.