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))
23-09
I opened up the push button dial of the t65, utter and complete confusion. I need to just stay with it for a second to understand what pin does what. Also seems to be a lot of different parts connected together? I could have just did the Sassie thing and adjusted the Hertz settings to match the buttons instead of the rotary dial.
Next up is the thread wiring.
I need:
solder, third hands
microcontroller
adapter
cables
exacto knife
I am going to write proper PMOMMs and record my process there. This should be only note taking
pmomm notes
postpartum depression from releasing a project.
subscription models
why do we want to own things
what if you had a baby - you nurture the baby not shape it - your input is valued - copyright comes in the house and yells at the baby -
what if it changes me as a person through time and space
birth certf-
Git workshop notes
"at the expense of simplicity"
software with an attitude?
Git is the software, git-lab-hub-ea is the platform
https://git.xpub.nl/XPUB/git_workshop/src/branch/main/NOTES.md - workshop link
Dr Git wrote the git code.
"social media of code"
Important for git:
-> you can work and decide on whats public
-> offline access
-> push means publish
-> p2p "for me trust is just knowing the person im taking the code from." - torvalds/mm
-> decentralised, federated, etc.
are we recreating something we wanted to eliminate at first
my git workshop:
https://handmade-web.net/exercises/class-site.html
GitHub is Microsoft booo
choose license
README defailt
✅initialise repo
Default Branch -> main (used to be master)
No blank spaces in the title
example:
https://diversions.constantvzw.org/wiki/index.php?title=Main_Page
here is me:
copy SSH link and got o terminal
cd into folder:
git clone https://git.xpub.nl/sevgi/MY_FIRST_GIT.git
now its in a folder on your laptop
edit the file -- > subl/nano READ.md
its fucking vim : <esc> :wq <enter> to save and exit
change code editor: https://docs.github.com/en/get-started/git-basics/associating-text-editors-with-git
https://git-scm.com/book/en/v2/Appendix-C:-Git-Commands-Setup-and-Config
important git subcommands:
git clone URL
git log
git status
git add
git commit
git push
git pull