├── .gitignore ├── .idea ├── .gitignore ├── Crawler4Caida.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md └── daily.log /.gitignore: -------------------------------------------------------------------------------- 1 | # can ignore all directories and files in a directory 2 | ./.idea/* 3 | ./.idea/workspace.xml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Crawler4Caida.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### 路虽远,行则将至;事虽难,做则必成 2 | >Although the road is long, as long as you start to walk, you will definitely reach it; although things are difficult, as long as you start to do it, you will definitely complete it. --- Wayne 20230803 -------------------------------------------------------------------------------- /daily.log: -------------------------------------------------------------------------------- 1 | Understand yourself in order to better understanding others. --- Wayne 20230802 2 | Never give up on a dream just because of the time it will take to accomplish it. --- Wayne 20230803 --------------------------------------------------------------------------------