-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
505 lines (473 loc) · 22.2 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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
<!DOCTYPE html>
<html lang="en">
<head>
<title>I/O Web Resource</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--
Shift-Ctrl-Space is a keyboard command that, in numerous
word processing applications such as LibreOffice Writer,
Microsoft Word, and even Dreamweaver, inserts a literal
non-breaking space character. This is a true Unicode
character with its own registered code point: U+00A0. The
non-breaking space looks identical to a regular space,
with one important distinction. When displayed correctly,
the non-breaking space tells the renderer not to collapse
multiple extents of this specific character in whitespace
into one regular space.
This makes the non-breaking space character effectively
invisible when on its own, but gives it a very pronounced
and visible behavior when they are grouped together.
This is how we make space to shift control from dystopic
nightmares of surveillance capitalism to a more holistic,
optimistic technological future.
Welcome to Shift-Ctrl-Space.
-->
<link rel="manifest" href="manifest.json" />
<meta name="msapplication-config" content="browserconfig.xml" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="#ffffff" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="msapplication-TileImage" content="img/ms-icon-144x144.png" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" sizes="57x57" href="img/apple-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="60x60" href="img/apple-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="img/apple-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="img/apple-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="img/apple-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="img/apple-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-icon-180x180.png" />
<link rel="icon" type="image/png" sizes="192x192" href="img/android-icon-192x192.png" />
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon-96x96.png" />
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png" />
<link rel="profile" href="http://microformats.org/profile/hcard" />
<link rel="profile" href="http://microformats.org/profile/hcalendar" />
<!--
Facebook's proprietary Open Graph properties.
Fuck Facebook, and let's look good while we do it.
-->
<meta property="og:url" content="https://shiftctrl.space/" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
<meta property="og:title" content="Shift-Ctrl-Space: I/O Web Resource" />
<meta property="og:description" content="I/O is a technology-centered project to cultivate autonomy in our communities. We connect grassroots organizations, nonprofits, and community members with free resources on technology, including info sessions, educational materials, and workshops." />
<meta property="og:image" content="https://shiftctrl.space/img/logo.bw.368x368.gif" />
<!--
Twitter's "Cards."
Tweet tweet, little bird, our crows will eat you.
-->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Shift-Ctrl-Space: I/O Web Resource" />
<meta name="twitter:description" content="I/O is a technology-centered project to cultivate autonomy in our communities. We connect grassroots organizations, nonprofits, and community members with free resources on technology, including info sessions, educational materials, and workshops." />
<meta name="twitter:image" content="https://shiftctrl.space/img/logo.bw.368x368.gif" />
<style>
/**
* @group Background.
*/
html, body {
margin: 0;
border: none;
padding: 0;
background: #FFF;
}
ul, ol {
margin: 0;
padding: 0;
}
.hidden {
display: none;
}
/**
* @group Layout.
*/
header {
margin-top: 2em;
}
#MainColumn {
width: 90%;
max-width: 60em;
margin: 3em auto 0;
text-align: left;
}
#WebAppToolbar,
#qr-code-wifi {
display: none;
}
#io-calendar footer {
text-align: center;
padding: 3em 0;
}
/**
* @group Typography.
*/
@font-face {
font-family: "D-DIN";
src: url("fonts/D-DIN.ttf");
}
html, body {
font: 22px/1.5em "D-DIN", Monospace;
}
h1, h2, h3 {
color: #000;
text-align: center;
}
h1 {
font-size: 40px;
margin-top: 3em;
}
header h1 {
margin: 0;
}
h2 {
font-size: 30px;
margin-top: 2em;
}
h3 {
font-size: 25px;
}
#io-calendar h3 span {
display: block;
font-weight: normal;
}
strong em {
text-transform: uppercase;
font-style: normal;
}
/**
* @group Links.
*/
a {
color: #000;
}
a:hover {
color: #18AD97;
transition: color .4s;
}
/**
* @group Main navigation bar.
*/
#MainNav {
text-align: center;
}
#MainNav li {
display: inline;
padding: 0 30px;
border-left: 1px solid #000;
}
#MainNav li:first-child {
border: none;
}
@media screen and (max-width: 500px) {
#MainNav li {
border-left: 0;
display: block;
}
main p {
font-size: 18px;
text-align: justify;
}
}
/**
* @group Event venue info.
*/
header .h-card,
header > p {
text-align: center;
}
header .h-card .u-photo {
display: none;
}
header .h-card .p-street-address {
display: block;
}
header .h-card p {
margin-bottom: 0;
}
/**
* @group Logo animation.
*/
#logo {
display: block;
margin: 0 auto 2em;
animation: 2s fade-in;
}
@keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
/**
* @group Mobile device installed experience.
*/
@media (display-mode: standalone) {
body { padding-top: 2em; }
#MainNav,
header .h-card,
#io-intro,
#io-programs,
#io-ethos,
#io-calendar h2,
#io-calendar footer p:last-child {
display: none;
}
#WebAppToolbar {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
}
#WebAppToolbar li {
list-style-type: none;
max-width: 50%;
padding: 5px;
border: 1px solid black;
border-top: 0;
}
#WebAppToolbar li:first-child {
float: left;
border-left: 0;
border-bottom-right-radius: 10px;
}
#WebAppToolbar li:last-child {
float: right;
text-align: right;
border-right: 0;
border-bottom-left-radius: 10px;
}
#qr-code-wifi {
display: block;
text-align: center;
}
#qr-code-wifi img {
display: block;
margin: 0 auto;
}
}
/**
* These styles repeat due to Mobile Safari's lack of
* support for the `display-mode` CSS3 media query. :(
*
* Remove these once the above is supported in iOS.
*/
body.mobile-safari-webapp { padding-top: 2em; }
body.mobile-safari-webapp #MainNav,
body.mobile-safari-webapp header .h-card,
body.mobile-safari-webapp #io-intro,
body.mobile-safari-webapp #io-programs,
body.mobile-safari-webapp #io-ethos,
body.mobile-safari-webapp #io-calendar h2,
body.mobile-safari-webapp #io-calendar footer p:last-child {
display: none;
}
body.mobile-safari-webapp #WebAppToolbar {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
}
body.mobile-safari-webapp #WebAppToolbar li {
list-style-type: none;
max-width: 50%;
padding: 5px;
border: 1px solid black;
border-top: 0;
}
body.mobile-safari-webapp #WebAppToolbar li:first-child {
float: left;
border-left: 0;
border-bottom-right-radius: 10px;
}
body.mobile-safari-webapp #WebAppToolbar li:last-child {
float: right;
text-align: right;
border-right: 0;
border-bottom-left-radius: 10px;
}
body.mobile-safari-webapp #qr-code-wifi {
display: block;
text-align: center;
}
body.mobile-safari-webapp #qr-code-wifi img {
display: block;
margin: 0 auto;
}
@media (prefers-color-scheme: dark) {
html,
body {
background: #000;
color: #FFF;
}
h1, h2, h3, h4, h5, h6,
a {
color: inherit;
}
#logo {
filter: invert(100%);
}
}
@media print {
/**
* @group Print typography.
*/
html, body {
font: 12pt/1em "D-DIN", Monospace;
}
strong { font-weight: normal; }
a, abbr {
border: none;
text-decoration: none;
}
.h-card a::after {
display: block;
content: " (" attr(href) ")";
}
/**
* @group Print layout.
*/
@page {
margin: .25in;
}
#MainNav,
.h-card p:last-of-type,
#io-programs,
#io-calendar h2,
#io-calendar footer,
#io-intro p:last-of-type,
#io-ethos p {
display: none;
}
#io-ethos p:nth-of-type(2) {
display: block;
}
#logo {
animation: none;
position: absolute;
opacity: .3;
object-fit: contain;
width: 100%;
height: 100%;
}
header { margin: 0; }
p { margin: 8pt 0; }
#MainColumn {
display: flex;
flex-wrap: wrap;
margin: 0;
width: auto;
}
#io-intro,
#io-ethos {
flex: 1;
font-size: 10pt;
padding: 0 1em;
}
main section h2 { margin: 16pt; }
.p-name { margin-top: 10pt; }
/**
* @group Poster.
*/
.h-card { padding-top: 32pt; }
.h-card::before {
font-size: 64pt;
content: "War On Google!";
text-transform: uppercase;
}
#io-calendar::after {
display: block;
content: "https://ShiftCTRL.space";
text-align: center;
text-decoration: underline;
}
.h-event { display: none; }
.h-event:first-of-type { display: block; }
}
</style>
</head>
<body>
<header>
<h1><img id="logo" src="img/logo.bw.svg" alt="I/O Web Resource" height="300" /></h1>
<nav id="MainNav">
<ul>
<li><a href="#io-programs" title="What to expect from I/O events.">Programs</a></li>
<li><a href="#io-ethos" title="Our perspective and sensibilities.">Ethos</a></li>
<li><a href="#io-calendar" title="When and where our events happen.">Calendar</a></li>
</ul>
</nav>
</header>
<main id="MainColumn" role="main">
<section id="io-intro">
<h2>What is I/O?</h2>
<p><strong>I/O is a technology-centered project to cultivate autonomy in our communities.</strong> We connect grassroots organizations, nonprofits, and community members with free resources on technology, including info sessions, educational materials, and workshops.</p>
<p>When we meet, we set a space where we as individuals and small organizations become more aware of the power in our everyday tech and personal devices, and practice utilizing that power <strong>for the betterment of our lives and communities</strong>.</p>
<p>Our events are <strong>free to attend, with a suggested donation of $10</strong>.</p>
<p>Here you will find links to helpful resources, as well as <a href="#io-calendar">instructions on how to subscribe to our calendar of events</a>.</p>
</section><!-- #io-intro -->
<section id="io-programs">
<h2>Our Programs</h2>
<p>We hosted programs <strong>(nearly) every Sunday from <time datetime="14:30">2:30</time>–<time datetime="18:00">6pm</time></strong> at one of several locally-owned venues. <strong>During the global COVID-19 pandemic, we are not meeting in person. Instead, we encourage you to visit <a href="https://TechLearningCollective.com/">TechLearningCollective.com</a> for quality online/remote IT educational workshops.</strong> When we (eventually) meet in person, we alternate between programming that is generally oriented towards Individuals (I) and programming that is generally oriented towards organizations (O) or collectives.</p>
<p>Of course, anyone can attend either type of gathering — this distinction is made only to help you scope what you would like to attend, and the things you would like to learn. When the topic appeals to both, the event will be marked “I/O.”</p>
</section><!-- #io-programs -->
<section id="io-ethos">
<h2>Our Ethos</h2>
<p>In computing, <dfn>I/O</dfn> is short for “input/output,” and is used regularly across a variety of contexts, but most often refers to some kind of exchange between external devices and internal devices, or, moreover, between machines and humans. It is this very exchange we concern ourselves with. “Io” is also the name of Jupiter’s innermost moon. The moon was named after a mortal figure in Greek mythology, who befriends imprisoned Prometheus, and whose descendent, Heracles, eventually frees him.</p>
<p>We are anti-(techno)capitalists, solarpunks, and radical technologists. Our ethics place us <em>against</em> “Adtech,” “Fintech,” and Silicon Valley. <a href="#io-programs">Our programs</a> are <em>not</em> part of a “bootcamp” or coding school. We are <em>not</em> recruiters; we actively discourage everyone from getting jobs in the “Tech” sector. If you are employed by organizations in the tech industry, please be advised that our ideology is hostile to you or your employer’s profit motive, and that we are committed to shunning common behaviors that we have seen rewarded in many other “tech” groups. Among other things, this means we strictly enforce <a href="https://github.com/AnarchoTechNYC/meta/wiki/Social-rules" title="Learn more about our social rules."><strong>our no-tolerance policy against bigotry of any kind</strong></a>.</p>
<p>Racism, queerphobia, transphobia, sexism, capitalist advocacy, “brogrammer,” “manarchist,” or any kind of similarly awful behavior <em>will</em> result in immediate removal from the venue and you <em>will</em> be asked never to return. Starting arguments that hijack the experience of others, speaking condescendingly, or acting in ways that makes others less able to learn will result in the same. Never take a learning opportunity away from another participant, no matter how smart you need everyone to think you are.</p>
<p>We believe <strong>technology is an intangible earth</strong>, with which we can and should have an earthly relationship. It <strong><em>is</em></strong> power that we can harness through holistic methods as individuals and cooperative networks for <strong>the empowerment of oneself and of one’s actual communities</strong>. Our approach stands in contrast to isolationism, sterility, and authoritarianism by being participatory, flexible, and adaptive. If this sounds like you, welcome. If not, there are plenty of other places you can go.</p>
</section><!-- #io-ethos -->
<section id="io-calendar">
<h2>Calendar</h2>
<p>During the global COVID-19 pandemic, we are no longer meeting in person. Instead, we encourage you to visit <a href="https://TechLearningCollective.com/">TechLearningCollective.com</a> for quality IT educational webinars and special events.</p>
<footer>
<p>
<a href="webcal://h2vx.com/ics/get-cal.php?uri=https%3A%2F%2Fshiftctrl.space%2F" title="Subscribe to our event calendar."><img src="img/icon.calendar.svg" alt="Subscribe to our events" width="20" /></a>
<a href="https://h2vx.com/ics/get-cal.php?uri=https%3A%2F%2Fshiftctrl.space%2F" type="text/calendar">Download our next event(s) to your calendar</a>.
</p>
<p>Help promote I/O. Print this page.</p>
</footer>
</section><!-- #io-calendar -->
</main><!-- #MainColumn -->
<nav id="WebAppToolbar">
<ul>
<li><a href="https://pad.riseup.net/p/shiftctrlspace" title="Share your notes with other note-takers.">Notes & Chat</a></li>
<li><a href="https://meet.mayfirst.org/shiftctrlspacepleasetrythisathome" title="Intercity technomagical viewing tunnel.">Magic Mirror</a></li>
</ul>
</nav>
<script>
/**
* Create a new scope so as not to pollute the global environment.
*
* @see https://developer.mozilla.org/en-US/docs/Glossary/IIFE
*/
(function () { // Begin Immediately-invoked Function Expression
/**
* Mimics CSS3 media queries for `display-mode` for iOS support.
*/
function initMobileSafariWebApp () {
if ( ! navigator.standalone ) {
return; // Not running as installed app, nothing to do.
}
var body_class = document.body.getAttribute('class');
body_class = ( body_class && ( -1 < body_class.indexOf('mobile-safari-webapp') ) )
? body_class + ' mobile-safari-webapp'
: 'mobile-safari-webapp';
document.body.setAttribute('class', body_class);
}
/**
* Initialize page behaviors.
*
* Runs when triggered by the `DOMContentLoaded` event.
*
* @param {event} e
*/
function init (e) {
initMobileSafariWebApp();
}
document.addEventListener('DOMContentLoaded', init);
})(); // End IIFE
</script>
</body>
</html>