├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── ctechou.sty ├── share └── screenshot_techou_2022.gif ├── techou2023.tex └── tex ├── daily_tasks.tex ├── daily_time_table.tex ├── daily_time_table_2.tex ├── monthly_tasks.tex ├── quarterly_tasks.tex ├── weekly_tasks.tex └── yearly_tasks.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/README.md -------------------------------------------------------------------------------- /ctechou.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/ctechou.sty -------------------------------------------------------------------------------- /share/screenshot_techou_2022.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/share/screenshot_techou_2022.gif -------------------------------------------------------------------------------- /techou2023.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/techou2023.tex -------------------------------------------------------------------------------- /tex/daily_tasks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/tex/daily_tasks.tex -------------------------------------------------------------------------------- /tex/daily_time_table.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/tex/daily_time_table.tex -------------------------------------------------------------------------------- /tex/daily_time_table_2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/tex/daily_time_table_2.tex -------------------------------------------------------------------------------- /tex/monthly_tasks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/tex/monthly_tasks.tex -------------------------------------------------------------------------------- /tex/quarterly_tasks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/tex/quarterly_tasks.tex -------------------------------------------------------------------------------- /tex/weekly_tasks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/tex/weekly_tasks.tex -------------------------------------------------------------------------------- /tex/yearly_tasks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noinil/etechou/HEAD/tex/yearly_tasks.tex --------------------------------------------------------------------------------