diff --git a/staff/.sconsign.dblite b/staff/.sconsign.dblite index d0c3cd6..d4cc07f 100644 Binary files a/staff/.sconsign.dblite and b/staff/.sconsign.dblite differ diff --git a/staff/SConstruct.py b/staff/SConstruct.py index 3a8b845..3e4d461 100644 --- a/staff/SConstruct.py +++ b/staff/SConstruct.py @@ -1,10 +1,17 @@ -from pathlib import Path +import os +# from pathlib import Path - -img = Path("images") -for src in img.glob("*.png"): - # print (src) - target = img / f"{src.stem}-320x.webp" - # print (target) - Command(f"{target}", f"{src}", action="convert -resize 320x $SOURCE $TARGET") - # Command(, f"{src}") \ No newline at end of file +for root, dirs, files in os.walk("."): + for f in files: + print ("f", f) + base, ext = os.path.splitext(f) + if ext[1:].lower() in ("png", "jpg"): + src = os.path.join(root, f) + target = os.path.join(root, base + "-320x.webp") + Command(f"{target}", f"{src}", action="convert -resize 320x $SOURCE $TARGET") +# img = Path("images") +# for src in img.glob("*.png"): +# # print (src) +# target = img / f"{src.stem}-320x.webp" +# # print (target) +# # Command(, f"{src}") \ No newline at end of file diff --git a/staff/marloes/SudDeutscheZeitung_portrait-bw-320x.webp b/staff/marloes/SudDeutscheZeitung_portrait-bw-320x.webp new file mode 100644 index 0000000..9da69eb Binary files /dev/null and b/staff/marloes/SudDeutscheZeitung_portrait-bw-320x.webp differ diff --git a/staff/marloes/SudDeutscheZeitung_portrait-bw.jpg b/staff/marloes/SudDeutscheZeitung_portrait-bw.jpg new file mode 100755 index 0000000..74c7b18 Binary files /dev/null and b/staff/marloes/SudDeutscheZeitung_portrait-bw.jpg differ diff --git a/staff/staff.md b/staff/staff.md index 179eb04..6a32ade 100644 --- a/staff/staff.md +++ b/staff/staff.md @@ -3,19 +3,55 @@ ## Steve Rushton -[![](images/ProfileSteveR-320x.webp)](images/ProfileSteveR.png) +[![](steve/ProfileSteveR-320x.webp)](steve/ProfileSteveR.png) Steve Rushton is a writer and editor based in Rotterdam. Rushton’s publications include *Experience, Memory, Re-enactment*, 2005 (co-editor); *The Milgram Re-enactment*, 2003 (contributing editor) *Masters of Reality* (2011). He has written essays and stories for numerous artists’ publications. He has collaborated with a number of artists and writers, including Rod Dickinson, Thomson & Craighead, Everything Editorial and Dexter Sinister. He is a co-founder of the research group Signal:Noise (2010-12), which investigated the prevalence of notions of feedback in contemporary culture. His ongoing project, a wiki entitled *The Fabulous Loop de Loop, a cybernetic discourse as read through seven feedback machines* (2020-present), builds on these interests -**Current project (perpetually ![](images/Construction.gif) in-process)** *The Fabulous Loop de Loop* - +**Current project (perpetually ![](images/Construction.gif) in-process)** *The Fabulous Loop de Loop* + **A few past projects** *Closed Circuit*: (article related to) - -(video clip of) - -*Short Film About War*: - - + +(video clip of) + +*Short Film About War*: + + + +## Marloes de Valk + +![Photo by: Lichtgut/Oliver Willikonsky](marloes/SudDeutscheZeitung_portrait-bw-320x.webp) + +Marloes de Valk (NL) is a software artist and writer in the post-despair +stage of coping with the threat of global warming and being spied on by +the devices surrounding her. Surprised by the obsessive dedication with +which we, even post-Snowden, share intimate details about ourselves to +an often not too clearly defined group of others, astounded by the +deafening noise we generate while socializing with the technology around +us, she is looking to better understand why. + +She is a PhD researcher at the [Centre for the Study of the Networked +Image at London South Bank University](https://www.centreforthestudyof.net/), in collaboration with [The +Photographer's Gallery](https://thephotographersgallery.org.uk/), looking into the material and social impact of +the networked image on the climate crisis, with special attention to the +entanglements between greenwashing - the misdirection of attention and +efforts in tackling the crisis - and the increasing energy and resource +consumption associated with the circulation of networked images. Typical +of those in the post-despair stage, she experiments with sustainable +ways of publishing her findings. + +Marloes has participated in exhibitions internationally, teaches +workshops, gives lectures (a.o. at Transmediale and Chaos Communication +Congress) and has published articles on Free/Libre/Open Source Software, +free culture, art and technology (a.o. in the Contemporary Music Review +and Artnodes). In 2018 she was the winner of the Hash Award, an +international production award granted by ZKM and Akademie Schloss +Solitude. As a member of artist collective GOTO10, she has helped +develop the puredyne GNU/Linux distribution and Make Art festival. +Together with Aymeric Mansoux she is editor of the publication +FLOSS+Art, published early 2009. She is part of Plutonian Corp., La +Société Anonyme and Iodine dynamics. + + diff --git a/staff/images/Construction.gif b/staff/steve/Construction.gif similarity index 100% rename from staff/images/Construction.gif rename to staff/steve/Construction.gif diff --git a/staff/images/ProfileSteveR-320x.webp b/staff/steve/ProfileSteveR-320x.webp similarity index 100% rename from staff/images/ProfileSteveR-320x.webp rename to staff/steve/ProfileSteveR-320x.webp diff --git a/staff/images/ProfileSteveR.png b/staff/steve/ProfileSteveR.png similarity index 100% rename from staff/images/ProfileSteveR.png rename to staff/steve/ProfileSteveR.png