snipX

Recent Snippets

Toggling dark mode on & off with Vanilla Js

<style>
        .dark {
            background-color: rgb(32, 44, 79);
            color: white;
            transition: all 0.5s ease;
        }
</st...
HTML
latorlator
16 days ago

How to get a word frequency count in a string.

words = "apple apple banana orange coconut grape orange coconut banana"
word_count = {}

for word in words.split():
    word_count[word] = word_count....
Python
latorlator
16 days ago

Dark Mode Hook for React

// Custom React hook for dark mode toggle
import { useState, useEffect } from 'react';

export function useDarkMode() {
  // Initialize with user's pr...
JavaScript
JimsonJimson
17 days ago