Skip to content

Instantly share code, notes, and snippets.

View devvyyxyz's full-sized avatar
🧨
Fixing useless code

DevvyyXYZ devvyyxyz

🧨
Fixing useless code
View GitHub Profile
@devvyyxyz
devvyyxyz / dark-mode-toggle.js
Created February 11, 2026 08:18
Persistent dark mode toggle with localStorage
/**
* Dark Mode Toggle
* Made by Devvyyxyz
*/
const toggle = document.createElement("button");
toggle.textContent = "🌙";
toggle.style.position = "fixed";
toggle.style.top = "20px";
toggle.style.right = "20px";
@devvyyxyz
devvyyxyz / smooth-scroll-active-nav.js
Created February 11, 2026 08:17
Lightweight smooth scroll + auto-active nav link (no dependencies)
/**
* Smooth Scroll + Active Navigation
* Made by Devvyyxyz
* https://devvyyxyz.com
*/
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
@devvyyxyz
devvyyxyz / index.html
Created February 11, 2026 08:14
Devvyyxyz – Reusable Website Credit Popup
<script src="https://devvyyxyz.github.io/devvyyxyz-popup/script.js"></script>