├── .gitignore ├── .no-sublime-package ├── ContestHandler.py ├── ContestHandlers ├── codeforces.py ├── codeforces_submit.py └── handler_info.py ├── Cpp_Intellij_Sense.py ├── Default (Linux).sublime-keymap ├── Default (OSX).sublime-keymap ├── Default (Windows).sublime-keymap ├── Default.sublime-commands ├── FastOlympicCoding (Linux).sublime-settings ├── FastOlympicCoding (OSX).sublime-settings ├── FastOlympicCoding (Windows).sublime-settings ├── Highlight ├── CppVarHighlight.py ├── compile.html ├── cpp_styles.css ├── test_accdec.html ├── test_config.html ├── test_edit.html ├── test_interface.py ├── test_next.html ├── test_running.html ├── test_styles.css ├── test_styles_spacegray.css └── test_styles_spacegraylight.css ├── Main.sublime-menu ├── Modules ├── ClassPregen │ └── ClassPregen.py └── ProcessManager.py ├── NumberSpliter.py ├── README.md ├── README_EXT.html ├── ScreenShots ├── ClassComplete.gif ├── ClassComplete.png ├── CppLint.png ├── Debugger.png ├── FastPregen.gif ├── Stress.gif ├── Stress.png ├── TestManager.gif └── TestManager.png ├── StressSyntax.sublime-syntax ├── TestSyntax.sublime-settings ├── TestSyntax.sublime-syntax ├── cmp_sense └── .settings ├── debuggers ├── Cpp_OSX_Debugger.py ├── debugger_info.py └── debugod.py ├── dependencies.json ├── icons ├── arrow_left.png ├── arrow_right.png ├── line.png ├── next.png └── timelapse │ ├── 1x │ ├── timekek.png │ └── timelapse.png │ └── 2x │ └── baseline_timelapse_white_18dp.png ├── olympic_funcs.py ├── settings.py ├── stress_manager.py ├── test_edit.py └── test_manager.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/.gitignore -------------------------------------------------------------------------------- /.no-sublime-package: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ContestHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ContestHandler.py -------------------------------------------------------------------------------- /ContestHandlers/codeforces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ContestHandlers/codeforces.py -------------------------------------------------------------------------------- /ContestHandlers/codeforces_submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ContestHandlers/codeforces_submit.py -------------------------------------------------------------------------------- /ContestHandlers/handler_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ContestHandlers/handler_info.py -------------------------------------------------------------------------------- /Cpp_Intellij_Sense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Cpp_Intellij_Sense.py -------------------------------------------------------------------------------- /Default (Linux).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Default (Linux).sublime-keymap -------------------------------------------------------------------------------- /Default (OSX).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Default (OSX).sublime-keymap -------------------------------------------------------------------------------- /Default (Windows).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Default (Windows).sublime-keymap -------------------------------------------------------------------------------- /Default.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Default.sublime-commands -------------------------------------------------------------------------------- /FastOlympicCoding (Linux).sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/FastOlympicCoding (Linux).sublime-settings -------------------------------------------------------------------------------- /FastOlympicCoding (OSX).sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/FastOlympicCoding (OSX).sublime-settings -------------------------------------------------------------------------------- /FastOlympicCoding (Windows).sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/FastOlympicCoding (Windows).sublime-settings -------------------------------------------------------------------------------- /Highlight/CppVarHighlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Highlight/CppVarHighlight.py -------------------------------------------------------------------------------- /Highlight/compile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Highlight/compile.html -------------------------------------------------------------------------------- /Highlight/cpp_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Highlight/cpp_styles.css -------------------------------------------------------------------------------- /Highlight/test_accdec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Highlight/test_accdec.html -------------------------------------------------------------------------------- /Highlight/test_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Highlight/test_config.html -------------------------------------------------------------------------------- /Highlight/test_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Highlight/test_edit.html -------------------------------------------------------------------------------- /Highlight/test_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Highlight/test_interface.py -------------------------------------------------------------------------------- /Highlight/test_next.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Highlight/test_next.html -------------------------------------------------------------------------------- /Highlight/test_running.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Highlight/test_running.html -------------------------------------------------------------------------------- /Highlight/test_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Highlight/test_styles.css -------------------------------------------------------------------------------- /Highlight/test_styles_spacegray.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Highlight/test_styles_spacegray.css -------------------------------------------------------------------------------- /Highlight/test_styles_spacegraylight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Highlight/test_styles_spacegraylight.css -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Main.sublime-menu -------------------------------------------------------------------------------- /Modules/ClassPregen/ClassPregen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Modules/ClassPregen/ClassPregen.py -------------------------------------------------------------------------------- /Modules/ProcessManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/Modules/ProcessManager.py -------------------------------------------------------------------------------- /NumberSpliter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/NumberSpliter.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/README.md -------------------------------------------------------------------------------- /README_EXT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/README_EXT.html -------------------------------------------------------------------------------- /ScreenShots/ClassComplete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ScreenShots/ClassComplete.gif -------------------------------------------------------------------------------- /ScreenShots/ClassComplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ScreenShots/ClassComplete.png -------------------------------------------------------------------------------- /ScreenShots/CppLint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ScreenShots/CppLint.png -------------------------------------------------------------------------------- /ScreenShots/Debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ScreenShots/Debugger.png -------------------------------------------------------------------------------- /ScreenShots/FastPregen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ScreenShots/FastPregen.gif -------------------------------------------------------------------------------- /ScreenShots/Stress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ScreenShots/Stress.gif -------------------------------------------------------------------------------- /ScreenShots/Stress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ScreenShots/Stress.png -------------------------------------------------------------------------------- /ScreenShots/TestManager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ScreenShots/TestManager.gif -------------------------------------------------------------------------------- /ScreenShots/TestManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/ScreenShots/TestManager.png -------------------------------------------------------------------------------- /StressSyntax.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/StressSyntax.sublime-syntax -------------------------------------------------------------------------------- /TestSyntax.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/TestSyntax.sublime-settings -------------------------------------------------------------------------------- /TestSyntax.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/TestSyntax.sublime-syntax -------------------------------------------------------------------------------- /cmp_sense/.settings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debuggers/Cpp_OSX_Debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/debuggers/Cpp_OSX_Debugger.py -------------------------------------------------------------------------------- /debuggers/debugger_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/debuggers/debugger_info.py -------------------------------------------------------------------------------- /debuggers/debugod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/debuggers/debugod.py -------------------------------------------------------------------------------- /dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/dependencies.json -------------------------------------------------------------------------------- /icons/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/icons/arrow_left.png -------------------------------------------------------------------------------- /icons/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/icons/arrow_right.png -------------------------------------------------------------------------------- /icons/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/icons/line.png -------------------------------------------------------------------------------- /icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/icons/next.png -------------------------------------------------------------------------------- /icons/timelapse/1x/timekek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/icons/timelapse/1x/timekek.png -------------------------------------------------------------------------------- /icons/timelapse/1x/timelapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/icons/timelapse/1x/timelapse.png -------------------------------------------------------------------------------- /icons/timelapse/2x/baseline_timelapse_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/icons/timelapse/2x/baseline_timelapse_white_18dp.png -------------------------------------------------------------------------------- /olympic_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/olympic_funcs.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/settings.py -------------------------------------------------------------------------------- /stress_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/stress_manager.py -------------------------------------------------------------------------------- /test_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/test_edit.py -------------------------------------------------------------------------------- /test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jatana/FastOlympicCoding/HEAD/test_manager.py --------------------------------------------------------------------------------