-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
18 lines (16 loc) · 3.29 KB
/
index.html
File metadata and controls
18 lines (16 loc) · 3.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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>//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>Posts</h1><table class=post-list><tr class=entry><td class=date>2025-12-03<td class=separator>//<td class=title><a href=/blog/blind-faith>Learn to have blind faith</a><tr class=entry><td class=date>2024-03-23<td class=separator>//<td class=title><a href=/blog/google-ai-monopoly>Google is massively ahead in the AI battle of 2024</a><tr class=entry><td class=date>2023-02-11<td class=separator>//<td class=title><a href=/blog/conversational-search>Conversational Search - dumb large language model glues tech together</a><tr class=entry><td class=date>2023-01-22<td class=separator>//<td class=title><a href=/blog/the-downfall>The downfall of tech and preparation</a><tr class=entry><td class=date>2022-09-25<td class=separator>//<td class=title><a href=/blog/disagreeing-with-mandates>Disagreeing with organization mandates</a><tr class=entry><td class=date>2021-06-22<td class=separator>//<td class=title><a href=/blog/rust-strings-and-slices>Understanding Strings and slices in Rust</a><tr class=entry><td class=date>2020-11-29<td class=separator>//<td class=title><a href=/blog/happiness>Losing ability to seek happiness and how I regained it</a><tr class=entry><td class=date>2020-11-02<td class=separator>//<td class=title><a href=/blog/why-igcse-history>IGCSE History is the most important subject to study</a><tr class=entry><td class=date>2020-09-08<td class=separator>//<td class=title><a href=/blog/godot-interactive-grass>Interactive grass in Godot</a><tr class=entry><td class=date>2020-09-05<td class=separator>//<td class=title><a href=/blog/nvidia-vs-intel-2020>Nvidia vs Intel launch 2020</a><tr class=entry><td class=date>2020-09-01<td class=separator>//<td class=title><a href=/blog/this-blog>Third iteration of blogging</a></table></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>