forked from LafeLabs/trashbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooks.html
87 lines (54 loc) · 2.54 KB
/
books.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--
TRASH MAGIC
EVERYTHING IS PHYSICAL
EVERYTHING IS FRACTAL
EVERYTHING IS RECURSIVE
NO MONEY
NO MINING
NO PROPERTY
LOOK AT THE FUNGI
LOOK AT THE INSECTS
LANGUAGE IS HOW THE MIND PARSES REALITY
All Code, text, art, media, technology, and ideas CC0 PUBLIC DOMAIN
-->
<link href="data:image/x-icon;base64,AAABAAEAEBAQAAEABAAoAQAAFgAAACgAAAAQAAAAIAAAAAEABAAAAAAAgAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//wAA4A8AAO/vAADqrwAA6q8AAOqvAADqrwAA6q8AAOqvAADqrwAA7+8AAMAHAADf9wAAwAcAAPu/AAD4PwAA" rel="icon" type="image/x-icon" />
<!--Stop Google:-->
<META NAME="robots" CONTENT="noindex,nofollow">
<title>TRASH MAGIC</title>
<script src = "trashmagic.js"></script>
<link rel="stylesheet" href="trashmagic.css">
</head>
<body>
<div id = "mainscroll">
<a href = "webeditor.html">WEB CODE EDITOR</a>
<a href = "https://github.com/lafeLabs/trashnet">TRASHNET SERVER REPLICATOR AT GITHUB.COM</a>
<a href = "copy.php?from=distro.html&to=index.html">COPY DISTRO PAGE INTO INDEX.HTML</a>
<a href= "index.html">HOME</a>
<a href = "qrcode.html">QR CODES</a>
<h1>TRASH MAGIC LITTLE FREE BOOK LIBRARY</h1>
<p>
Gather books. Put them in the Library to share.
</p>
<p>To create a TRASHNET little free library, make a TRASHNET server using the instructions linked above to the Gihtub, and create a subdomain for the library which points to a folder in "/var/www/html" on the server. Copy this page "index.html". Create a symbolic link using the linux command ln to make a desktop shortcut for the books folder so that it is easy to find as you post books to the folder. Create signs which point to the URL for your library(choose an easy to use subdomain), and add QR codes using the links for that.</p>
<pre>
ln -s /var/www/html/sloanslakedotart/books ~/Desktop/sloanslakebooks
</pre>
<h1>BOOKS</h1>
<div id = "books"></div>
</div>
<script>
googleyeyes(8);
titles = document.getElementsByTagName("H1");
for(var index = 0;index < titles.length;index++){
rainbowstring(titles[index]);
}
rainbow(document.getElementsByTagName("A"));
//create a folder called "books" below this one, and put the books in there.
listfiles(document.getElementById("books"),"books");
</script>
</body>
</html>