-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (75 loc) · 4.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="apaz">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="og:title" content="apaz's Website">
<meta name="og:description" content="My blog and projects.">
<meta name="og:image" content="resources/images/sip.png">
<title>apaz's Website</title>
<link rel="stylesheet" href="main.css">
<link rel="icon" type="image/png" href="resources/images/favicon.png">
<link rel="preload" href="resources/images/1.jpg">
<link rel="prefetch" href="resources/images/2.jpg">
<link rel="prefetch" href="resources/images/3.jpg">
<link rel="prefetch" href="resources/images/4.jpg">
<link rel="prefetch" href="resources/images/5.jpg">
<link rel="prefetch" href="resources/images/6.jpg">
</head>
<body>
<div class="bg-image"></div>
<div class="window-bg">
<div class="front-img"></div>
<div class="titlediv">
<div id=titleb>apaz's Website</div>
<div id="clock"></div>
</div>
<div class="windowbackgroundarea1"><div id="Subtitle">Articles:</div></div>
<div class="windowbackgroundarea2">
<div class="centerDivs">
<div class="category">
<div class="categorytitle">Blog Posts:</div>
<div class="categorycontent"><a href="blog/Safety_and_Correctness.html">Airplanes, Safety, and Correctness</a></div>
<div class="categorycontent"><a href="blog/How_to_Write_a_Compiler_Without_Going_Insane.html">How to Write a Compiler Without Going Insane</a></div>
<div class="categorycontent"><a href="blog/The_Craziest_Bug_I_Have_Ever_Witnessed.html">The Craziest Bug I Have Ever Witnessed</a></div>
<div class="categorycontent"><a href="blog/Cursed_Code_Collection.html">Cursed Code Collection</a> - <a href="blog/Hyperparameter_Heuristics.html">Hyperparameter Heuristics</a></div>
<div class="categorycontent"><a href="blog/The_Contributor_Competition.html">The Competition For Contributors</a></div>
<div class="categorytitle">Open Source:</div>
<div class="categorycontent"><a href="https://github.com/PrimeIntellect-ai/prime">Prime (Decentralized LLM Training)</a></div>
<div class="categorycontent"><a href="https://github.com/Lightning-AI/lightning-thunder">Thunder (Deep Learning Compiler)</a></div>
<div class="categorycontent"><a href="https://github.com/Lightning-AI/litgpt">LitGPT (Train/Finetune 50+ LLMs)</a></div>
<div class="categorycontent"><a href="https://github.com/JuliaLang/julia">The Julia Programming Language</a></div>
<div class="categorycontent"><a href="https://github.com/apaz-cli/pgen">The pgen Parser Generator</a></div>
<div class="categorytitle">Contact:</div>
<div class="categorycontent"><a href="https://github.com/apaz-cli/">Github</a> - <a href="mailto:aarpazdera@gmail.com">Email</a> - <a href="https://www.linkedin.com/in/aaron-pazdera-b32155194/">Linkedin</a> - <a href="https://discord.com/channels/@me">Discord (@apaz)</a></div>
</div>
</div>
</div>
</div>
<div class="pixeloverlay"></div>
<div class="vignette"></div>
<script>
var clock=document.getElementById("clock");
function updateClock(){
var date=new Date();
date.setHours(date.getHours()+0)
var hours = date.getHours().toString();
var minutes = date.getMinutes().toString();
var seconds = date.getSeconds().toString();
if (hours.length==1){
hours="0"+hours
}
if (minutes.length==1){
minutes="0"+minutes
}
if (seconds.length==1){
seconds="0"+seconds
}
clock.innerHTML=hours+":"+minutes+":"+seconds;
}
updateClock();
setInterval(updateClock,1000);
</script>
</body>
</html>