summaryrefslogtreecommitdiff
path: root/resources/views/home_new.blade.php
blob: e032c02407b496fffa299d3649043df0fe2205e7 (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
@extends('template_new')
@section('content')
<canvas id = "bg">
</canvas>

<section>
    <h5>August 2025</h5>
    <p>The intention of this website is to provide a means for me to disseminate information which I want to share, to serve as a data storage device and to provide references to other data stores, and perhaps to be a beacon of hope in this age of declining internet culture. Not a digital campfire, but more of  </p>
    <p>Here are some questions I have.</p>
    <ul>
        <li>What happened to Nintendo?</li>
        <li>Why is Google actively destroying YouTube?</li>
        <li>...</li>
    </ul>
    <p> Many people out there have been worried about these same issues, such as <a href = "https://x.com/joshwhiton/status/1987551329636544732">Josh Whiton</a>, so I won't write about it too much here.</p>
    <p>I can only hope that this decade will be the one where we humans finally stop actively degrading functionality and user experience of all our tools, and return to our senses. We will also stop doing planned obsolescense, because businesses won't be able to get away with exploiting their customers. </p>
    <p>One of my main hopes for the future of humanity is that we remember how to make good user interfaces and well-made tools. This comes down to caring about ourselves and each other, and not giving in to the corruption of whatever company has employed us to make whatever product or service. And I'm not only talking about software user interfaces. This degenerate pattern exists in other domains, such as comstumer service call centers, science journalism, and microwave ovens. </p>
    <p>It is my goal with each of these writings to leave the reader with at least one little thing worthwhile to think about. </p>
    <center> . . . </center>
    <ul>
        <li><a href = "resume/grothe_resume_20250809.pdf">Resume</a></li>
        <li><a href = "https://github.com/grothedev/randomscripts">Some random useful scripts and tools</a></li>
    </ul>
</section>
<section id = "fileupload-nojs">
    <h4>File Upload</h4>
    <h6><a href = "/f">Browse Uploaded Files</a></h6>
    <form action="/f" method="POST" enctype="multipart/form-data">
        @csrf
        @error('f')  {{ $message }}  @enderror
        <input multiple name="f[]" type="file">
        <input hidden name = "response_format" value = "html" />
        <button type = "submit">Upload</button>
    </form>
</section>
<!--</noscript>-->
<section id = "fileupload" hidden="true">
    <h4>File Upload</h4>
    <h6><a href = "/f">Browse Uploaded Files</a></h6>
    <!--<form action="/f" method="POST" enctype="multipart/form-data">-->
        @error('f')  {{ $message }}  @enderror
        <input id = "f" multiple name="f[]" type="file" >
        <br>
        <button id = "button_fileupload" enabled="false" type = "submit">Upload</button>
    <!--</form>-->
    <div id = "fileupload_result"></div>
</section>
<section id = "dunechapterexcerpts" hx-get = "/dq" hx-trigger = "load,click" hx-swap = "innerHTML">
    <h4>random dune pre-chapter quote goes here (under construction)</h4>
</section>
<footer>
    <p>Last updated October 27th, 2025</p>
</footer>
@endsection
<script type = "module" src = "/js/main.js"></script>
</html>