-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (166 loc) · 5.84 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
<html>
<head>
<title>BabbbyCakesIndex</title>
<style>
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(45deg, #6e45e2, #88d3ce);
color: white;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow-x: hidden;
}
.glass-container {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 40px;
box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
border: 1px solid rgba(255, 255, 255, 0.18);
max-width: 800px;
width: 90%;
margin: 20px;
animation: breathe 8s infinite ease-in-out;
}
h1, h2 {
text-align: center;
margin-bottom: 20px;
}
nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-bottom: 30px;
}
nav a {
color: white;
text-decoration: none;
padding: 10px 15px;
border-radius: 30px;
background: rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
}
nav a:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-3px);
}
#yoyo {
font-size: 24px;
margin-top: 20px;
}
#commitsTable {
width: 100%;
border-collapse: collapse;
}
#commitsTable th, #commitsTable td {
padding: 10px;
text-align: left;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@keyframes breathe {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
@keyframes spiral {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.spiral-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.1;
animation: spiral 60s linear infinite;
}
</style>
</head>
<body>
<div class="spiral-bg"></div>
<div class="glass-container">
<h1>agbabbbycakes</h1>
<h2>UPDATE as of July 30 2024</h2>
<h2><a href="https://github.com/agBabbbyCakes">apeWorX - Work and
Experiments and a little bit of fun</a></h2>
<nav>
<a href="./website/suite/master-suite.html">Master Suite</a>
<a href="./chaosBots/cB.html">chaosbots</a>
<a href="./details/details.html">Details Page</a>
<a href="./bg/bg.html">Particle Background Updates Background
</a>
<a href="./dataBaby/dataB.html">DATA SUPER BABYYYYYYY </a><br>
<a href="./dataBaby/doppler/doppler.html">The DOPPLER</a>
<a href="./apeW/src/index.html">The Index of Apeworx -
latest</a>
<a href="./silverBack-alpha/index.html"><b>The Index of
SILVERBACK - latest</b></a>
<a href="./sb-master-2000/index.html">silverback - master -
2000</a>
</nav>
<p id="yoyo"></p>
<h1>GIT COMMITS</h1>
<table id="commitsTable">
<thead>
<tr>
<th>Commit Message</th>
<th>Author</th>
<th>Date</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<script>
function displayTime() {
var date = new Date();
var time = date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds();
document.getElementById('yoyo').innerHTML = time;
}
displayTime();
setInterval(displayTime, 1000); // Update time every second
fetch('https://api.github.com/repos/agBabbbyCakes/agbabbbycakes.github.io/commits')
.then(response => response.json())
.then(data => {
let table = document.getElementById('commitsTable').getElementsByTagName('tbody')[0];
data.forEach(item => {
let newRow = table.insertRow();
let cell1 = newRow.insertCell(0);
let cell2 = newRow.insertCell(1);
let cell3 = newRow.insertCell(2);
cell1.textContent = item.commit.message;
cell2.textContent = item.commit.author.name;
cell3.textContent = item.commit.author.date;
});
})
.catch(error => console.error(error));
// Add spiral background
function createSpiral() {
const spiral = document.querySelector('.spiral-bg');
for (let i = 0; i < 200; i++) {
const dot = document.createElement('div');
dot.style.position = 'absolute';
dot.style.width = '2px';
dot.style.height = '2px';
dot.style.backgroundColor = 'white';
dot.style.borderRadius = '50%';
const angle = 0.1 * i;
const x = (1 + angle) * Math.cos(angle);
const y = (1 + angle) * Math.sin(angle);
dot.style.left = `${50 + x * 10}%`;
dot.style.top = `${50 + y * 10}%`;
spiral.appendChild(dot);
}
}
createSpiral();
</script>
</body>
</html>