summaryrefslogtreecommitdiff
path: root/minigolf.html
blob: 3d27aa1a0a6aa275cf18f0caa531834b2887cbf7 (plain)
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
<!doctype html>
<html lang="en">
    <head>
        <title>Mini Golf Scorekeeping App</title>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <link rel="stylesheet" type="text/css" href="style.css">
    </head>
    <body>
        <div id="dhead" class="container">
            <h1>Mini Golf Scorekeeping App</h1>
        </div>

        <div class="darkgroup">
            <div class="container">
                <div class="ctitle">Background</div>
                I was playing mini golf with my brother and my uncle when it started raining, and our paper scorecard disintegrated. The frustration sparked by that incident inspired me to build a phone app to use in place of a scorecard. While phones are harder to use in the rain, at least they don't disintegrate. I recently read <a href="https://press.stripe.com/the-making-of-prince-of-persia">The Making of Prince of Persia</a>, which inspired me to keep this journal describing my project. I plan to make blog posts on <a href="https://conjfrnk.github.io">my recently-revived blog</a> to go into more detail on some of the steps. More to come!
            </div>
        </div>

        <div id="history" class="container">
            <div class="ctitle">Timeline</div>
            <div class="entry row">
                <div class="timespan">
                    Soon
                </div>
                <div class="ico">
                    <div class="entry-dot"></div>
                    <img src="assets/golf/golf3.svg" class="iico" />
                </div>
                <div class="desc">
                    Ideas:
                    <br>
                    - Logo/Graphics
                    <br>
                    - Edit Players Dialog
                    <br>
                    - Course Templates
                </div>
            </div>
            <div class="entry row">
                <div class="timespan">
                    Apr 2024
                </div>
                <div class="ico">
                    <div class="entry-dot"></div>
                    <img src="assets/golf/golf2.svg" class="iico" />
                </div>
                <div class="desc">
                    Project Improved
                </div>
            </div>
            <div class="entry row">
                <div class="timespan">
                    Mar 2024
                </div>
                <div class="ico">
                    <div class="entry-dot"></div>
                    <img src="assets/golf/golf1.svg" class="iico" />
                </div>
                <div class="desc">
                    Project Started
                    <br>
                    - Using Flutter for portability
                    <br>
                    - Don't love the look of it (it looks too much like an Android, will need to fix that later)
                </div>
            </div>
        </div>

        <div class="darkgroup">
            <div class="container">
                <div class="ctitle">Links</div>
                <ul>
                    <li>Repository: <a href="https://www.github.com/conjfrnk/mini-golf-scores">Github</a></li>
                    <li>Repository: <a href="https://git.loftyields.com/mini-golf-scores">Self-hosted on LoftYields.com</a></li>
                    <li><a href="https://www.conjfrnk.com">Apple App Store</a></li>
                    <li><a href="https://www.conjfrnk.com">Google Play Store</a></li>
                </ul>
            </div>
        </div>

        <div class="lightgroup">
            <div class="container">
                <div class="ctitle"><a href="index.html">Home</a></div>
            </div>
        </div>
    </body>
</html>