├── .gitignore ├── README.md ├── algo ├── lectures │ ├── 2024-09-03.typ │ ├── 2024-09-10.typ │ ├── 2024-09-17.typ │ ├── 2024-09-24.typ │ ├── 2024-10-01.typ │ ├── 2024-10-08.typ │ ├── 2024-10-15.typ │ ├── 2024-11-05.typ │ ├── 2024-11-12.typ │ ├── 2024-11-19.typ │ ├── main.typ │ ├── run │ ├── zip-tree-insert-delete.jpg │ ├── zip-tree-skip-list.jpg │ └── Алгоритмы_Лекции.pdf └── seminars │ ├── 2024-09-09.typ │ ├── 2024-09-14.typ │ ├── 2024-09-21.typ │ ├── main.typ │ ├── run │ └── Алгоритмы_Семинары.pdf ├── android └── lectures │ ├── 2024-09-14.typ │ ├── Android_Лекции.pdf │ ├── main.typ │ └── run ├── bd └── lectures │ ├── 2025-01-17.typ │ ├── main.typ │ ├── run │ └── Базы_Данных_Лекции.pdf ├── cpp └── lectures │ ├── 2024-09-13.typ │ ├── 2024-09-20.typ │ ├── 2024-09-27.typ │ ├── 2024-10-04.typ │ ├── 2024-10-11.typ │ ├── 2024-10-18.typ │ ├── 2024-11-01.typ │ ├── C++_Лекции.pdf │ ├── main.typ │ └── run ├── edu ├── homeworks │ ├── book_review │ │ ├── main.typ │ │ ├── run │ │ └── Чубий_Взгляд_кролика_Эссе.pdf │ └── book_table │ │ ├── main.typ │ │ ├── run │ │ └── Чубий_Взгляд_кролика_Вопросы_по_книге.pdf ├── lectures │ ├── 2024-09-04.typ │ ├── 2024-09-11.typ │ ├── main.typ │ ├── run │ └── Современное_образование_Лекции.pdf └── seminars │ ├── 2024-09-11.typ │ ├── 2024-09-18.typ │ ├── 2024-09-25.typ │ ├── 2024-10-09.typ │ ├── 2024-10-16.typ │ ├── 2024-10-23.typ │ ├── 2024-11-06.typ │ ├── main.typ │ ├── run │ └── Совеменное_образование_Семинары.pdf ├── group_dynamics └── lectures │ ├── 2024-09-03.typ │ ├── main.typ │ ├── run │ └── Групповая_динамика_Лекции.pdf ├── kpo └── lectures │ ├── 2025-01-11.typ │ ├── main.typ │ ├── run │ └── Конструирование_прогаммного_обеспечения_Лекции.pdf ├── lang └── lectures │ ├── 2025-01-17.typ │ ├── main.typ │ ├── run │ └── Формальные_языки_и_автоматы_Лекции.pdf ├── notes ├── os ├── lectures │ ├── 2024-09-02.typ │ ├── 2024-09-09.typ │ ├── 2024-09-16.typ │ ├── 2024-09-23.typ │ ├── 2024-09-30.typ │ ├── 2024-10-07.typ │ ├── 2024-10-14.typ │ ├── 2024-10-21.typ │ ├── 2024-11-11.typ │ ├── 2024-11-25.typ │ ├── 2024-12-02.typ │ ├── 2024-12-16.typ │ ├── main.typ │ ├── process_states.svg │ ├── run │ └── Основы_операционных_систем_Лекции.pdf └── seminars │ ├── 2024-09-06.typ │ ├── 2024-09-13.typ │ ├── 2024-09-20.typ │ ├── main.typ │ ├── run │ └── Основы_операционных_систем_Семинары.pdf ├── prob ├── homeworks │ ├── main.typ │ ├── run │ ├── to-2024-09-16.typ │ ├── to-2024-09-23.typ │ ├── to-2024-09-30.typ │ ├── to-2024-10-07.typ │ ├── to-2024-10-13.typ │ └── Теория_Вероятностей_Домашние_задания.pdf ├── lectures │ ├── 2024-09-06.typ │ ├── 2024-09-13.typ │ ├── 2024-09-20.typ │ ├── 2024-09-27.typ │ ├── 2024-10-04.typ │ ├── 2024-10-11.typ │ ├── 2024-10-18.typ │ ├── 2024-11-01.typ │ ├── 2024-11-08.typ │ ├── 2024-11-15.typ │ ├── 2024-11-22.typ │ ├── 2024-11-29.typ │ ├── 2024-12-13.typ │ ├── cond_prob.svg │ ├── deutsche_mark_gauss.jpg │ ├── geom_prob.svg │ ├── hypotises.svg │ ├── main.typ │ ├── romeo.svg │ ├── run │ └── Теория_Вероятностей_Лекции.pdf └── seminars │ ├── 2024-09-09.typ │ ├── 2024-09-16.typ │ ├── 2024-09-23.typ │ ├── 2024-09-30.typ │ ├── 2024-10-07.typ │ ├── 2024-10-14.typ │ ├── 2024-11-11.typ │ ├── 2024-11-25.typ │ ├── func.svg │ ├── graph.svg │ ├── hystogram.svg │ ├── main.typ │ ├── run │ ├── scheme.svg │ └── Теория_Вероятностей_Семинары.pdf ├── stat ├── lectures │ ├── 2025-01-10.typ │ ├── 2025-01-17.typ │ ├── main.typ │ ├── run │ └── Математическая_Статистика_Лекции.pdf └── seminars │ ├── main.typ │ └── run └── utils ├── datestamp.typ ├── math.typ └── template.typ /.gitignore: -------------------------------------------------------------------------------- 1 | .stfolder 2 | .stignore 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/README.md -------------------------------------------------------------------------------- /algo/lectures/2024-09-03.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/2024-09-03.typ -------------------------------------------------------------------------------- /algo/lectures/2024-09-10.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/2024-09-10.typ -------------------------------------------------------------------------------- /algo/lectures/2024-09-17.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/2024-09-17.typ -------------------------------------------------------------------------------- /algo/lectures/2024-09-24.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/2024-09-24.typ -------------------------------------------------------------------------------- /algo/lectures/2024-10-01.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/2024-10-01.typ -------------------------------------------------------------------------------- /algo/lectures/2024-10-08.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/2024-10-08.typ -------------------------------------------------------------------------------- /algo/lectures/2024-10-15.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/2024-10-15.typ -------------------------------------------------------------------------------- /algo/lectures/2024-11-05.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/2024-11-05.typ -------------------------------------------------------------------------------- /algo/lectures/2024-11-12.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/2024-11-12.typ -------------------------------------------------------------------------------- /algo/lectures/2024-11-19.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/2024-11-19.typ -------------------------------------------------------------------------------- /algo/lectures/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/main.typ -------------------------------------------------------------------------------- /algo/lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/run -------------------------------------------------------------------------------- /algo/lectures/zip-tree-insert-delete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/zip-tree-insert-delete.jpg -------------------------------------------------------------------------------- /algo/lectures/zip-tree-skip-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/zip-tree-skip-list.jpg -------------------------------------------------------------------------------- /algo/lectures/Алгоритмы_Лекции.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/lectures/Алгоритмы_Лекции.pdf -------------------------------------------------------------------------------- /algo/seminars/2024-09-09.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/seminars/2024-09-09.typ -------------------------------------------------------------------------------- /algo/seminars/2024-09-14.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/seminars/2024-09-14.typ -------------------------------------------------------------------------------- /algo/seminars/2024-09-21.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/seminars/2024-09-21.typ -------------------------------------------------------------------------------- /algo/seminars/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/seminars/main.typ -------------------------------------------------------------------------------- /algo/seminars/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/seminars/run -------------------------------------------------------------------------------- /algo/seminars/Алгоритмы_Семинары.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/algo/seminars/Алгоритмы_Семинары.pdf -------------------------------------------------------------------------------- /android/lectures/2024-09-14.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/android/lectures/2024-09-14.typ -------------------------------------------------------------------------------- /android/lectures/Android_Лекции.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/android/lectures/Android_Лекции.pdf -------------------------------------------------------------------------------- /android/lectures/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/android/lectures/main.typ -------------------------------------------------------------------------------- /android/lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/android/lectures/run -------------------------------------------------------------------------------- /bd/lectures/2025-01-17.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/bd/lectures/2025-01-17.typ -------------------------------------------------------------------------------- /bd/lectures/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/bd/lectures/main.typ -------------------------------------------------------------------------------- /bd/lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/bd/lectures/run -------------------------------------------------------------------------------- /bd/lectures/Базы_Данных_Лекции.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/bd/lectures/Базы_Данных_Лекции.pdf -------------------------------------------------------------------------------- /cpp/lectures/2024-09-13.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/cpp/lectures/2024-09-13.typ -------------------------------------------------------------------------------- /cpp/lectures/2024-09-20.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/cpp/lectures/2024-09-20.typ -------------------------------------------------------------------------------- /cpp/lectures/2024-09-27.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/cpp/lectures/2024-09-27.typ -------------------------------------------------------------------------------- /cpp/lectures/2024-10-04.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/cpp/lectures/2024-10-04.typ -------------------------------------------------------------------------------- /cpp/lectures/2024-10-11.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/cpp/lectures/2024-10-11.typ -------------------------------------------------------------------------------- /cpp/lectures/2024-10-18.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/cpp/lectures/2024-10-18.typ -------------------------------------------------------------------------------- /cpp/lectures/2024-11-01.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/cpp/lectures/2024-11-01.typ -------------------------------------------------------------------------------- /cpp/lectures/C++_Лекции.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/cpp/lectures/C++_Лекции.pdf -------------------------------------------------------------------------------- /cpp/lectures/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/cpp/lectures/main.typ -------------------------------------------------------------------------------- /cpp/lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/cpp/lectures/run -------------------------------------------------------------------------------- /edu/homeworks/book_review/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/homeworks/book_review/main.typ -------------------------------------------------------------------------------- /edu/homeworks/book_review/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/homeworks/book_review/run -------------------------------------------------------------------------------- /edu/homeworks/book_review/Чубий_Взгляд_кролика_Эссе.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/homeworks/book_review/Чубий_Взгляд_кролика_Эссе.pdf -------------------------------------------------------------------------------- /edu/homeworks/book_table/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/homeworks/book_table/main.typ -------------------------------------------------------------------------------- /edu/homeworks/book_table/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/homeworks/book_table/run -------------------------------------------------------------------------------- /edu/homeworks/book_table/Чубий_Взгляд_кролика_Вопросы_по_книге.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/homeworks/book_table/Чубий_Взгляд_кролика_Вопросы_по_книге.pdf -------------------------------------------------------------------------------- /edu/lectures/2024-09-04.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/lectures/2024-09-04.typ -------------------------------------------------------------------------------- /edu/lectures/2024-09-11.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/lectures/2024-09-11.typ -------------------------------------------------------------------------------- /edu/lectures/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/lectures/main.typ -------------------------------------------------------------------------------- /edu/lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/lectures/run -------------------------------------------------------------------------------- /edu/lectures/Современное_образование_Лекции.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/lectures/Современное_образование_Лекции.pdf -------------------------------------------------------------------------------- /edu/seminars/2024-09-11.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/seminars/2024-09-11.typ -------------------------------------------------------------------------------- /edu/seminars/2024-09-18.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/seminars/2024-09-18.typ -------------------------------------------------------------------------------- /edu/seminars/2024-09-25.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/seminars/2024-09-25.typ -------------------------------------------------------------------------------- /edu/seminars/2024-10-09.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/seminars/2024-10-09.typ -------------------------------------------------------------------------------- /edu/seminars/2024-10-16.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/seminars/2024-10-16.typ -------------------------------------------------------------------------------- /edu/seminars/2024-10-23.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/seminars/2024-10-23.typ -------------------------------------------------------------------------------- /edu/seminars/2024-11-06.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/seminars/2024-11-06.typ -------------------------------------------------------------------------------- /edu/seminars/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/seminars/main.typ -------------------------------------------------------------------------------- /edu/seminars/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/seminars/run -------------------------------------------------------------------------------- /edu/seminars/Совеменное_образование_Семинары.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/edu/seminars/Совеменное_образование_Семинары.pdf -------------------------------------------------------------------------------- /group_dynamics/lectures/2024-09-03.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/group_dynamics/lectures/2024-09-03.typ -------------------------------------------------------------------------------- /group_dynamics/lectures/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/group_dynamics/lectures/main.typ -------------------------------------------------------------------------------- /group_dynamics/lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/group_dynamics/lectures/run -------------------------------------------------------------------------------- /group_dynamics/lectures/Групповая_динамика_Лекции.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/group_dynamics/lectures/Групповая_динамика_Лекции.pdf -------------------------------------------------------------------------------- /kpo/lectures/2025-01-11.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/kpo/lectures/2025-01-11.typ -------------------------------------------------------------------------------- /kpo/lectures/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/kpo/lectures/main.typ -------------------------------------------------------------------------------- /kpo/lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/kpo/lectures/run -------------------------------------------------------------------------------- /kpo/lectures/Конструирование_прогаммного_обеспечения_Лекции.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/kpo/lectures/Конструирование_прогаммного_обеспечения_Лекции.pdf -------------------------------------------------------------------------------- /lang/lectures/2025-01-17.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/lang/lectures/2025-01-17.typ -------------------------------------------------------------------------------- /lang/lectures/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/lang/lectures/main.typ -------------------------------------------------------------------------------- /lang/lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/lang/lectures/run -------------------------------------------------------------------------------- /lang/lectures/Формальные_языки_и_автоматы_Лекции.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/lang/lectures/Формальные_языки_и_автоматы_Лекции.pdf -------------------------------------------------------------------------------- /notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/notes -------------------------------------------------------------------------------- /os/lectures/2024-09-02.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/2024-09-02.typ -------------------------------------------------------------------------------- /os/lectures/2024-09-09.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/2024-09-09.typ -------------------------------------------------------------------------------- /os/lectures/2024-09-16.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/2024-09-16.typ -------------------------------------------------------------------------------- /os/lectures/2024-09-23.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/2024-09-23.typ -------------------------------------------------------------------------------- /os/lectures/2024-09-30.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/2024-09-30.typ -------------------------------------------------------------------------------- /os/lectures/2024-10-07.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/2024-10-07.typ -------------------------------------------------------------------------------- /os/lectures/2024-10-14.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/2024-10-14.typ -------------------------------------------------------------------------------- /os/lectures/2024-10-21.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/2024-10-21.typ -------------------------------------------------------------------------------- /os/lectures/2024-11-11.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/2024-11-11.typ -------------------------------------------------------------------------------- /os/lectures/2024-11-25.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/2024-11-25.typ -------------------------------------------------------------------------------- /os/lectures/2024-12-02.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/2024-12-02.typ -------------------------------------------------------------------------------- /os/lectures/2024-12-16.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/2024-12-16.typ -------------------------------------------------------------------------------- /os/lectures/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/main.typ -------------------------------------------------------------------------------- /os/lectures/process_states.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/process_states.svg -------------------------------------------------------------------------------- /os/lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/run -------------------------------------------------------------------------------- /os/lectures/Основы_операционных_систем_Лекции.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/lectures/Основы_операционных_систем_Лекции.pdf -------------------------------------------------------------------------------- /os/seminars/2024-09-06.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/seminars/2024-09-06.typ -------------------------------------------------------------------------------- /os/seminars/2024-09-13.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/seminars/2024-09-13.typ -------------------------------------------------------------------------------- /os/seminars/2024-09-20.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/seminars/2024-09-20.typ -------------------------------------------------------------------------------- /os/seminars/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/seminars/main.typ -------------------------------------------------------------------------------- /os/seminars/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/seminars/run -------------------------------------------------------------------------------- /os/seminars/Основы_операционных_систем_Семинары.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/os/seminars/Основы_операционных_систем_Семинары.pdf -------------------------------------------------------------------------------- /prob/homeworks/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/homeworks/main.typ -------------------------------------------------------------------------------- /prob/homeworks/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/homeworks/run -------------------------------------------------------------------------------- /prob/homeworks/to-2024-09-16.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/homeworks/to-2024-09-16.typ -------------------------------------------------------------------------------- /prob/homeworks/to-2024-09-23.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/homeworks/to-2024-09-23.typ -------------------------------------------------------------------------------- /prob/homeworks/to-2024-09-30.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/homeworks/to-2024-09-30.typ -------------------------------------------------------------------------------- /prob/homeworks/to-2024-10-07.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/homeworks/to-2024-10-07.typ -------------------------------------------------------------------------------- /prob/homeworks/to-2024-10-13.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/homeworks/to-2024-10-13.typ -------------------------------------------------------------------------------- /prob/homeworks/Теория_Вероятностей_Домашние_задания.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/homeworks/Теория_Вероятностей_Домашние_задания.pdf -------------------------------------------------------------------------------- /prob/lectures/2024-09-06.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-09-06.typ -------------------------------------------------------------------------------- /prob/lectures/2024-09-13.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-09-13.typ -------------------------------------------------------------------------------- /prob/lectures/2024-09-20.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-09-20.typ -------------------------------------------------------------------------------- /prob/lectures/2024-09-27.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-09-27.typ -------------------------------------------------------------------------------- /prob/lectures/2024-10-04.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-10-04.typ -------------------------------------------------------------------------------- /prob/lectures/2024-10-11.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-10-11.typ -------------------------------------------------------------------------------- /prob/lectures/2024-10-18.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-10-18.typ -------------------------------------------------------------------------------- /prob/lectures/2024-11-01.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-11-01.typ -------------------------------------------------------------------------------- /prob/lectures/2024-11-08.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-11-08.typ -------------------------------------------------------------------------------- /prob/lectures/2024-11-15.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-11-15.typ -------------------------------------------------------------------------------- /prob/lectures/2024-11-22.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-11-22.typ -------------------------------------------------------------------------------- /prob/lectures/2024-11-29.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-11-29.typ -------------------------------------------------------------------------------- /prob/lectures/2024-12-13.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/2024-12-13.typ -------------------------------------------------------------------------------- /prob/lectures/cond_prob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/cond_prob.svg -------------------------------------------------------------------------------- /prob/lectures/deutsche_mark_gauss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/deutsche_mark_gauss.jpg -------------------------------------------------------------------------------- /prob/lectures/geom_prob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/geom_prob.svg -------------------------------------------------------------------------------- /prob/lectures/hypotises.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/hypotises.svg -------------------------------------------------------------------------------- /prob/lectures/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/main.typ -------------------------------------------------------------------------------- /prob/lectures/romeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/romeo.svg -------------------------------------------------------------------------------- /prob/lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/run -------------------------------------------------------------------------------- /prob/lectures/Теория_Вероятностей_Лекции.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/lectures/Теория_Вероятностей_Лекции.pdf -------------------------------------------------------------------------------- /prob/seminars/2024-09-09.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/2024-09-09.typ -------------------------------------------------------------------------------- /prob/seminars/2024-09-16.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/2024-09-16.typ -------------------------------------------------------------------------------- /prob/seminars/2024-09-23.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/2024-09-23.typ -------------------------------------------------------------------------------- /prob/seminars/2024-09-30.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/2024-09-30.typ -------------------------------------------------------------------------------- /prob/seminars/2024-10-07.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/2024-10-07.typ -------------------------------------------------------------------------------- /prob/seminars/2024-10-14.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/2024-10-14.typ -------------------------------------------------------------------------------- /prob/seminars/2024-11-11.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/2024-11-11.typ -------------------------------------------------------------------------------- /prob/seminars/2024-11-25.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/2024-11-25.typ -------------------------------------------------------------------------------- /prob/seminars/func.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/func.svg -------------------------------------------------------------------------------- /prob/seminars/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/graph.svg -------------------------------------------------------------------------------- /prob/seminars/hystogram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/hystogram.svg -------------------------------------------------------------------------------- /prob/seminars/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/main.typ -------------------------------------------------------------------------------- /prob/seminars/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/run -------------------------------------------------------------------------------- /prob/seminars/scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/scheme.svg -------------------------------------------------------------------------------- /prob/seminars/Теория_Вероятностей_Семинары.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/prob/seminars/Теория_Вероятностей_Семинары.pdf -------------------------------------------------------------------------------- /stat/lectures/2025-01-10.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/stat/lectures/2025-01-10.typ -------------------------------------------------------------------------------- /stat/lectures/2025-01-17.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/stat/lectures/2025-01-17.typ -------------------------------------------------------------------------------- /stat/lectures/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/stat/lectures/main.typ -------------------------------------------------------------------------------- /stat/lectures/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/stat/lectures/run -------------------------------------------------------------------------------- /stat/lectures/Математическая_Статистика_Лекции.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/stat/lectures/Математическая_Статистика_Лекции.pdf -------------------------------------------------------------------------------- /stat/seminars/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/stat/seminars/main.typ -------------------------------------------------------------------------------- /stat/seminars/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/stat/seminars/run -------------------------------------------------------------------------------- /utils/datestamp.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/utils/datestamp.typ -------------------------------------------------------------------------------- /utils/math.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/utils/math.typ -------------------------------------------------------------------------------- /utils/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotfind/hse-se-2-notes/HEAD/utils/template.typ --------------------------------------------------------------------------------