User:Sevgi/Grad Notes
notes and such
Piblitheque notes
tuktuk->lib server->connect and download pdf locally.
colportage
/:8080 is the file sharing #, change it for less trouble
myth of XPPL
https://github.com/janeczku/calibre-web > supports mp3, video as well
taxonomy vs folksonomy vs fauxonomy
we used the tags for the Code of Conduct of 404.xpub
https://pad.xpub.nl/p/Fediverse_Moderation
https://calibre.constantvzw.org/
how do you modify the titres of makers: contributors vs authors, etc.
https://index.simonbrowne.biz/
.csv : title, category, category, category,
https://neutrinet.be/en/brique
http://whoosh.readthedocs.io/en/latest/intro.html
Datamosh workshop notes
Lexie showed us how to use Audacity as a file type converter basically. It is so interesting to listen to the files imo.
Didn't work really well in my case but this python script worked very well:
import random
for y in range(60): #range = number of files
with open('1.jpg', "rb") as f:
b = bytearray(f.read())
for x in range(20): #range = number of bytes shuffled
b[random.randint(0,len(b)-1)] = random.randint(0,255)
with open(f'filename2{y+1}.jpg', "wb") as f:
f.write(bytes(b))