├── .idea ├── .gitignore ├── awesome-programming-resources.iml ├── checkstyle-idea.xml ├── compiler.xml ├── git_toolbox_prj.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml └── README.md /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogerRain/awesome-programming-resources/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/awesome-programming-resources.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogerRain/awesome-programming-resources/HEAD/.idea/awesome-programming-resources.iml -------------------------------------------------------------------------------- /.idea/checkstyle-idea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogerRain/awesome-programming-resources/HEAD/.idea/checkstyle-idea.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogerRain/awesome-programming-resources/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/git_toolbox_prj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogerRain/awesome-programming-resources/HEAD/.idea/git_toolbox_prj.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogerRain/awesome-programming-resources/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogerRain/awesome-programming-resources/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogerRain/awesome-programming-resources/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogerRain/awesome-programming-resources/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogerRain/awesome-programming-resources/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DogerRain/awesome-programming-resources/HEAD/README.md --------------------------------------------------------------------------------