diff --git a/slides/extended_minds/extended_mind.md b/slides/extended_minds/extended_mind.md new file mode 100644 index 0000000..326e6a6 --- /dev/null +++ b/slides/extended_minds/extended_mind.md @@ -0,0 +1,62 @@ +--- +title: +- The Extended Mind and Licensing +author: +- Malin + +theme: +- Warsaw +colortheme: +- orchid +--- + +# History + +- Started with Clark and Chalmers +- [Chalmers at Ted](https://yt.artemislena.eu/watch?v=ksasPjrYFTg) + +## Cyborg Manifesto + +Or maybe Donna Haraway? + +# Original Extended Minds + +- Notebooks +- Counting on fingers +- Fil-o-fax + +# Electronic Extended Minds + +- Phones +- Computers +- Google? +- Note-apps? + +# Intuition Pumps + +- Proprioception and teeth +- The feeling of loss over theft +- Second brains + +# Requirements + +- 'to-hand' +- Repetition +- Locus + +> Do you know where they live? + +# Counter Requirements + +> Skin and bone + +Does *Ghost in the Shell* count? + +# The Point and the Future + +![robocop](robocop_valuse.png) + +# End Notes + +> Can you code in the sand? + diff --git a/slides/extended_minds/robocop_valuse.png b/slides/extended_minds/robocop_valuse.png new file mode 100644 index 0000000..0dbc784 Binary files /dev/null and b/slides/extended_minds/robocop_valuse.png differ diff --git a/slides/vim/vim.md b/slides/vim/vim.md new file mode 100644 index 0000000..739c3dc --- /dev/null +++ b/slides/vim/vim.md @@ -0,0 +1,84 @@ +--- +title: +- RSA - vi improved +author: +- Malin + +theme: +- Warsaw +colortheme: +- orchid +--- + +# Myths, Half-Truths and Lies + +- You can get `vim`-keys in other programs + * Yea, nah +- `vim` [ is/ is not ] an IDE + * UNIX is the IDE +- `vim` is hard + * It's four commands! + +## Heresies + +> Emacs: "a great operating system, lacking only a decent editor" + +> `code`, because everything is a web browser. + +# `vim` is a Language + +- `d$` +- `y$` +- `dp` +- `dip` +- `di[` +- `vi[p` + +# Plugins: Just Don't + +``` + +/home/ghost/.vim +|-- doc +|   |-- completion.txt +|   |-- manet.txt +|   |-- tags +|-- plugin -> /home/ghost/.dots/mess/vim/plugin +|   |-- completion.vim +|   |-- manet.vim +|-- skel -> /home/ghost/.dots/mess/vim/skel +|   |-- bindAnimal.tex +|   |-- bindArtefact.tex +|   |-- bindCharacter.tex +|   |-- wod_vampire.tex +|-- spell + |-- en.utf-8.add + |-- en.utf-8.add.spl + |-- sr.utf-8.spl + +``` + +# Tricks + +## Remote Editing + +> vim scp://*user*@*myserver*[:*port*]//*path/to/file.txt* + +## File Navigation + +```bash +vim . +``` + +## Tabs + +```bash +vim -p .bash* +``` +## Literally Anything + + +```bash +r!fortune +``` +