User:Tisa/proto: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
Line 142: Line 142:
touch -> ?
touch -> ?


get into the xpubpi, write: ssh xpubpi (and then write your password of the ssh key).
get into the xpubpi, write: '''ssh xpubpi''' (and then write your password of the ssh key).


find if the program is installed (within cygwin) -> which ''git''
find if the program is installed (within cygwin) -> which ''git''


What is [https://en.wikipedia.org/wiki/Git GIT]? Version-control system. Keeping track of versions while creating, mostly used for plain-text (also images (especially vector, binary images), sound etc.) Usage of git -> Seeing the differences between versions.
What is [https://en.wikipedia.org/wiki/Git GIT]? Version-control system. Keeping track of versions while creating, mostly used for plain-text (also images (especially vector, binary images), sound etc.) Usage of git -> Seeing the differences between versions.
check [http://p2pdesignstrategies.parcodiyellowstone.it/methodologies.html this] out #todo
To practice: created a folder named: Website (home/TisaNeza/website), within it two files (open with sublime text) named: html.index (can be opened in the browser to follow the changes) & style.css.
Some CSS ref [https://www.w3schools.com/cssref/ here].
initiate GIT -> git init
follow up commands to start versioning (on paper -> git cheat sheat) ''commit'' is a version
git status
git add <file>
git commit -m "''write something''"
git log
rm -> remove
-r -> delete a directory





Revision as of 16:16, 30 September 2019

Session #1 [16-9-2019] -> https://pad.xpub.nl/p/prototyping-20190916

Poortgebouw Autonomous Archive -> automated publications. https://aa.xpub.nl/index.php?title=Main_Page

Live hacks - special issue #7, entreprecariat, inspirational quote machine. http://pzwiki.wdka.nl/mediadesign/Motivational_messages#Motivational_messages_-_work_groups

Memories of the fist use of computers: Encarta encyclopedia, the sound of dial-up internet.

Experimental publishing. How I explain: "The meaning of publishing is not as in book publishing [založništvo], but a search for a public. How to get into contact with diverse publics/public bodies, through the use of interdisciplinary medias."

http://pzwiki.wdka.nl/mediadesign/Unix_Sandbox

Prehistory of UNIX - a lot of users interacting with a single machine. Batch process before - one person is the administrator of the machine. then: Multics dumb terminal, optimising the time of the machine, merry go around mode.

http://web.mit.edu/multics-history/

Thompson & Richie -> principles of Multics -> UNIX (1969). (programs that do one thing). UNIX wasn't commercialised, but spread around users etc. Versions appear (BSD), other independant versions. Minix version (1987, NL). Linus Trovald (1991, FIN) - Linux (he licenses it under GPL).

Richard Stallman - GNU - GPL: General Public License. Free software definition. He makes a version of Unix, without the sourcecode of atnt.

NexTSTEP -...> Mac OS

> Raspberry Pi (UK) = a server for us, a "sandbox". Pi IP: 145.24.139.127 We are users of the machine - "shared hosting", handled by an administrator. me: https://hub.xpub.nl/sandbox/~tisa/ https://en.wikipedia.org/wiki/Command-line_interface windows - unix - translation - difference : https://www.lemoda.net/windows/windows2unix/windows2unix.html combining programs together into a "workflow" (via text).

TUTORIAL: http://www.ee.surrey.ac.uk/Teaching/Unix/unix2.html control+c -> cancels stuff. pwd -> print working directory ->where am i? ls -> list all present data. touch name.txt -> create a file. remove -> rm name.txt -> delete a file. make directory (folder)-> mkdir myfolder /ali/ mkdir "my folder" remove all the files inside (a dangerous one) -> rm-r "my folder" acces manual -> ? search within the manual -> \x exit manual -> q ? ssh -> secure shell

~ -> shortcut for home / -> basis of the file system ls . ls .. ls ../.. -> root

echo "x"-> repeats what is said before. echo "x" > name.txt cat -> prints out the content of the file.

| -> pipe

| wall -> broadcast text messages between users.

figlet OR toilet OR cowsay OR cowthink - ascii --gay, --metal -> colours

lp -> it is a line printer

echo "printing" | toilet > /dev/usb/lp0

> /dev/usb/lp0 -----> reach the printer

apt search nekineki -> išči aplikacije

ček dis out;: stegosuite/stable 0.8.0-2 all steganography tool to hide information in image files

--tts -> text to speech

festival = text to speech program.

HOMEWORKKKK:

how you put the files on the Pi? create new biographies from existant. (as in: artybollocks.com) tool: dadadodo (https://mirror.uncyc.org/wiki/Dadadodo) -> https://en.wikipedia.org/wiki/Markov_chain

LIST OF THINGS WE WANT TO KNOW¨! $todo

tool: sed 's(substitute)/kaj/sčim/g(globbal)' -> sed 's/i/1/g' ---> https://pad.xpub.nl/p/prototyping-20190916

scp -> secure copy

wget +?-> download. -------ni uspelo, ker je zahtevalo pi@[IP...]geslo!!! mv -> preimenuj

each person to have a specific directory -> public_html -> index.html 145.24.139.127index.html ->

echo "WHATEVER" >public_html/index.html

wget (+ stisni desni klik) move-> mv doge.jpg public_html src (location, source)

  1. kernel -> shell is an interface between the user and the kernel.

in public_html:

<html> <title> Tisa </title> <style> img { width: 400px;} body {color: white; background: black; } </style> </head>

<body>

<index.html>
<src="2.jpg">

</body>


<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> <><><><><><><><><><><><><><><><><><><><><>


Session #2 [30-9-2019] -> https://pad.xpub.nl/p/prototyping-20190930

GIT repository : Creating SSH (secure shell) keys. = a key and a lock. A ssh public key (admin knows, can exist in any of the machines you log in) and a ssh private key (individual, existing in only one, your machine). A private key can match several public keys(locks).
Example: http://oyoana.com/leaveamessage
(WHERE? -> /home/TisaNeza/.ssh/id_rsa)
list all (-a) in home directory (..) -> ls -a .. autocomplete -> tab keys. text editor: download, make it work (such as sublime text or brackets) #todo ~ -> home to see the hidden files -> ls -a

cat -> ? ne -> ? touch -> ?

get into the xpubpi, write: ssh xpubpi (and then write your password of the ssh key).

find if the program is installed (within cygwin) -> which git

What is GIT? Version-control system. Keeping track of versions while creating, mostly used for plain-text (also images (especially vector, binary images), sound etc.) Usage of git -> Seeing the differences between versions.

check this out #todo

To practice: created a folder named: Website (home/TisaNeza/website), within it two files (open with sublime text) named: html.index (can be opened in the browser to follow the changes) & style.css.

Some CSS ref here.

initiate GIT -> git init

follow up commands to start versioning (on paper -> git cheat sheat) commit is a version

git status
git add <file>
git commit -m "write something"

git log


rm -> remove -r -> delete a directory



<><><><><><><><><><><><><><><><><><><><><> THE LOVESTORY <><><><><><><><><><><><><><><><><><><><><>

I'm thinking on how to adapt or confront.
My field is not the Terminal, it is Command prompt.
All instructions are for mac OS.
Windows has not provided me with a nice view.

<><><><><><><>

In half-sleep watched this [19-9-2019]

<><><><><><><>

Dennis suggests [20-9-2019]:

- installing https://www.cygwin.com/

- Depending on the Windows version you could either try [[1]] > (> win 10).

-You could use the PZI raspberry pi prolly -or use a linux 'live image' on bootable USB stick to boot into linux without hurting windows.

<><><><><><><>

So, my decision [22-9-2019] seems to be to install Linux on a USB and run it.

So, what happens [23-9-2019] is that the Linux live (the non - stable one or how do you call this anyways?) makes the screen shiver, tilting it in randomized horizontal-vertical positions, surprisin, provoking a call of momentarity, a glimpse of a shock. It is said that this version of it does not remember, every installation would have to be made anew each time when running it. How is it like to not possess any memory? //So, can I empathize with a machine yet?//

<><><><><><><>

Prototyping #2 [30-9-2019]-> installed cygwin ($ apt-cyg install figlet) seems to work.