Mark R. Woodward
Mark R. Woodward is an American academic and author of Islam in Java.
He conducted ethnographic research in the Yogyakarta Indonesia region in the New Order era.
Critical response
Islam in Java elicited a range of responses due to its diverging from Clifford Geertz's observations of almost 30 years before in East Java.[1]
gollark: It's kind of bad.
gollark: ```python#!/bin/env python3chars = [chr(n) for n in range(126)]firstchar = chars[0]lastchar = chars[len(chars) - 1]def increment_char(character): return chr(ord(character) + 1)def old_increment_string(string_to_increment): reversed_string = list(reversed(string_to_increment)) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed(reversed_string)))def increment_string(to_increment): reversed_string = list(to_increment) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed_string))def string_generator(): length = 0 while 1: length += 1 string = chars[0] * length while True: try: string = increment_string(string) except IndexError: # Incrementing has gone out of the char array, move onto next length break yield string```
gollark: Except it enumerates all possible ASCII strings instead.
gollark: I made that!
gollark: no.
References
- Nakamura Mitsuo (1990) Islam in Java: Normative Piety and Mysticism in the Sultanate of Yogyakarta. The Journal of Asian Studies, Vol. 49, No. 3 (Aug., 1990), pp. 717-719
Publications
- Woodward, Mark R. (1989) Islam in Java : normative piety and mysticism in the sultanate of Yogyakarta University of Arizona Press, Tucson: Monographs of the Association for Asian Studies ; no. 45. ISBN 0-8165-1103-9 (alk. paper)
- Suwarno, Peter (1999) Dictionary of Javanese proverbs and idiomatic expressions with a foreword by Mark R. Woodward Yogyakarta, Indonesia : Gadjah Mada University Press. ISBN 979-420-452-8
- Lukens-Bull, Ronald and Mark Woodward (2011) “Goliath and David in Gaza: Indonesian myth-building and conflict as a cultural system.” Contemporary Islam: Dynamics of Muslim Life 5:1-17
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.