Varia archive

See also:
β†’ logs
β†’ etherpads



sumtimes/
magiun.online/
infraschool.nl/
8m-2023/
2023-12-11-dishes-revolution/
2023-11-30-sometimes-not-available-transfeminist-digital-care-network/
2023-11-23-sometimes-not-available-la-bekka/
2023-11-13-artist-led-servers/
2023-10-27-colonial-infrastructures/
2023-07-12-Rotterdamse-Belhuizen/
2023-07-06-varia-afhaal/
2023-05-22-fhm-zine-library/
2023-05-06-CriTiCal-CirCulATioN-MI/
2023-05-01-space-wg/
2023-04-24-south-explorer-23/
2023-03-Hosting-with-others/
2023-02-12-Cyberfeminism-Index-Booklaunch/
2023-01-rosa-Constant-vitrine/
2023-01-Toward-a-Minor-Tech/
2022-12-3-4-Colonial_Infrastructures/
2022-12-16-WDKA-presents-Ex-Machina/
2022-12-08-Push-To-Talk-Partyline/
2022-12-04-Hunting-Mosquitos/
2022-11-5y-Varia-anniversary/
2022-11-26-Read_and_Repair-Dissecting_The_Game/
2022-11-25-Streaming-with-infrafem-broadcast/
2022-11-24-Feminist_Hack_Meetings-Mutual_Aid/
2022-11-21-All-Ears-for-Jina/
2022-10-publishing-partyline/
2022-10-27-Any_One_Day_The_Future_Has_Died/
2022-10-04-Volumetric-Regimes-booklaunch/
2022-09-24-Read_and_Repair-Poetry_and_Finance/
2022-09-17-16-Plaintext-Protocol-Partyline/
2022-08-27-Read_and_Repair-Vegetality_and_Virtuality/
2022-07-documenta15-harvesters/
2022-06-04-Feminist_Hack_Meetings-How_About_Access/
2022-05-27-In_Audible_Voices-CTM/
2022-03-ATNOFS-Varia/
2022-03-26-AWA-reading/
2022-03-23-ATNOFS-radio-broadcast/
2022-02-SomeTimes/
2021_televex/
2021-radmin/
2021-May-June-Digital-Solidarity-Networks/
2021-12-18-The_User_Condition_04_with_Dave_Young/
2021-12-17_Radio_Activity_Wireless_Orchestra/
2021-12-17-Vernaculars-come-to-matter-launch/
2021-12-17-Learning-How-to-Walk-While-Catwalking-launch-XPUB-Special-Issue/
2021-11-29_mirroring_ROOTS/
2021-10-29-Juan-Pablo-Dachen-Bao-Sami-Hammana/
2021-07-29-The_User_Condition_03_with_AnaΓ«lle_Beignon/
2021-06-27-Read-Repair/
2021-06-09-geveltuintje/
2021-05-20-Sonic-Liberation-Front/
2021-05-17-The_User_Condition_02_with_Brendan_Howell/
2021-05-0809-Plaintext-Partyline/
2021-04-17-Varia-klusdag/
2021-03-23-The_User_Condition_01/
2021-03-20-varia-windows/
2021-01+02-Read-and-Repair_Wireless-Imagination/
2020-20XX-Feminist-Hack-Meetings/
2020-10-14-WGBS-Archipelagic-Radio/
2020-08-27-radioee.net-wireless/
2020-04-18-we-hope-this-email-finds-you-well/
2019-09-Relearn-Paris/
2019-09-28-nooo2/
2019-06-Relearn/
2019-03-28-xpub-launch-networks-we-de-served/
2018-varia-windows/
2018-15-11-Choreo-Graphic-Hypothesis_Book_Launch/
2018-12-WttF-Mastodon-and-the-Fediverse/
2018-10-13-Life_Hacks_Space/
2018-06-02-fontein/
2018-06-01-wttf/
2018-05-19-Infinite_Outwardness/
2018-05-12-varia-open-day/
2018-04-17-CLM_and_Maria_Violenza/
2018-03-16.17-Algologs/
2018-03-10-It_Is_As_If_We_Were_Doing_Work/
2018-02-16-Extratonality/
2018-01-19-Nieuwjaarsborrel-Robomop/
2017-12-16-Soup_Talk_Inox_Kapell/
2017-11-03-Opening/
00_Narrowcast/
00-varia-server/


These pages are generated with Distribusi. 🌐 https://varia.zone

Varia archive

See also:
β†’ logs
β†’ etherpads



Makefile
To generate the archive, just run "make".
README.txt
#!/bin/bash

# A command line photograph EXIF comment inserter was built to annotate photo files inside the files themselves. 
# The tool also comes with a reader to go through the annotations in the terminal. See readcomments.sh. 
# https://git.vvvvvvaria.org/varia/EXIF-image-commenter

# How to use it?
# $ sh addcaptions.sh [foldername]

for f in $(ls $1); do

	# First display the image ...

	# Check if Chafa is installed, otherwise use feh
	if ! [ -x "$(command -v chafa)" ]; then
		feh $1/$f
	else
		chafa $1/$f
	fi

	# Then read the current comment of this image ...

	CURRENT=$(exiftool -S -Comment $1/$f | sed 's/[^ ]* //')
	echo "Currently this image is described as: $CURRENT"

	# Ask if the comment should be changed ...

	read -p "Would you like to edit this comment? [y/n] " choice

	case "$choice" in
		y|Y ) read -p "Please enter your new comment: " comment ;;
		n|N ) echo "Oke" && comment=$CURRENT;;
		* ) echo "Sorry that is invalid. Please choose y or n.";;
	esac

	# Save the new comment into the exif data

	exiftool $1/$f -overwrite_original -Comment="$comment"
done
addcaptions.sh
#!/bin/bash

# A command line photograph EXIF comment reader was built to inspect the annotations of photo files inside the files themselves. 
# The tool also comes with a writing script to add the annotations to the files. See addcomments.sh. 
# https://git.vvvvvvaria.org/varia/EXIF-image-commenter

# How to use it?
# $ sh readcaptions.sh [foldername]

for f in $(ls $1); do
	CURRENT=$(exiftool -S -Comment $1/$f | sed 's/[^ ]* //')
	echo "$f $CURRENT"
done
readcaptions.sh
stylesheet.css


These pages are generated with Distribusi. 🌐 https://varia.zone