Hi guys,
Recently I developed a CLI tool for C++ programmers on Codeforces, and also for my own use.
A CLI tool to speed up testing process during contests of Codeforces.
It helps you to manage test cases and do regression test.
Now it is only for C++ programmer using vim under unix-family env.
If you are interested about this CLI tool, please refer to this github repo link: https://github.com/IvanJobs/cf
Auto comment: topic has been updated by IvanJobs (previous revision, new revision, compare).
Nice tool! I've made something similar, BTW.
But I don't think many people will use such tools because they got used to their own workflows. But your effort isn't useless because you could encourage some people to make such tool for themselves.
Some thoughts about the code:
Thx, Yep, I developed it mainly for myself as a C++ programmer, hope to inspire many others:) You advice is good. I will remove bin from the repo and think about remove hard coding of g++ compiling script and use CMake or Makefile instead. I also noticed that current comand style with just options is not elegant enough, I will change it to subcommand style too.
I hope making it was a valuable learning experience for you. Here you are my suggestions so that you can learn even more from it.
Good advice! I have tried to fix these problems.