-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
124 lines (109 loc) · 4.59 KB
/
about.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<!--
/********************************************************************
* Copyright (c) 2020, Douglas Campbell
* Licensed under the MIT License.
********************************************************************/
-->
<html lang="en" class="viewer">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About Cutdoc</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<style>
:root {
--background-color: #fafafa;
--foreground-color: #121212;
--accent-color: #ff5252;
}
body {
color: var(--foreground-color);
background-color: var(--background-color);
font-family: Raleway, Georgia, "Times New Roman", serif;
}
a:hover {
color: var(--accent-color);
}
h4,h5,h6 {
margin-top: 30px;
}
.emphasis {
font-weight: bold;
}
@media screen and (prefers-color-scheme: dark) {
:root {
--background-color: #121212;
--foreground-color: #fafafa;
}
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-80738444-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-80738444-4');
</script>
</head>
<body>
<!-- header -->
<div class="container">
<div class="row">
<div class="col-10 main-heading">
<h2>Cutdoc</h2>
</div>
<div class="col-2 text-right">
<a href="./">App</a>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12">
<h4>Why Cutdoc?</h4>
<p><span class="emphasis">Send a screen-free message</span></p>
<p>We stare at screens all day and read shorter and shorter messages. How's that working for your mental health?</p>
<p>People used to send special, personal letters to each other but there's a catch - you need to go outside to send them.</p>
<p>With Cutdoc you get the best of both worlds - send a digital letter, but it can <span class="emphasis">only</span> be read off-line.</p>
<p><img src="cutdoc-sample.jpg" alt="Cutdoc sample document" class="img-fluid" /></p>
<h4>To read a Cutdoc</h4>
<p>You need: a printer, scissors, sticky tape.</p>
<ol>
<li><span class="emphasis">Print</span> the Cutdoc PDF attachment out on paper</li>
<li><span class="emphasis">Cut</span> the page along the lines into long strips</li>
<li><span class="emphasis">Rearrange</span> the strips from 1 to 12 (use sticky tape to hold them together)</li>
<li><span class="emphasis">Read</span> your decoded document.</li>
</ol>
<h4>To make a Cutdoc</h4>
<p>You need: paper, pen or pencil, phone camera (or scanner).</p>
<ol>
<li><span class="emphasis">Write</span> a one-page letter on notepad or printer paper</li>
<li>Using this <a href="./">Cutdoc app</a> take a <span class="emphasis">Photo</span> of your page (so it fills up most of your camera screen)</li>
<li>Or <span class="emphasis">Scan</span> your page as a JPEG image using a scanner</li>
<li><span class="emphasis">'Cut'</span> your document in the app so the image is mixed up</li>
<li><span class="emphasis">Send</span> your Cutdoc PDF via email or message.</li>
</ol>
<h4>Tips</h4>
<p>Reading</p>
<ul>
<li>Have something pointy (pen or toothpick) handy to help nudge the strips into place.</li>
</ul>
<p>Making</p>
<ul>
<li>Use a pen that gives a smooth and thick line, like a Uniball</li>
<li>Check that the paper is flat (not curling) so your photo doesn't warp</li>
<li>Take the photo near a light (or use your phone's light) so the writing is clear</li>
<li>Move the camera closer so your writing almost touches the left and right edges of the screen.</li>
</ul>
<p>Unfortunately using a printer won't save the planet, but maybe you can help save someone you know or love.</p>
<p>Home: <a href="https://staplegun.github.io/cutdoc/">https://staplegun.github.io/cutdoc/</a>
<br />
<a href="https://github.com/staplegun/cutdoc/">Source code and issues</a></p>
</div>
</div>
</div>
</body>
</html>