-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathindex.html
108 lines (100 loc) · 3.15 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Slopify - The Ideomotor effect of software</title>
<link rel="stylesheet" href="styles.css" />
<script src="script.js"></script>
</head>
<body>
<header>
<h1>Welcome to Slopify</h1>
<p>
The
<a
href="https://www.newmanmentalism.com/blog/a-mentalist-explains-how-ouija-boards-work-and-the-ideomotor-effect"
>Ideomotor effect</a
>
of software
</p>
</header>
<section class="container">
<h2>What is Slopify?</h2>
<p>
Slopify is the result of the ideomotor effect applied to software: A
100% community-driven open source website. The premise? Commit whatever
code you want for whatever features you want in whatever language you
want, as long as everything works together and is legal.
</p>
<p>
Slopify operates through "Seasons" - with each season being a
collaborative effort. You can explore the results and details of each
season as follows:
</p>
<div class="season-grid">
<div class="season-card">
<h3>Season 0</h3>
<p>Explore the results of Season 0.</p>
<a href="https://s0.slopify.dev" target="_blank" class="season-link"
>Explore Season 0</a
>
</div>
<div class="season-card">
<h3>Live Season</h3>
<p>The current live season is available for exploration.</p>
<a href="https://live.slopify.dev" target="_blank" class="season-link"
>Explore Live Season</a
>
</div>
</div>
<h3>Season 0 Leaderboard</h3>
<table class="leaderboard">
<thead>
<tr>
<!-- <th>Rank</th> -->
<th>Category</th>
<th>Winner</th>
<th>Details</th>
</tr>
</thead>
<tbody>
<tr>
<!-- <td>1</td> -->
<td>Most Commits</td>
<td>eepyfemboi</td>
<td>62 commits</td>
</tr>
<tr>
<!-- <td>2</td> -->
<td>Most Additions</td>
<td>HaoTurnip</td>
<td>108,158 lines</td>
</tr>
<tr>
<!-- <td>3</td> -->
<td>Most Deletions</td>
<td>MDMCK10</td>
<td>8,839 deletions</td>
</tr>
</tbody>
</table>
<div class="contributors-section">
<h3>Contributors</h3>
<p>All this slop was sloppified by these sloppy individuals.</p>
</div>
<div id="contributors" class="contributors-grid"></div>
</section>
<footer>
<p>© 2025 <a href="https://discord.gg/WYmXc7Y8sF" target="_blank">DishpitDev</a>. All rights reserved.</p>
<p>
Check out the
<a href="https://github.com/DishpitDev/Slopify" target="_blank"
>Slopify GitHub repository</a
>
if you'd like to contribute!
</p>
</footer>
</body>
</html>