-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
23 lines (21 loc) · 2.39 KB
/
about.html
File metadata and controls
23 lines (21 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html><script>if (localStorage.getItem('theme') === 'toggled') {
document.documentElement.classList.add('theme-toggled');
}</script><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=Barlow:wght@200;400&family=Bitter&family=Inconsolata&display=swap" rel=stylesheet><link rel=icon type=image/svg+xml href=/notcodinglogo-filled.svg><link rel=stylesheet href=/css/style.css><link rel=stylesheet href=/css/atom-one-light.css><meta name=viewport content="width=device-width,initial-scale=1"><title>About //notcoding.today</title><input type=checkbox id=theme-toggle class=theme-toggle> <label for=theme-toggle class=theme-label><span class=icon-sun>☀</span> <span class=icon-moon>☾</span></label><header><img src=/notcodingtoday.svg alt=//notcoding.today><hr><div class=navigation><a href=/about>About</a> <a href=/ >Blog</a></div><hr></header><div class=blog><h1>Profile</h1><div class=center><p><a href=https://github.com/notcodingtoday>GitHub</a> | <a href=https://twitter.com/notcodingtoay>@notcodingtoday</a></div><pre><code>Name : Nocoto Day. You can call me Noco.
Job : Software Engineer at big tech.
Location : Not US.
Politics : Listen to both sides.
Cat/Dog : Both!
</code></pre><h2>I am good at</h2><ul><li>Scoping work and setting expectations.<li>Global-scale infrastructure design and management.<li>Diving into areas of unknown and delivering sustainable results.<li>People-relationship management and emotional de-escalation.</ul><h2>Ongoing personal projects</h2><ul><li><a href=https://eggrice.soy/ >Game development</a>.<li>Music covers.</ul><h2>Non-tech & non-nerdy hobbies</h2><p>Playing electric guitar, singing, gymming (big3 400kg), blogging, photography.</div><footer><hr><p>2020-2025 Copyright. All Rights Reserved.</footer><script>const toggle = document.getElementById('theme-toggle');
const html = document.documentElement;
// Sync checkbox with html class state
toggle.checked = html.classList.contains('theme-toggled');
// Save preference on toggle
toggle.addEventListener('change', () => {
if (toggle.checked) {
html.classList.add('theme-toggled');
localStorage.setItem('theme', 'toggled');
} else {
html.classList.remove('theme-toggled');
localStorage.removeItem('theme');
}
});</script>