x
This commit is contained in:
parent
4b203e2dcb
commit
0ddf2af191
8 changed files with 126 additions and 20 deletions
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<link rel="icon" type="image/x-icon" href="https://prigoana.lol/favicon.png">
|
<link rel="icon" type="image/x-icon" href="../../favicon.png">
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Problem Solving Process Poster</title>
|
<title>Problem Solving Process Poster</title>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<link rel="icon" type="image/x-icon" href="https://prigoana.lol/favicon.png">
|
<link rel="icon" type="image/x-icon" href="../favicon.png">
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>CS/</title>
|
<title>CS/</title>
|
||||||
|
@ -10,7 +10,6 @@
|
||||||
background-color: black;
|
background-color: black;
|
||||||
color: green;
|
color: green;
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -28,9 +27,6 @@
|
||||||
.command {
|
.command {
|
||||||
color: lightblue;
|
color: lightblue;
|
||||||
}
|
}
|
||||||
.path {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
ul {
|
ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -45,13 +41,16 @@
|
||||||
a:hover {
|
a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
.space::before {
|
||||||
|
content: '\00A0';
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="terminal">
|
<div class="terminal">
|
||||||
<ul>
|
<ul>
|
||||||
<li><p><span class="command">CS/</span></li>
|
<li><p><span class="command"><a href="../projects.html">../</a></span></p></li>
|
||||||
<li><a href="./ProblemSolvingProcess/">Problem Solving Process</a></li>
|
<li><span class="space"><span class="space"></span><span class="command"><a href="./ProblemSolvingProcess/">Problem Solving Process</a></span></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
55
about.html
Normal file
55
about.html
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<link rel="icon" type="image/x-icon" href="./favicon.png">
|
||||||
|
<link rel="manifest" href="./manifest.json">
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>prigoana.lol</title>
|
||||||
|
<style> a{ cursor: url(./link.cur), auto;}
|
||||||
|
body {
|
||||||
|
user-select: none;
|
||||||
|
background-color: #000;
|
||||||
|
color: #fff;
|
||||||
|
font-family: monospace;
|
||||||
|
cursor: url(./cursor.cur), auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
background-color: #000;
|
||||||
|
color: rgb(255, 255, 255);
|
||||||
|
padding: 20px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.terminal ul {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.terminal li {
|
||||||
|
margin: 0 15px;
|
||||||
|
}
|
||||||
|
.terminal a {
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.terminal a:hover {
|
||||||
|
text-decoration: underline;}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<div class="terminal">
|
||||||
|
<ul>
|
||||||
|
<li><a href="./index.html">back</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<h3>Eduard Prigoana</h3>
|
||||||
|
<a href="https://instagram.com/eduardprigoana"><img src="./Instagram.png"><br></a>
|
||||||
|
<p>one question... why so feinious?</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
15
index.html
15
index.html
|
@ -5,8 +5,6 @@
|
||||||
<link rel="manifest" href="./manifest.json">
|
<link rel="manifest" href="./manifest.json">
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="description" content="Welcome to prigoana.lol, your go-to source for music and more.">
|
|
||||||
<meta name="author" content="Your Name">
|
|
||||||
<title>prigoana.lol</title>
|
<title>prigoana.lol</title>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
|
@ -73,31 +71,30 @@
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
}
|
}
|
||||||
|
a{ cursor: url(./link.cur), auto;}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<div class="terminal">
|
<div class="terminal">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/CS/">CS</a></li>
|
<li><a href="./projects.html">projects</a></li>
|
||||||
|
<li><a href="./about.html">about</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<main>
|
<main><p style="line-height: 50px; height: 200px;"> </p>
|
||||||
<div class="model"></div>
|
<div id="app" ></div>
|
||||||
<div id="app"></div>
|
<p style="line-height: 50px; height: 230px;"> </p>
|
||||||
<div id="lastfm-widget"></div>
|
<div id="lastfm-widget"></div>
|
||||||
<div id="widget">
|
<div id="widget">
|
||||||
<div class="spacer230p"></div>
|
|
||||||
<p>Last played song</p>
|
<p>Last played song</p>
|
||||||
<span id="song"></span><br>
|
<span id="song"></span><br>
|
||||||
<div id="album-cover"></div>
|
<div id="album-cover"></div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<footer>
|
||||||
<p style="line-height: 50px; height: 210px;"> </p>
|
|
||||||
</footer>
|
</footer>
|
||||||
<script src="model.js"></script>
|
|
||||||
<script src="https://unpkg.com/webamp/built/webamp.bundle.min.js"></script>
|
<script src="https://unpkg.com/webamp/built/webamp.bundle.min.js"></script>
|
||||||
<script src="https://unpkg.com/butterchurn/lib/butterchurn.min.js"></script>
|
<script src="https://unpkg.com/butterchurn/lib/butterchurn.min.js"></script>
|
||||||
<script src="https://unpkg.com/butterchurn-presets/lib/butterchurnPresets.min.js"></script>
|
<script src="https://unpkg.com/butterchurn-presets/lib/butterchurnPresets.min.js"></script>
|
||||||
|
|
BIN
link.cur
Normal file
BIN
link.cur
Normal file
Binary file not shown.
After Width: | Height: | Size: 766 B |
1
model.js
1
model.js
|
@ -1 +0,0 @@
|
||||||
window.wallpaperPropertyListener={applyUserProperties:function(a){if(a.model){clearTimeout(timer);timer=0;document.getElementsByClassName('model')[0].innerHTML='';model=a.model.value;balanceSpeed(model);generate()}if(a.color||a.backgroundcolor){const b=(c,d)=>{const e=d.split(' ').map(f=>Math.ceil(f*255));document.getElementsByClassName(c)[0].style.color=`rgb(${e})`};if(a.color)b('model',a.color.value);if(a.backgroundcolor)b('bg',a.backgroundcolor.value)}if(a.animationspeed){basedAnimationSpeed=a.animationspeed.value;balanceSpeed(model)}if(a.stopanimation){clearTimeout(timer);timer=0;stopA=a.stopanimation.value;if(!stopA){document.getElementsByClassName('model')[0].innerHTML='';generate()}}}};let animationSpeed=50,stopA=!1,timer;generate();function balanceSpeed(){animationSpeed=basedAnimationSpeed}function generate(){let A=1,B=1;const generateFrame=()=>{const b=Array(1760).fill(" "),z=Array(1760).fill(0);A+=.07;B+=.03;for(let j=0;j<6.28;j+=.07){const ct=Math.cos(j),st=Math.sin(j);for(let i=0;i<6.28;i+=.02){const sp=Math.sin(i),cp=Math.cos(i),h=ct+2,D=1/(sp*h*Math.sin(A)+st*Math.cos(A)+5),t=sp*h*Math.cos(A)-st*Math.sin(A);const x=Math.floor(40+21*D*(cp*h*Math.cos(B)-t*Math.sin(B))),y=Math.floor(12+10.5*D*(cp*h*Math.sin(B)+t*Math.cos(B))),o=x+80*y,N=Math.floor(8*((st*Math.sin(A)-sp*ct*Math.cos(A))*Math.cos(B)-sp*ct*Math.sin(A)-st*Math.cos(A)-cp*ct*Math.sin(B)));if(y<22&&y>=0&&x>=0&&x<79&&D>z[o]){z[o]=D;b[o]=".,-~:;=!*#$@"[Math.max(N,0)]}}}const formattedOutput=[];for(let i=0;i<22;i++)formattedOutput.push(b.slice(i*80,(i+1)*80).join(''));document.getElementsByClassName('model')[0].innerHTML=formattedOutput.join("\n")};const timeoutRender=()=>{generateFrame();if(!stopA)timer=setTimeout(timeoutRender,animationSpeed)};timeoutRender()}
|
|
58
projects.html
Normal file
58
projects.html
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<link rel="icon" type="image/x-icon" href="./favicon.png">
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>CS/</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
background-color: black;
|
||||||
|
color: green;
|
||||||
|
font-family: monospace;
|
||||||
|
margin: 0;
|
||||||
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
color: lightgreen;
|
||||||
|
}
|
||||||
|
.terminal {
|
||||||
|
width: 80%;
|
||||||
|
margin-top: 20px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.command {
|
||||||
|
color: lightblue;
|
||||||
|
}
|
||||||
|
ul {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
margin: 5px 0;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: white;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
.space::before {
|
||||||
|
content: '\00A0';
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="terminal">
|
||||||
|
<ul>
|
||||||
|
<li><p><span class="command"><a href="./index.html">./</a></span></p></li>
|
||||||
|
<li><span class="space"></span><span class="command"><a href="./CS/">CS/</a></span></li>
|
||||||
|
<li><span class="space"><span class="space"></span><span class="command"><a href="./CS/ProblemSolvingProcess/">Problem Solving Process</a></span></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,9 +1,7 @@
|
||||||
const CACHE_NAME = 'v1';
|
const CACHE_NAME = 'v1';
|
||||||
const URLS_TO_CACHE = [
|
const URLS_TO_CACHE = [
|
||||||
'./',
|
|
||||||
'./favicon.png',
|
'./favicon.png',
|
||||||
'./cursor.cur',
|
'./cursor.cur',
|
||||||
'./index.js',
|
|
||||||
'https://unpkg.com/webamp/built/webamp.bundle.min.js',
|
'https://unpkg.com/webamp/built/webamp.bundle.min.js',
|
||||||
'https://unpkg.com/butterchurn/lib/butterchurn.min.js',
|
'https://unpkg.com/butterchurn/lib/butterchurn.min.js',
|
||||||
'https://unpkg.com/butterchurn-presets/lib/butterchurnPresets.min.js',
|
'https://unpkg.com/butterchurn-presets/lib/butterchurnPresets.min.js',
|
||||||
|
|
Loading…
Add table
Reference in a new issue