Overview
Comment:initial check-in
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 403a2346ffef4ecaf3b0e653faa73e10666a37bdd15cc797fd6bc7d1288b57a2
User & Date: jboy on 2021-01-28 16:17:27
Other Links: manifest | tags
Context
2021-01-28
16:19
update course overview check-in: 983754afdb user: jboy tags: trunk
16:17
initial check-in check-in: 403a2346ff user: jboy tags: trunk
2020-11-16
15:01
initial empty check-in check-in: a63ef605f5 user: jboy tags: trunk
Changes

Added Makefile version [c047ab90f6].























































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 version [d47e05571e].



















>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
with import <nixpkgs> {};
stdenv.mkDerivation rec {
  name = "env";
  env = buildEnv { name = name; paths = buildInputs; };
  buildInputs = [
    haskellPackages.pandoc
    mkdocs
  ];
}

Added docs/index.md version [5b26055535].











































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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) | <j.d.boy@fsw.leidenuniv.nl>             |
| Anne Veens                              | <j.b.m.veens@fsw.leidenuniv.nl>         |
| Ruben Reus                              | <r.t.reus@fsw.leidenuniv.nl>            |
| Shajeela Shawkat                        | <s.s.shawkat@fsw.leidenuniv.nl>         |
| Tim van de Meerendonk                   | <t.van.de.meerendonk@fsw.leidenuniv.nl> |
| Wiebe Ruijtenberg                       | <w.d.ruijtenberg@fsw.leidenuniv.nl>     |
| Willem van Wijk                         | <w.l.van.wijk@fsw.leidenuniv.nl>        |

## 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 version [948d948f8c].











































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 version [8849fb3385].





































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 version [a8deb1cb7b].











>
>
>
>
>
1
2
3
4
5
---
nocite: '@*'
---

# References