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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
<!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">
<meta name="theme-color" content="#FFF">
<title>s1nical - Landing Page</title>
<!-- External Scripts Links -->
<link href='https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic' rel='stylesheet' type='text/css'>
<script src="https://cdnjs.cloudflare.com/ajax/libs/trianglify/0.3.1/trianglify.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<!-- CSS Links -->
<link id="pagestyle" rel="stylesheet" type="text/css" href="/css/main.css" />
<!-- END CSS Links -->
<meta name="description" content="s1nical is a full stack developer.">
<meta property="og:description" content="s1nical is a full stack developer.">
<meta property="og:title" content="s1nical">
<meta property="twitter:card" content="summary">
<meta property="twitter:site" content="@9inny">
<meta property="og:image" content="">
<script src="https://www.googletagmanager.com/gtag/js?id=UA-30692517-4"></script>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<link rel="apple-touch-icon" sizes="128x128" href="/favicon.jpg">
<link rel="icon" type="image/jpg" href="/favicon.jpg" sizes="128x128">
<link rel="canonical" href="https://s1n.pw/">
<link rel="author" href="humans.txt" />
<!-- Invisible Scripts -->
<script src="/js/hide-context-menu.js"></script>
<script src="/js/loader-animation.js"></script>
<script src="/js/refresh-on-media.js"></script>
<!-- Schema.org Stuff -->
<script type="application/ld+json">
{
"name": "s1nical",
"alternateName": "s1n",
"description": "s1nical is a Full-stack developer.",
"headline": "s1nical is a Full-stack developer.",
"url": "https://s1n.pw/",
"image": "",
"sameAs": [
"https://twitter.com/9inny",
"https://github.com/8cy",
"https://www.reddit.com/user/s1nical/"
],
"publisher": {
"@type": "Organization",
"logo": {
"@type": "ImageObject",
"url": ""
}
},
"@type": "WebSite",
"@context": "http://schema.org"
}
</script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/inter.css" integrity="sha256-DyLTj16AbuvawyWJMPz4tJNp46iGflE/fWYAoU2IGpk=" crossorigin="anonymous">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-145087191-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-145087191-1');
</script>
</head>
<body>
<!-- Scripts -->
<script src="/js/app.js"></script>
<script id="js-konami" src="/js/background-sparkles.js"></script>
<!-- Snow -->
<canvas class="snow" style="position: absolute; top: 0; left: 0; pointer-events:none;">
<script>
var canvas = document.querySelector('.snow'),
ctx = canvas.getContext('2d'),
windowW = window.innerWidth,
windowH = window.innerHeight,
numFlakes = 125,
flakes = [];
if (screen.width < 768) { numFlakes = 50; } // If Mobile
function Flake(x, y) {
var maxWeight = 5,
maxSpeed = 1.2;
if (screen.width < 768) { maxSpeed = 1; } // If Mobile
this.x = x;
this.y = y;
this.r = randomBetween(0, 1);
this.a = randomBetween(0, Math.PI);
this.aStep = 0.01;
this.weight = randomBetween(2, maxWeight);
this.alpha = (this.weight / maxWeight);
this.speed = (this.weight / maxWeight) * maxSpeed;
this.update = function () {
this.x += Math.cos(this.a) * this.r;
this.a += this.aStep;
this.y += this.speed;
}
}
function init() {
var i = numFlakes,
flake,
x,
y;
while (i--) {
x = randomBetween(0, windowW, true);
y = randomBetween(0, windowH, true);
flake = new Flake(x, y);
flakes.push(flake);
}
scaleCanvas();
loop();
}
function scaleCanvas() {
canvas.width = windowW;
canvas.height = windowH;
}
function loop() {
var i = flakes.length,
z,
dist,
flakeA,
flakeB;
// clear canvas
ctx.save();
ctx.setTransform(1, 0, 0, 1, 0, 0);
ctx.clearRect(0, 0, windowW, windowH);
ctx.restore();
// loop of hell
while (i--) {
flakeA = flakes[i];
flakeA.update();
/*for (z = 0; z < flakes.length; z++) { flakeB=flakes[z]; if (flakeA !==flakeB && distanceBetween(flakeA,
flakeB) < 150) { ctx.beginPath(); ctx.moveTo(flakeA.x, flakeA.y); ctx.lineTo(flakeB.x, flakeB.y);
ctx.strokeStyle='#444444' ; ctx.stroke(); ctx.closePath(); } }*/
ctx.beginPath();
ctx.arc(flakeA.x, flakeA.y, flakeA.weight, 0, 2 * Math.PI, false);
ctx.fillStyle = 'rgba(255, 255, 255, ' + flakeA.alpha + ')';
ctx.fill();
if (flakeA.y >= windowH) {
flakeA.y = -flakeA.weight;
}
}
requestAnimationFrame(loop);
}
function randomBetween(min, max, round) {
var num = Math.random() * (max - min + 1) + min;
if (round) {
return Math.floor(num);
} else {
return num;
}
}
function distanceBetween(vector1, vector2) {
var dx = vector2.x - vector1.x,
dy = vector2.y - vector1.y;
return Math.sqrt(dx * dx + dy * dy);
}
init();
</script>
</canvas>
<!-- Navigation Bar -->
<div class="navigation-bar">
<nav class="nav">
<a onclick="deactivateCheats()" href="#" class="nav-item" active-color="orange">Home</a> <!-- Had `is-active` after it but removed it due to not highlighting. -->
<a href="/about/" class="nav-item" active-color="green">About</a> <!-- About -->
<a href="https://p.s1n.pw/" class="nav-item" active-color="blue">Portfolio</a> <!-- Testimonials -->
<!--<a href="/doge" class="nav-item" active-color="red">Doge</a> <!-- Blog -->
<!--<a href="/cars/" class="nav-item" active-color="rebeccapurple">Cars</a> <!-- Contact -->
<span id="directory-konami"></span>
<!--<a href="https://nani.s1n.pw" class="nav-item" active-color="rebeccapurple">Nani?!</a>-->
<span class="nav-indicator"></span>
</nav>
</div>
<!-- Core Site Function, Site Primer/ Base -->
<main>
<div class="links">
<div class="email">
<a href="mailto:[email protected]">s1nical</a><br>
Full-stack developer.<br><br>
</div>
<div class="twitter">
Follow me on <a href="https://twitter.com/9inny">Twitter</a>.
</div>
<div class="github">
View my code on <a href="https://github.com/8cy">GitHub</a>.
</div>
</div>
</main>
<div class="clairo">
<span id="m-konami"></span>
</div>
<script>
if (screen.width > 768) { // If Desktop
document.getElementById("m-konami").innerHTML = `
<img src="/assets/imgs/clairo2.gif" alt="" width="30px">
`;
} else { // If Mobile
document.getElementById("m-konami").innerHTML = `
<img src="/assets/imgs/clairo2.gif" onclick="activateCheats()" alt="" width="30px">
`;
}
</script>
<!-- Konami Music -->
<!-- Background Music
// CREDITS: //
Title: The Classics - A New Retro Synthwave Mix
Uploader: Confused Bi-Product of a Misinformed Culture
Full Credits: https://s1n.pw/konami/assets/midi/midi.mp3.txt -->
<audio src="/konami/assets/midi/midi.mp3" id="music">
<p>If you are reading this, it is because your browser does not support the audio element.</p>
<script>
var audio = document.getElementById("music");
audio.volume = 0.1; // Volume Adjuster, might bind it to "- and +" one day if possible.
</script>
</audio>
<!-- Loading Animation -->
<div class="loader-wrapper">
<div class="loader">
<row>
<span></span>
<span></span>
<span></span>
</row>
<row>
<span></span>
<span></span>
<span></span>
</row>
<row>
<span></span>
<span></span>
<span></span>
</row>
</div>
</div>
</body>
</html>
|