├── .gitignore ├── LICENSE.md ├── README.md ├── docs ├── Makefile ├── abstract.md ├── abstraction.md ├── ai4se.md ├── analytics.md ├── cloud.md ├── doc.md ├── essay.md ├── ethics.md ├── goodrepo.md ├── hello.md ├── hw1.md ├── hw2345.md ├── hw4.md ├── hw5.md ├── hw6.md ├── license.md ├── patterns.md ├── people.md ├── proj1.md ├── proj2.md ├── require.md ├── review.md ├── syllabus.md └── testing.md └── etc ├── dotbashrc ├── h ├── img ├── 12steps.png ├── banner.png ├── chatGPT.png ├── cloud.png ├── eq.png ├── lectures.gif ├── ratio.png ├── review.gif ├── sneak.png ├── svm.webp ├── time.png └── wfo.png └── pdf ├── AI-Driven_Development_Is_Here_Should_You_Worry.pdf └── csv.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/abstract.md -------------------------------------------------------------------------------- /docs/abstraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/abstraction.md -------------------------------------------------------------------------------- /docs/ai4se.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/ai4se.md -------------------------------------------------------------------------------- /docs/analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/analytics.md -------------------------------------------------------------------------------- /docs/cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/cloud.md -------------------------------------------------------------------------------- /docs/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/doc.md -------------------------------------------------------------------------------- /docs/essay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/essay.md -------------------------------------------------------------------------------- /docs/ethics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/ethics.md -------------------------------------------------------------------------------- /docs/goodrepo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/goodrepo.md -------------------------------------------------------------------------------- /docs/hello.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/hello.md -------------------------------------------------------------------------------- /docs/hw1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/hw1.md -------------------------------------------------------------------------------- /docs/hw2345.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/hw2345.md -------------------------------------------------------------------------------- /docs/hw4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/hw4.md -------------------------------------------------------------------------------- /docs/hw5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/hw5.md -------------------------------------------------------------------------------- /docs/hw6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/hw6.md -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/patterns.md -------------------------------------------------------------------------------- /docs/people.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/people.md -------------------------------------------------------------------------------- /docs/proj1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/proj1.md -------------------------------------------------------------------------------- /docs/proj2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/proj2.md -------------------------------------------------------------------------------- /docs/require.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/require.md -------------------------------------------------------------------------------- /docs/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/review.md -------------------------------------------------------------------------------- /docs/syllabus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/syllabus.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/docs/testing.md -------------------------------------------------------------------------------- /etc/dotbashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/dotbashrc -------------------------------------------------------------------------------- /etc/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/h -------------------------------------------------------------------------------- /etc/img/12steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/img/12steps.png -------------------------------------------------------------------------------- /etc/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/img/banner.png -------------------------------------------------------------------------------- /etc/img/chatGPT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/img/chatGPT.png -------------------------------------------------------------------------------- /etc/img/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/img/cloud.png -------------------------------------------------------------------------------- /etc/img/eq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/img/eq.png -------------------------------------------------------------------------------- /etc/img/lectures.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/img/lectures.gif -------------------------------------------------------------------------------- /etc/img/ratio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/img/ratio.png -------------------------------------------------------------------------------- /etc/img/review.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/img/review.gif -------------------------------------------------------------------------------- /etc/img/sneak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/img/sneak.png -------------------------------------------------------------------------------- /etc/img/svm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/img/svm.webp -------------------------------------------------------------------------------- /etc/img/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/img/time.png -------------------------------------------------------------------------------- /etc/img/wfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/img/wfo.png -------------------------------------------------------------------------------- /etc/pdf/AI-Driven_Development_Is_Here_Should_You_Worry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/pdf/AI-Driven_Development_Is_Here_Should_You_Worry.pdf -------------------------------------------------------------------------------- /etc/pdf/csv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txt/se22/HEAD/etc/pdf/csv.pdf --------------------------------------------------------------------------------