commit e579647724904e30aa0664e8cdca9905792022d7 Author: Castro0o Date: Tue Mar 31 11:56:04 2020 +0200 si11 first commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..f08429a --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# SI 11 website repostory + +The website is collectively written in/from the pads: +* https://pad.xpub.nl/p/publication11_HTML +* https://pad.xpub.nl/p/publication11_CSS + +the shell script `makewebsite.sh` runs a curl command every 5secods, pulling the content of the pad to index.html +* run it: `./makewebsite.sh` + +When you want to create a commit of the website: +* `git add -u` +* `git commit -m "what changes happened here"` + + + diff --git a/index.html b/index.html new file mode 100644 index 0000000..54184e7 --- /dev/null +++ b/index.html @@ -0,0 +1,213 @@ + + + + + S.I.XI + + + + + + +
+

S.I.XI — Documentation

+
+ + + + + +
+ +
+

BASH script


A BASH (Born Again SHell) script is a series of commands stored in a text file. It contains commands that one would use in command line and others. +We used BASH scripts to automatically upload batches of files including metadata to the Wiki. +

+ for n, _file in enumerate(lsimgs): + pagename = f'{dirname}-{_file}' + print_colormsg(pagename, level='ok') + page = site.pages[_file] +

+ if page.exists: + url = page.imageinfo['descriptionurl'] + print_colormsg( + f'Already exists in {url} Will NOT be uploaded', + level='warning') + else: + img_smw_prop_val = smw_propval_template.render( + title=args.title, + date=args.date, + part=n + 1, + partof=len(lsimgs), + creator=(', ').join(args.creator[1:]), + organization=(', ').join(args.org[1:]), + format=(', ').join(args.format[1:]), + event=(', ').join(args.event[1:]), + topic=(', ').join(args.topic[1:]), + language=(', ').join(args.language[1:]) + ) +
+

+
+ +

Dark Web


The Dark Web is a portion of the Internet that is not indexed by search engines. Users need "specific software, configurations, or authorization to access" to be able to use it. This shelter of anonymity is of great importance while dealing with censorship and privacy concerns. It is also a haven for criminal activities. Tor browser is probably the most famous tool used to access the dark web. +The Dark Web serves us with the protective layers to make sure the location of the servers and the identity of all participants is secure in the case of possible attempts of persecution of whatever kind.

+

Tor Browser


Using the Tor Browser helps prevent others from tracking your browsing behavior and user details like location. It is provided by the Tor project, a non-profit organization. It works by routing all your internet traffic trough random nodes, listed in the Tor network and thus rendering the origin of it unrecognizable. +It is probably the most famous tool used to access the Dark Web. +

+
+ +

Imagemagick


Image Magick is a free Command-line tool. It comes with extensive functions to edit and convert images. +We used Image Magic to convert multipage PDFs into individual JPGs to upload to the Wiki. +

+ convert -quality 100 -density 300 [name-of-pdf] %02d.jpg +
+

+
+ +

Pandoc


Pandoc is a free Command-line tool used to convert from one markup format into different a one. +We used Pandoc in the process of converting documents written in markdown into html and later into a print layout(?). + +

+ pandoc -f markdown -t html + pandoc input.md -o output.html +
+

+
+ +

Tesseract


Tesseract is a free "optical character recognition" (OCR) engine and was supposedly the fist of its kind. It recognizes text within images and outputs either text or a PDF containing the image and selectable, searchable text laid over it. +Tesseract is of great use and essential to provide a comprehensive overview when working with a big batch of scanned documents. The quality of the results depends very much on the quality of the documents and thus can result in the need for large-scale revisions. +

+ tesseract input.jpg output_file pdf +
+

+
+ +

MediaWiki


MediaWiki, the basis for Wikipedia and most other MediaWiki websites, is a free and open-source "collaboration and documentation" platform engine. Wiki markup is the language used to write content on wiki website. +MediaWiki served us as a platform for many users to handle large amounts of image files and metadata. It features helpful tools to do so, like edit forms, semantic queries and an API. +

+ = 4.Session= + * '''Reading:''' 'The archives of the future: Rise up ye dead' + ** Speaking about the collections made + ** Speaking about ways of tagging / categorizing the material +
+

+
+ +

Raspberry Pi


Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

+

Code of Conduct


We created a code of conduct to make sure we were on the same page about the fundamentals of our regular interactions as a group. It served as a reference on how to approach each other and helped prevent avoidable unconstructive conflict. +

+
    +
  • Listen don’t interrupt
  • +
  • Listen actively - Show you’ve understood
  • +
  • If you don’t agree, you can still accept
  • +
  • When negotiating, be convivial (be nice!)
  • +
  • Ask what is needed before you give
  • +
  • If personal issues arise, try to address/resolve - if not park it for the sake of the project
  • +
  • When you don’t understand, ask for help (be humble)
  • +
  • Be aware of the space you take (Check temperature - silence is OKAY!)
  • +
  • Before making a decision, check with others (might be an unhappy average)
  • +
  • Speak for yourself and your own experience (see links: nonviolent communication)
  • +
  • Use „AND“ instead of „BUT“ and „HOWEVER“
  • +
  • These rules can be modified by consensus
  • +
+
+

+
+ +

Obtaining background knowledge


When exposed to content that might exceed your personal capacities due to a lack of prior knowledge, there are several possible approaches to compensate for this issue. Basic research - on- or offline - is obviously the first step to develop understanding of complex facts. Talking about the facts as a group and/or collectively reading texts on the topic can help in the process. If possible, the best way to develop a deeper understanding, is to get in touch with experts and/or witnesses and, in the best case, to conduct an interview or even organize a meeting as a group or a workshop on the topic. Also taking as many different points of view, even if you don’t agree with them, is imperative to create a differentiated opinion of a complex matter. +

+
+ + + + +
+ + + +
+ + diff --git a/makewebsite.sh b/makewebsite.sh new file mode 100755 index 0000000..e1f2149 --- /dev/null +++ b/makewebsite.sh @@ -0,0 +1,7 @@ +#!/bin/sh +while true; +do sleep 5; + curl https://pad.xpub.nl/p/publication11_HTML/export/txt > index.html; +done + +