User:Manetta/metaphors-at-the-internet: Difference between revisions

From XPUB & Lens-Based wiki
 
Line 1: Line 1:
= metaphors at the internet =
= metaphors at the internet =
(...)


== annotations ==
[[File:Meta-metaphors_data-mining.gif|thumbnail|right|300px|mining]]
[[File:Internet-metaphor-stickers.gif|thumbnail|right|300px|set of metaphor-stickers for the Internet]]<br>
[[File:A4-sticker-templates-final01.jpg|thumbnail|right|300px|sticker-template: 'raw materials & transformations']]<br>
[[File:A4-sticker-templates-final02.jpg|thumbnail|right|300px|sticker-template: 'motion & experience']]<br>
[[File:A4-sticker-templates-final03.jpg|thumbnail|right|300px|sticker-template: 'local & global']]<br>


[https://juhles.titanpad.com/19? notes on the etherpad, by julie and manetta]
== links ==


* [https://juhles.titanpad.com/19? notes on the etherpad]
* [http://pzwart1.wdka.hro.nl/~jules/meta-metaphors/interface/index.html interface for metaphor database]


[[User:Manetta/metaphors-at-the-internet/reference-cooper | metaphor reference: the Myth of the Metaphor - Alan Cooper (1995)]]<br>
== 'x if as it where y'==
[[User:Manetta/metaphors-at-the-internet/reference-wyatt | metaphor reference: Danger! Metaphors at Work in Economics, Geophysiology, and the Internet - Sally Wyatt (2004)]]<br>
[[File:Meta-metaphors_stickers-overview.png|600px]]
[[User:Manetta/metaphors-at-the-internet/reference-vanderboomen | metaphor reference: Transcoding the Digital, How Metaphors Matter in New Media - Marianne van den Boomen (2014)]]<br>


== setting up ssh + git to work in spreadsheet on server ==
=== ssh ===
[https://wiki.debian.org/SSH#Installation_of_the_client link to documentation on setting up ssh connection]


* Remote login '''With password'''


ssh $remote_user@$remote_host
== annotations ==


If the usernames on the local and the remote computer are identical, you can drop the $remote_user@-part and simply write
[[User:Manetta/metaphors-at-the-internet/reference-cooper | metaphor reference: the Myth of the Metaphor - Alan Cooper (1995)]]<br>
 
[[User:Manetta/metaphors-at-the-internet/reference-wyatt | metaphor reference: Danger! Metaphors at Work in Economics, Geophysiology, and the Internet - Sally Wyatt (2004)]]<br>
ssh $remote_host
[[User:Manetta/metaphors-at-the-internet/reference-vanderboomen | metaphor reference: Transcoding the Digital, How Metaphors Matter in New Media - Marianne van den Boomen (2014)]]<br>
 
 
* Remote login '''Using shared keys'''
 
To generate the key, use the program ssh-keygen as follows
 
ssh-keygen -t rsa
 
This program generates a pair of private/public keys in the directory ~/.ssh. The program first asks for the destination files for the keys, by default located in ~/.ssh. Afterwards a passphrase is requested.
 
Note: We recommend not to leave the passphrase empty. An attacker who gets hold of your private key can otherwise connect to the hosts where you deposited you public key since the passphrase is empty. Choose a long and complex passphrase.
 
You private key is id_rsa (don't give it to someone else), the public key is id_rsa.pub.
 
You copy your public key to a remote host with the command ssh-copy-id
 
ssh-copy-id -i ~/.ssh/id_rsa.pub $remote_user@$remote_host
 
Now you can connect simply to the remote host and the passphase is asked for. Once done, you get connected to the remote host. In case of a new connection the passphrase does not get asked for again during your entire session.
 
 
 
=== git ===
[http://git-scm.com/book/en/v1/Git-on-the-Server-Getting-Git-on-a-Server link to documentation of getting git on a server]

Latest revision as of 13:17, 16 November 2015