-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
299 lines (258 loc) · 10 KB
/
index.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<!DOCTYPE html>
<meta charset="utf-8">
<title>spacet.me Labs</title>
<meta name="description" content="spacet.me Labs is @dtinth's playground with Web APIs.">
<meta property="og:description" content="spacet.me Labs is @dtinth's playground with Web APIs.">
<link href="https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet" />
<link href="/stylesheets/css.css" rel="stylesheet" />
<meta name="viewport" content="initial-scale=1">
<body>
<div id="deoverflower">
<div id="everything">
<div class="spacer"></div>
<div class="perspective">
<div class="box">
<h1>Welcome to spacet<span class='the-dot'>.</span>me Labs</h1>
</div>
</div>
<div class="container">
<div class="perspective">
<div class="box">
<p class="tagline">
spacet<span class="the-dot">.</span>me Labs is <span style="color: #8b8685">@</span><a style="color: #d7fc70; text-decoration: none" href="https://dt.in.th">dtinth</a>'s playground
showcasing many small experiments using Web APIs.
</p>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://sheet.spacet.me/">sheet.spacet.me</a></h2>
<p>Quickly turn Google Sheets into a public, CDN-backed JSON endpoint.
</p>
<ul class="items">
<li><a href="https://vercel.com/">Vercel</a></li>
<li><a href="https://github.com/dtinth/sheet.spacet.me">→ GitHub</a></li>
<li class="date">Released: 2021-07-15</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://pitch.spacet.me/">pitch.spacet.me</a></h2>
<p>A simple application which graphs the sound pitch from the microphone.
Uses pitchy.js to detect pitch. Also available as a <a href="https://chrome.google.com/webstore/detail/tuner/aljjbggdbpfcefnliggdhejickokofej">Chrome Extension</a>.
</p>
<ul class="items">
<li><a href="https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html">Web Audio API</a></li>
<li><a href="https://github.com/dtinth/pitch.spacet.me">→ GitHub</a></li>
<li class="date">Released: 2021-06-08</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://1hz.spacet.me/">1hz.spacet.me</a></h2>
<p>Your computer speakers making buzzing sound? This little tool plays a quiet 1hz sine wave.
It is inaudible to human ear but may stop your speakers from picking up the mains hum.
</p>
<ul class="items">
<li><a href="https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html">Web Audio API</a></li>
<li><a href="https://github.com/dtinth/1hz">→ GitHub</a></li>
<li class="date">Released: 2020-12-14</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://capture.the.spacet.me/">capture.the.spacet.me</a></h2>
<p>A personal web page screenshotting service.
It exposes an API that I can use to generate screenshots of web pages.
By personal I mean only I can use it.
But it is open source, and you can run your own instance.
</p>
<ul class="items">
<li><a href="https://pptr.dev/">Puppeteer</a></li>
<li><a href="https://vercel.com/">Vercel</a></li>
<li><a href="https://github.com/dtinth/personal-puppeteer">→ GitHub</a></li>
<li class="date">Released: 2020-11-04</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://img.spacet.me/">img.spacet.me</a></h2>
<p>Y’know, it’s 2020 and some services still don’t let you upload images, instead asking for an image URL.
This little web application lets you upload a file to Google Drive.
Once uploaded, the sharing settings will automatially be changed to “Anyone with the link can view,”
and a direct URL to the file is generated for you, ready for copying.
</p>
<ul class="items">
<li><a href="https://github.com/google/google-api-javascript-client">Google APIs</a></li>
<li><a href="https://github.com/dtinth/img">→ GitHub</a></li>
<li class="date">Released: 2020-04-08</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://tailwind.spacet.me/">tailwind.spacet.me</a></h2>
<p>Having trouble memorizing all the utility classes in Tailwind?
Remembered the CSS code, but did not remember which is the corresponding Tailwind CSS utility class?
Search for it here!
</p>
<ul class="items">
<li><a href="https://vuejs.org/">Vue.js</a></li>
<li><a href="https://github.com/dtinth/tailwind-search">→ GitHub</a></li>
<li class="date">Released: 2020-04-05</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://vox.spacet.me/">vox.spacet.me</a></h2>
<p>A simple web-based voice recorder. This web app lets you record your voice and save it as an WAV file.
</p>
<ul class="items">
<li><a href="https://webrtc.org/">WebRTC</a></li>
<li><a href="https://github.com/dtinth/voice-recorder">→ GitHub</a></li>
<li class="date">Released: 2020-01-18</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://json.spacet.me/">json.spacet.me</a></h2>
<p>Dead simple JSON viewer
</p>
<ul class="items">
<li><a href="https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API">Web Clipboard API</a></li>
<li><a href="https://github.com/dtinth/jsonviewer">→ GitHub</a></li>
<li class="date">Released: 2019-08-13</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://midi-rtc.spacet.me/">midi-rtc.spacet.me</a></h2>
<p>Send and receive MIDI messages over WebRTC, powered by PeerJS.
</p>
<ul class="items">
<li><a href="https://webrtc.org/">WebRTC</a></li>
<li><a href="https://www.w3.org/TR/webmidi/">Web MIDI API</a></li>
<li><a href="https://github.com/dtinth/midi-rtc">→ GitHub</a></li>
<li class="date">Released: 2019-07-19</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://random.spacet.me/">random.spacet.me</a></h2>
<p>A natural language experiment.
This web application generates random text in Thai language, based on some corpus,
such as the entire lyrics of Bodyslam's song, or the Thai translation of
the Romance of the Three Kingdoms (I've never read it, by the way).
</p>
<ul class="items">
<li><a href="http://www.w3.org/TR/workers/">Web Workers</a></li>
<li><a href="https://github.com/spacetme/random">→ GitHub</a></li>
<li class="date">Released: 2014-11-14</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://bpm.spacet.me/">bpm.spacet.me</a></h2>
<p>A simple web app to find out the tempo of a song (in BPM, beats-per-minute) by tapping to the beat.
</p>
<ul class="items">
<li><a href="https://github.com/dtinth/bpm">→ GitHub</a></li>
<li class="date">Released: 2014-06-07</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://highlight.spacet.me/">highlight.spacet.me</a></h2>
<p>A quick and dirty tool that lets me add syntax-highlighted code to Google Docs.
Paste in your code, select a language and color theme, and copy out the highlighted code.
The copied data can be pasted into Google Docs.
</p>
<ul class="items">
<li><a href="https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API">Web Clipboard API</a></li>
<li><a href="https://github.com/spacetme/highlight">→ GitHub</a></li>
<li class="date">Released: 2014-06-02</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://dance.spacet.me/">Instant Dancefloor</a></h2>
<p>Inspired by <a href="http://www.youtube.com/watch?v=HzQf_t_p4ns">this video</a>,
this web application will turn almost any music into an electronic dance music,
by adding drum beats and a synthesized bassline.
<em>Please use Google Chrome.</em>
</p>
<ul class="items">
<li><a href="https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html">Web Audio API</a></li>
<li><a href="https://github.com/spacetme/dance">→ GitHub</a></li>
<li class="date">Released: 2014-04-21</li>
</ul>
</div>
</div>
</div>
<div class="perspective">
<div class="box">
<div class="experiment">
<h2><a href="https://voicetype.spacet.me/">voicetype</a></h2>
<p>A simple dictation utility. Now you can type with your voice on any OS.
<em>Currently only works with Google Chrome.</em>
</p>
<ul class="items">
<li><a href="https://dvcs.w3.org/hg/speech-api/raw-file/tip/speechapi.html">Web Speech API</a></li>
<li><a href="https://github.com/spacetme/voicetype">→ GitHub</a></li>
<li class="date">Released: 2014-03-17</li>
</ul>
</div>
</div>
</div>
<!-- div class="perspective">
<div class="box">
<div class="about">
<h2>About</h2>
<p>spacet<span class="the-dot">.</span>me Labs makes web applications
that utilizes cutting edge HTML5 technologies.
It contains one member, <a href="http://dt.in.th/">Thai Pangsakulyanont</a>.</p>
</div>
</div>
</div -->
</div>
<div class="spacer"></div>
</div>
</div>
<script src="/javascripts/perspective.js"></script>
</body>