ADDED Makefile Index: Makefile ================================================================== --- Makefile +++ Makefile @@ -0,0 +1,27 @@ +REFS=refs.bib +RAWBIB=refs.md +PROCBIB=docs/bib.md + +.PHONY: publish clean serve purge +site: build + +build: clean $(PROCBIB) + mkdocs build +publish: build + fossil uv add `find site` + fossil uv sync +clean: + rm -f $(PROCBIB) + find -name '*~' | xargs -r rm +serve: + mkdocs serve +purge: + fossil uv ls | xargs fossil uv rm {} + rm -rf site/ + +$(PROCBIB): $(REFS) $(RAWBIB) + pandoc -C \ + --bibliography=$(REFS) \ + $(RAWBIB) \ + -t markdown_strict \ + -o $@ ADDED default.nix Index: default.nix ================================================================== --- default.nix +++ default.nix @@ -0,0 +1,9 @@ +with import {}; +stdenv.mkDerivation rec { + name = "env"; + env = buildEnv { name = name; paths = buildInputs; }; + buildInputs = [ + haskellPackages.pandoc + mkdocs + ]; +} ADDED docs/index.md Index: docs/index.md ================================================================== --- docs/index.md +++ docs/index.md @@ -0,0 +1,69 @@ +# ECER + +## Course Information + +This course revolves around data: what it consists of, what it can say and do, how to handle it responsibly, who defines it and who is defined by it. In our approach to each of these questions, we will combine ethical reflection with practical application of skills and tools. We will pay special attention to new forms of data generated in and by digital technologies, which are now nearly ubiquitous in ethnographic field sites and our own research practice. + +**Code** +: 6491av2et + +**ECTS** +: 5.0 + +**Level** +: 100 + +**Period** +: Semester 2, Block 2 + +## Instructors + +| Name | Email | +|-----------------------------------------|-----------------------------------------| +| [John Boy, PhD](https://www.jboy.space) | | +| Anne Veens | | +| Ruben Reus | | +| Shajeela Shawkat | | +| Tim van de Meerendonk | | +| Wiebe Ruijtenberg | | +| Willem van Wijk | | + +## Lecture Dates + +| session | date | time | location | +|:-------:|:----------:|:------------:|:--------:| +|    1 | **Apr 12** | 13:15--13:00 | online | +|    2 | **Apr 19** | 13:15--13:00 | online | +|    3 | **Apr 26** | 13:15--13:00 | online | +|    4 | **May 10** | 13:15--13:00 | online | +|    5 | **May 17** | 13:15--13:00 | online | + +**Note:** There is *no lecture* on May 3. *All times CET unless otherwise noted.* + +Please consult [MyTimetable 🐓][rooster] for the schedule of your tutorial sessions. + +## Assessment + +Assessment in this class is based on individual and group assignments. + +## Readings + +The required book for this class is Kimberly Kay Hoang, _Dealing in Desire_ (University of California Presss, 2015). It is available electronically through the university library catalog. + +Other required and supplementary readings will be [available for download][readings-link]. + +## Academic Integrity + +This class adheres to Leiden University's [regulations on academic integrity][plagiarism-rules]. According to the university, "Plagiarism is understood as presenting, intentionally or otherwise, someone else's words, thoughts, analyses, argumentations, pictures, techniques, computer programmes, etc., as your own work." + +We will refer **all suspected violations** of these regulations to the examination committee. Be careful to **properly cite** all works you draw on in your assignments. The University Library offers [tutorials and advice][lib-tutorials] on what and how to cite. + +## Changes + +This syllabus is a living document and may be adapted as the course progresses. You can keep track of changes in the [timeline][]. + +[rooster]: https://rooster.universiteitleiden.nl +[readings-link]: https://surfdrive.surf.nl/files/index.php/s/EfzhBGe2M1G5vy5 +[plagiarism-rules]: https://www.organisatiegids.universiteitleiden.nl/en/regulations/general/plagiarism +[lib-tutorials]: https://www.library.universiteitleiden.nl/students/citing +[timeline]: https://code.jboy.space/ecer/timeline ADDED mkdocs.yml Index: mkdocs.yml ================================================================== --- mkdocs.yml +++ mkdocs.yml @@ -0,0 +1,21 @@ +site_name: Ethics in Contemporary Ethnographic Research +use_directory_urls: false +nav: + - Home: 'index.md' + - Weeks: + - 'week/1.md' + - 'week/2.md' + - 'week/3.md' + - 'week/4.md' + - 'week/5.md' + - Assignments: + - 'assignment/1.md' + - 'assignment/2.md' + - 'assignment/3.md' + - Bibliography: 'bib.md' +markdown_extensions: + - smarty + - def_list + +plugins: + - search ADDED refs.bib Index: refs.bib ================================================================== --- refs.bib +++ refs.bib @@ -0,0 +1,18 @@ +@book{Hoang2015, + author = {Kimberly Kay Hoang}, + title = {Dealing in Desire}, + subtitle = {Asian Ascendancy, Western Decline, and the Hidden Currencies of Global Sex Work}, + address = {Oakland, Calif.}, + publisher = {University of California Press}, + year = {2015}, +} +@incollection{LeGuin1973, + author = {Ursula K. {Le Guin}}, + title = {The Ones Who Walk Away from {O}melas}, + booktitle = {New Dimensions 3}, + editor = {Robert Silverberg}, + address = {Garden City, N.\,Y.}, + publisher = {Nelson Doubleday}, + year = {1973}, + pages = {1--8}, +} ADDED refs.md Index: refs.md ================================================================== --- refs.md +++ refs.md @@ -0,0 +1,5 @@ +--- +nocite: '@*' +--- + +# References