-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
168 lines (153 loc) · 7.61 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/img/favicon.svg">
<meta name="theme-color" content="#161e19">
<meta charset="utf-8">
<title>Предраг Николић</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&family=Yeseva+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Jura:[email protected]&family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&family=Yeseva+One&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/main.css">
<meta name="description" content="Програмер из Ликодре."/>
</head>
<body>
<section class="flex justify-center align-center text-center" style="height: 100lvh; width:100%">
<canvas id="perlin-noise-bg" style="height: 100lvh; width:100%"></canvas>
<div class="container p-2">
<img class="profile_image" src="./img/compressed.jpg">
<div>
<h1 class="profile_name" title="Predrag Nikolic">Предраг Николић</h1>
<div class="profile_description">
</div>
</div>
</div>
</section>
<section class="min-100dvh flex column darken">
<div class="container grow p-2 relative">
<h1 class="mb-2">Blog</h1>
<ul class="timeline">
<li class="timeline_item">
<time class="block mb-1">2024 September 27</time>
<article>
<a href="/blog/pravoslavna-knjizara-is-live.html">"Православна Књижара" is now live</a>
</article>
</li>
<li class="timeline_item">
<time class="block mb-1">2024 May 5</time>
<article>
<a href="/blog/visualize-your-database.html">Visualize your database</a>
</article>
</li>
<li class="timeline_item">
<time class="block mb-1">2024 Jan 6</time>
<article>
<a href="/blog/pesme-moga-pradede.html">Песме мога прадеде</a>
</article>
</li>
<li class="timeline_item">
<time class="block mb-1">2023 Jun 9</time>
<article>
<a href="/blog/git-diff-view-0-6-0-release.html">GitDiffView 0.6.0 is released</a>
</article>
</li>
<li class="timeline_item">
<time>1995</time> - Born
</li>
</ul>
<img src="/img/dots.svg" class="home_dots">
</div>
<p class="container grow text-center font-xl pb-2" id="js-advice">
<!-- js will populate this -->
</p>
<footer class="container text-center bt-2 p-2 flex align-center justify-end gap-1 opacity-08">
<a target="_blank" href="https://github.com/predragnikolic">
<img src="/img/github.svg" class="github_logo">
</a>
<a target="_blank" href="/rss.xml">
<img src="/img/rss.svg" class="github_logo">
</a>
</footer>
</section>
<script>
const advices = [
'Живот је кратак, поједи батак – Даниела Метикош',
'Ретко кад је нешто проблем – Игорь Евсюков',
'Један коњ увек вуче више – моја мама',
'Треба знати када стати',
'Некад треба направити 5 корака назад да би могао 10 напред – Сава Габоров',
'И највеће измене се некад не виде',
'За моје лично достигнуће и перформанс одавно не марим. Срећан сам ако помогнем – Василије Мицић',
`Слобода отвара народу очи, да упозна своје мане, па да их лечи, слобода му даје прилике, да позна своје врлине, те да их развија и улаже у делатности којом челичи своју снагу, унапређује своје умно и физичко благостање, да собом и у сарадњи. са осталим народима, примиче цело човечанство циљу, који му је Богом намењен. – Петар I Карађорђевић`
]
const advice = advices[Math.floor(Math.random() * advices.length)];
const [text, author='unknown']= advice.replace(/\n/g, '<br/>').split('–')
const el = document.getElementById('js-advice')
el.innerHTML = `<p>
<span>"</span>
${text}
<span class="last-quote">"</span>
</p>
<p class="font-l">- ${author}</p>`
</script>
<script type="module">
import {createNoise2D} from "https://unpkg.com/[email protected]/dist/esm/simplex-noise.js"
const noise2D = createNoise2D();
const canvas = document.querySelector('canvas')
const ctx = canvas.getContext('2d')
let frame = 1
const draw = () => {
ctx.fillStyle = "#d0d2ce"
const gridWidth = canvas.width
const gridHeight = canvas.height
ctx.fillRect(0, 0, gridWidth, gridHeight)
const rows = 66
const cols = gridWidth > 1000 ? 66 : 99
const cells = rows * cols,
cellWidth = gridWidth / cols,
cellHeight = gridHeight / rows;
for (let row = 0; row < rows; row++) {
for (let col = 0; col < cols; col++) {
const x = col * cellWidth,
y = row * cellHeight;
const w = cellWidth * 0.8
const h = cellWidth * 0.8
const n = noise2D(x * 0.001 + frame, y * 0.001)
const m = noise2D(x * 0.003 + frame, y * 0.003)
frame += 0.000001
const angle = n * Math.PI * 0.2
ctx.save()
ctx.translate(x, y)
ctx.translate(cellWidth * 0.5, cellHeight * 0.5)
ctx.rotate(angle)
ctx.beginPath()
ctx.moveTo(w * -0.5, 0)
ctx.strokeStyle = "rgba(0, 0, 0," + 0.06 * m * Math.PI * 0.06 + ")"
ctx.stokeOpa
ctx.lineWidth = 2
ctx.quadraticCurveTo(0, h * -100 * (n / 2), w * 100, 0); // Quadratic curve to create wave effect
ctx.stroke()
ctx.restore()
}
}
requestAnimationFrame(draw)
}
const setCanvasSize = () => {
canvas.width = window.innerWidth
canvas.height = window.innerHeight
}
setCanvasSize()
draw()
const isMobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent);
if (!isMobile) {
window.addEventListener('resize', (e) => {
requestAnimationFrame(() => {
setCanvasSize()
})
})
}
</script>
</body>
</html>