-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
543 lines (541 loc) · 28.1 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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description"
content="Develop IoT applications and solutions with freedom and ease using reelyActive's foundational open source technologies.">
<meta name="google-site-verification"
content="-B67IDNb4QNZbyAhN4ZGgk9fRPUhVLZY1u8kLW8YJP4" />
<link rel="stylesheet" href="diy/common/style/bootstrappyactive.min.css">
<script type="module" src="diy/common/js/color-modes.js"></script>
<title> reelyActive Developers </title>
<!----- Structured, linked metadata (JSON-LD & Schema.org) ----->
<script type="application/ld+json">
[{
"@context": "https://schema.org",
"@type": "TechArticle",
"headline": "reelyActive Developers",
"description": "Develop IoT applications and solutions with freedom and ease using reelyActive's foundational open source technologies.",
"proficiencyLevel": "Beginner",
"genre": "style guide",
"image": "https://reelyactive.github.io/diy/images/reelyactive-developers-title.png",
"url": "https://reelyactive.github.io/",
"author": {
"@type": "Organization",
"url": "https://www.reelyactive.com"
}
}]
</script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar sticky-top navbar-expand-lg bg-body-tertiary shadow">
<div class="container-fluid">
<a class="navbar-brand" href="/">
<img src="diy/common/images/reelyactive-developers-logo-nav.png"
width="135" height="30" alt="reelyActive Developers">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarItems" aria-controls="navbarItems"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarItems">
<!-- Left-aligned navigation items -->
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
</ul>
<!-- Right-aligned navigation items -->
<ul class="navbar-nav">
<!-- Colour theme chooser -->
<li class="nav-item dropdown">
<button class="btn btn-link nav-link dropdown-toggle"
id="bd-theme" type="button" aria-expanded="false"
data-bs-toggle="dropdown" data-bs-display="static"
aria-label="Toggle theme (auto)">
<i class="fas fa-adjust"></i>
</button>
<ul class="dropdown-menu dropdown-menu-end shadow"
aria-labelledby="bd-theme-text">
<li>
<button type="button" class="dropdown-item"
data-bs-theme-value="light" aria-pressed="false">
<i class="fas fa-sun"></i> Light
</button>
</li>
<li>
<button type="button" class="dropdown-item"
data-bs-theme-value="dark" aria-pressed="false">
<i class="fas fa-moon"></i> Dark
</button>
</li>
<li>
<button type="button" class="dropdown-item active"
data-bs-theme-value="auto" aria-pressed="true">
<i class="fas fa-adjust"></i> Auto
</button>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarInfoDropdown"
role="button" data-bs-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
<i class="fas fa-question-circle"></i>
</a>
<!-- Info about tracking and open source software/licenses -->
<ul class="dropdown-menu dropdown-menu-end shadow"
aria-labelledby="navbarInfoDropdown">
<li>
<a class="dropdown-item"
href="https://www.reelyactive.com/how-we-observe/#digital">
<i class="fas fa-mouse-pointer"></i>
Privacy-centric metrics
(<i class="fab fa-cloudflare"></i> beacon.js)
<span class="badge bg-warning animate-breathing">
<i class="fas fa-user-tag"></i>
</span>
</a>
</li>
<li class="dropdown-divider"></li>
<li>
<a class="dropdown-item" target="_blank"
href="https://getbootstrap.com" >
<i class="fab fa-bootstrap"></i>
Bootstrap 5
<span class="badge bg-light text-dark">
<i class="fab fa-osi"></i> MIT
</span>
</a>
</li>
<li>
<a class="dropdown-item" target="_blank"
href="https://fontawesome.com" >
<i class="fab fa-font-awesome"></i>
Font Awesome (Free)
<span class="badge bg-light text-dark">
<i class="fab fa-creative-commons"></i>
<i class="fab fa-osi"></i> MIT
</span>
</a>
</li>
<li>
<a class="dropdown-item" target="_blank"
href="https://github.com/reelyactive/web-style-guide/" >
<i class="fas fa-code"></i>
Web Style Guide
<span class="badge bg-light text-dark">
<i class="fab fa-osi"></i> MIT
</span>
</a>
</li>
<li class="dropdown-divider"></li>
<li>
<a class="dropdown-item" target="_blank"
href="https://www.reelyactive.com/made-in-montreal/" >
<i class="fab fa-canadian-maple-leaf"></i>
Made in Montréal
<i class="fas fa-city"></i>
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- Content -->
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-sm-12 col-md-10 col-lg-8 col-xl-6">
<img src="diy/common/images/reelyactive-developers-title.png"
class="img-fluid mt-4" alt="reelyActive Developers">
<!----- Developer value proposition ----->
<div class="text-center mt-5">
<h2 class="mb-3">
<em id="topic" class="text-body-secondary">Radio-frequency identification</em>
<span class="text-secondary">is hard</span>.
</h2>
<p class="lead text-body-tertiary"> We've embodied 20+ years of experience in our <span class="text-body-secondary">open source ecosystem</span> to abstract away "owl" that's hard, freeing up <em>your</em> time to focus on meaningful application development. </p>
</div>
<!----- The TL;DR ----->
<div class="card hover-shadow mt-5">
<div class="card-body">
<h2>
The TL;DR
<small class="text-body-secondary"> (Too Long; Didn't Read) </small>
</h2>
<p class="lead"> Foundational, open source technologies <em>by</em> developers, <em>for</em> developers. </p>
<hr>
<dl class="row">
<dt class="col-sm-3"> <em>What</em> does reelyActive develop? </dt>
<dd class="col-sm-9"> reelyActive's open source technologies transform <a href="https://www.reelyactive.com/ambient-data/#content" target="_blank"><i class="fas fa-external-link-alt"></i> ambient wireless data</a> into <a href="https://www.reelyactive.com/context/#content" target="_blank"><i class="fas fa-external-link-alt"></i> hyperlocal context</a> <em>("who/what <small>is</small> where/how")</em>, as web-standard JSON, enshrining technology/vendor/application-agnostic interoperability. </dd>
<dt class="col-sm-3"> <em>Why</em> should developers care? </dt>
<dd class="col-sm-9"> We believe <em>your</em> time as a developer is best invested in creating the applications enabled by <a href="https://www.reelyactive.com/context-aware-physical-spaces/#content" target="_blank"><i class="fas fa-external-link-alt"></i> context-aware physical spaces</a><em>—not in developing the underlying technologies.</em> </dd>
<dt class="col-sm-3"> <em>How</em> do we work together? </dt>
<dd class="col-sm-9"> <a href="https://www.reelyactive.com/uni/#content" target="_blank"><i class="fas fa-external-link-alt"></i>Our philosophy</a> is to provide <em>free <small>and</small> open</em> access to our software & technologies while <a href="https://www.reelyactive.com/business/#content" target="_blank"><i class="fas fa-external-link-alt"></i>our business</a> is accelerating adoption through <em>paid</em> access to our time & expertise. </dd>
</dl>
</div>
</div>
<!-- Architecture overview -->
<img src="images/overview.png" class="img-fluid mt-4"
alt="reelyActive open source platform overview">
<ul class="nav nav-tabs nav-fill mt-3" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link bg-ambient text-white" id="adtab"
data-bs-toggle="tab" data-bs-target="#adcontent"
type="button" role="tab" aria-controls="adtab"
aria-selected="false">
<i class="fas fa-wifi"></i> Ambient Data
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link active bg-dark text-light"
id="patab" data-bs-toggle="tab"
data-bs-target="#pacontent" type="button" role="tab"
aria-controls="patab" aria-selected="true">
<i class="fas fa-cog"></i> Pareto Anywhere
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link bg-secondary text-white" id="hlctab"
data-bs-toggle="tab" data-bs-target="#hlccontent"
type="button" role="tab" aria-controls="hlctab"
aria-selected="false">
<i class="fas fa-share-alt"></i> Hyperlocal Context
</button>
</li>
</ul>
<div class="tab-content tab-content-border border-light-subtle">
<!-- Ambient Data tab -->
<div class="tab-pane fade" id="adcontent" role="tabpanel"
aria-labelledby="adtab">
<p class="lead text-body-secondary text-start"> <span class="text-ambient">Ambient Data</span> is machine-readable information at a human scale. </p>
<div class="row">
<div class="col-md-6 mb-3">
<h5> Learn More </h5>
<dl class="row">
<dt class="col-3"> Concept: </dt>
<dd class="col-9"> <a href="https://www.reelyactive.com/ambient-data/" target="_blank" class="text-decoration-none"> <i class="fas fa-external-link-alt"></i> Ambient Data </a> </dd>
<dt class="col-3"> Code: </dt>
<dd class="col-9"> <a href="https://github.com/reelyactive/advlib/" target="_blank"><i class="fab fa-github"></i>/reelyactive/advlib</a> </dd>
</dl>
</div>
<div class="col-md-6">
<h5> Step-by-Step Tutorials </h5>
<ul class="list-group list-group-horizontal">
<li class="list-group-item border-0">
<a href="diy/devices/#devices">
<img src="diy/devices/images/icon-devices.gif"
class="rounded-1">
</a>
</li>
<li class="list-group-item border-0">
<a href="diy/devices/#devices">
<h5 class="mt-0 mb-1"> Ambient Devices </h5>
</a>
Configure beacons, tags & sensors.
</li>
</ul>
<ul class="list-group list-group-horizontal">
<li class="list-group-item border-0">
<a href="diy/devices/#infrastructure">
<img src="diy/devices/images/icon-infrastructure.gif"
class="rounded-1">
</a>
</li>
<li class="list-group-item border-0">
<a href="diy/devices/#infrastructure">
<h5 class="mt-0 mb-1"> Ambient Infrastructure </h5>
</a>
Configure gateways, APs & readers.
</li>
</ul>
</div>
</div>
</div>
<!-- Pareto Anywhere tab -->
<div class="tab-pane fade show active" id="pacontent"
role="tabpanel" aria-labelledby="patab">
<p class="lead text-body-secondary text-center"> <span class="text-body">Pareto Anywhere</span> is our open source IoT middleware. </p>
<div class="row">
<div class="col-md-6 mb-3">
<h5> Quick Start </h5>
<dl class="row">
<dt class="col-3"> Install: </dt>
<dd class="col-9 font-monospace user-select-all"> npm install -g pareto-anywhere </dd>
<dt class="col-3"> Run: </dt>
<dd class="col-9 font-monospace user-select-all"> pareto-anywhere </dd>
<dt class="col-3"> Browse: </dt>
<dd class="col-9"> <a href="http://localhost:3001" target="_blank" class="text-decoration-none"> http://localhost:3001 </a> </dd>
</dl>
<h5> Learn More </h5>
<dl class="row">
<dt class="col-3"> Product: </dt>
<dd class="col-9"> <a href="https://www.reelyactive.com/pareto/anywhere/" target="_blank" class="text-decoration-none"> <i class="fas fa-external-link-alt"></i> Pareto Anywhere by reelyActive </a> </dd>
<dt class="col-3"> Code: </dt>
<dd class="col-9"> <a href="https://github.com/reelyactive/pareto-anywhere/" target="_blank"><i class="fab fa-github"></i>/reelyactive/pareto-anywhere</a> </dd>
</dl>
</div>
<div class="col-md-6">
<h5> Step-by-Step Tutorials </h5>
<ul class="list-group list-group-horizontal">
<li class="list-group-item border-0">
<a href="diy/pareto-anywhere-pc/">
<img src="diy/pareto-anywhere-pc/images/icon.png"
class="rounded-1">
</a>
</li>
<li class="list-group-item border-0">
<a href="diy/pareto-anywhere-pc/">
<h5 class="mt-0 mb-1"> Run Pareto Anywhere on a PC </h5>
</a>
Get started on a <i class="fab fa-windows"></i>/<i class="fab fa-apple"></i>/<i class="fab fa-linux"></i> PC <small class="text-body-secondary">(or server).</small>
</li>
</ul>
<ul class="list-group list-group-horizontal">
<li class="list-group-item border-0">
<a href="diy/pareto-anywhere-pi/">
<img src="diy/pareto-anywhere-pi/images/icon.png"
class="rounded-1">
</a>
</li>
<li class="list-group-item border-0">
<a href="diy/pareto-anywhere-pi/">
<h5 class="mt-0 mb-1"> Run Pareto Anywhere on a <i class="fab fa-raspberry-pi"></i> </h5>
</a>
Serve pareto.local with a <i class="fab fa-raspberry-pi"></i> Pi.
</li>
</ul>
<ul class="list-group list-group-horizontal">
<li class="list-group-item border-0">
<a href="diy/pareto-anywhere-azure/">
<img src="diy/pareto-anywhere-azure/images/icon.png"
class="rounded-1">
</a>
</li>
<li class="list-group-item border-0">
<a href="diy/pareto-anywhere-azure/">
<h5 class="mt-0 mb-1"> Run Pareto Anywhere for Azure </h5>
</a>
Process Azure IoT Hub data streams.
</li>
</ul>
</div>
</div>
</div>
<!-- Hyperlocal Context tab -->
<div class="tab-pane fade" id="hlccontent" role="tabpanel"
aria-labelledby="hlctab">
<p class="lead text-body-secondary text-end"> <span class="text-secondary">Hyperlocal Context</span> is a digital representation of a physical space and its occupants. </p>
<div class="row">
<div class="col-md-6 mb-3">
<h5> Learn More </h5>
<dl class="row">
<dt class="col-3"> Concept: </dt>
<dd class="col-9"> <a href="https://www.reelyactive.com/context/" target="_blank" class="text-decoration-none"> <i class="fas fa-external-link-alt"></i> Hyperlocal Context </a> </dd>
<dt class="col-3"> Web apps: </dt>
<dd class="col-9"> <a href="https://github.com/reelyactive/pareto-anywhere-apps/" target="_blank"><i class="fab fa-github"></i>/reelyactive/pareto-anywhere-apps</a> </dd>
</dl>
<h5> Tutorials </h5>
<ul class="list-group list-group-horizontal">
<li class="list-group-item border-0">
<a href="diy/cheatsheet/">
<img src="diy/cheatsheet/images/icon.png"
class="rounded-1">
</a>
</li>
<li class="list-group-item border-0">
<a href="diy/cheatsheet/">
<h5 class="mt-0 mb-1"> Developer Cheatsheet </h5>
</a>
Understand the data structures.
</li>
</ul>
</div>
<div class="col-md-6">
<div class="card hover-shadow">
<img src="diy/common/images/pareto-anywhere-apps-screenshot.jpg"
class="card-img-top" alt="Pareto Anywhere Apps">
<div class="card-footer text-center bg-dark bg-gradient">
<div class="dropdown text-center">
<button class="btn btn-primary dropdown-toggle"
type="button" id="dropdownApps"
data-bs-toggle="dropdown" aria-expanded="false">
Select a demo…
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownApps">
<li>
<a class="dropdown-item" target="_blank"
href="pareto-anywhere-apps/hlc-explorer/?demo=default&updates=periodic">
Hyperlocal Context Explorer
</a>
</li>
<li>
<a class="dropdown-item" target="_blank"
href="pareto-anywhere-apps/live-directory/?demo=default">
Live Directory
</a>
</li>
<li>
<a class="dropdown-item" target="_blank"
href="pareto-anywhere-apps/occupancy-observer/?demo=default">
Occupancy Observer
</a>
</li>
<li>
<a class="dropdown-item" target="_blank"
href="pareto-anywhere-apps/hello-sniffypedia/?demo=default">
Hello Sniffypedia!
</a>
</li>
<li>
<a class="dropdown-item" target="_blank"
href="pareto-anywhere-apps/hello-dynamb/?demo=default">
Hello dynamb!
</a>
</li>
<li>
<a class="dropdown-item" target="_blank"
href="pareto-anywhere-apps/hello-beaver/?demo=default">
Hello beaver!
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- OSS Packages -->
<div class="card hover-shadow bg-body-secondary border-0 rounded-start-pill my-5">
<div class="row d-flex align-items-center g-0">
<div class="col-4 col-md-3">
<div class="carousel slide carousel-fade"
data-bs-ride="carousel" data-bs-interval="1200">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="diy/common/images/barnowl-logo.png"
class="d-block w-100" alt="barnowl" loading="lazy">
</div>
<div class="carousel-item">
<img src="diy/common/images/barnacles-logo.png"
class="d-block w-100" alt="barnacles" loading="lazy">
</div>
<div class="carousel-item">
<img src="diy/common/images/chimps-logo.png"
class="d-block w-100" alt="chimps" loading="lazy">
</div>
<div class="carousel-item">
<img src="diy/common/images/barterer-logo.png"
class="d-block w-100" alt="barterer" loading="lazy">
</div>
<div class="carousel-item">
<img src="diy/common/images/chickadee-logo.png"
class="d-block w-100" alt="chickadee" loading="lazy">
</div>
<div class="carousel-item">
<img src="diy/common/images/advlib-logo.png"
class="d-block w-100" alt="advlib" loading="lazy">
</div>
<div class="carousel-item">
<img src="diy/common/images/beaver-logo.png"
class="d-block w-100" alt="beaver" loading="lazy">
</div>
<div class="carousel-item">
<img src="diy/common/images/cormorant-logo.png"
class="d-block w-100" alt="cormorant" loading="lazy">
</div>
<div class="carousel-item">
<img src="diy/common/images/cuttlefish-logo.png"
class="d-block w-100" alt="cuttlefish" loading="lazy">
</div>
<div class="carousel-item">
<img src="diy/common/images/charlotte-logo.png"
class="d-block w-100" alt="charlotte" loading="lazy">
</div>
</div>
</div>
</div>
<div class="col-8 col-md-9">
<div class="card-body text-start">
<h3 class="card-title mb-3"> Modular & Open Source </h3>
<p class="card-text"> <span class="text-body-emphasis">Pareto Anywhere</span> uses a modular architecture, with each open source software package having a mascot and a story. </p>
<a href="diy/oss-packages/" class="btn btn-primary">
Discover the modules
</a>
</div>
</div>
</div>
</div>
<!-- Alert: style guide update -->
<div class="alert alert-info my-5" role="alert">
<span class="badge rounded-pill text-bg-primary"><i class="fas fa-info"></i></span> We kicked off 2024 upgrading to our latest <a href="https://github.com/reelyactive/web-style-guide" target="_blank" class="alert-link"><i class="fab fa-github"></i>/web-style-guide</a> which incorporates Bootstrap 5.3's <i class="fas fa-adjust"></i> light/dark colour themes, and are progressively updating our pages and web apps to look great in <em>both</em> light & dark.
</div>
<!----- Where to next ----->
<hr class="mt-5 mb-4">
<h2> Where to next? </h2>
<p class="lead"> Consult the directory for links to all developer content<em>—there's plenty more!</em> </p>
<ul class="list-group list-group-horizontal">
<li class="list-group-item border-0">
<a href="diy/">
<img src="diy/common/images/icon.png" class="rounded-1">
</a>
</li>
<li class="list-group-item border-0">
<a href="diy/">
<h5 class="mt-0 mb-1"> Directory </h5>
</a>
All developer tutorials and documentation by category.
</li>
</ul>
<ul class="list-group list-group-horizontal">
<li class="list-group-item border-0">
<a href="index-2020.html">
<img src="diy/common/images/icon-diy.png" class="rounded-1">
</a>
</li>
<li class="list-group-item border-0">
<h5 class="mt-0 mb-1">
<a href="index-2020.html">diyActive</a>
<small class="text-body-secondary">(archived)</small>
</h5>
The <em>previous</em> version of this page.
</li>
</ul>
<ul class="list-group list-group-horizontal mb-4">
<li class="list-group-item border-0">
<a href="https://www.reelyactive.com" target="_blank">
<img src="diy/common/images/icon-reelyactive.png"
class="rounded-1">
</a>
</li>
<li class="list-group-item border-0">
<a href="https://www.reelyactive.com" target="_blank">
<h5 class="mt-0 mb-1">
<i class="fas fa-external-link-alt"></i> reelyActive
</h5>
</a>
Together, let's make sense of things.
</li>
</ul>
</div>
</div>
</div>
<footer class="footer bg-dark bg-gradient">
<a href="https://reelyactive.github.io"> reelyActive Developers </a>
|
<a href="https://www.reelyactive.com"> © reelyActive 2014-2024 </a>
</footer>
<!-- Optional JavaScript -->
<script defer src="diy/common/js/fontawesome-reelyactive.min.js"></script>
<script src="diy/common/js/bootstrappyactive.bundle.min.js"></script>
<script src="js/developers.js"></script>
<script defer src='https://static.cloudflareinsights.com/beacon.min.js'
data-cf-beacon='{"token": "75099ede11644990a7ffdffc6c28f487"}'>
</script>
</body>
</html>