-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
87 lines (76 loc) · 3.6 KB
/
about.html
File metadata and controls
87 lines (76 loc) · 3.6 KB
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
<!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="Schmidt Scoreboard product page">
<meta name="author" content="Mark Schmidt">
<!-- <link rel="icon" href="../../../../favicon.ico"> -->
<title>About</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Custom styles for this template -->
<link href="product.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</head>
<body class="bg-light">
<div id="nav-placeholder"></div>
<script>
$(function () {
$("#nav-placeholder").load("nav.html");
});
</script>
<div style="max-width: 950px; margin: auto">
<div class="position-relative overflow-hidden p-3 p-md-5 m-md-3 text-center">
<div class="col-md-5 p-lg-5 mx-auto my-5">
<h1 class="display-6 font-weight-normal">About</h1>
</div>
</div>
<div class="px-5" id="Paragraphs">
<p class="">For Valentine’s Day 2019, I used <a
href="https://github.com/MLB-LED-Scoreboard/mlb-led-scoreboard">this</a> excellent open source guide to make an
MLB
Scoreboard for my St. Louis
sports
fanatic wife. While she loves the Cardinals, her one true love is the St. Louis Blues. So, when she asked if there
was
any way I could get her scoreboard to show hockey in addition to baseball, I gave it a shot. She loved it, and
asked
if this
was something I could possibly make and sell to other people. What started as a quick weekend project turned into
a year
long learning experience pulling in all my software engineering skills.</p>
<p>To turn this into a real product, I would have to make it mom and dad friendly—no need to solder anything, no
need to
configure things, update packages, or anything remotely technical. I needed to 3D print an enclosure, wire up a
button,
and write thousands of lines of code to support the onboarding process.
</p>
<p>
This was a great learning opportunity for me—I learned how to use Flutter to make a cross platform controller app,
how
to use AWS and GraphQL to host a Scoreboard API, and put dozens of other skills to the test to make a final
product that
I’m very proud of.
</p>
<p>Big thank yous to:</p>
<ul>
<li>The <a href="https://github.com/MLB-LED-Scoreboard/mlb-led-scoreboard">MLB LED Scoreboard</a> project, which
is the inspiration for this project</li>
<li>Westmont Public Library for dealing with
all of my 3D printing requests</li>
<li>Richard Wendel, for helping me with Electrical Engineering 101</li>
<li>Jack Schmidt, for designing logos/iconography and helping me make the app look much better</li>
<li>Jamie Schmidt, for supporting me and encouraging me to bring this project to completion</li>
</ul>
</div>
</div>
</body>
</html>