Explore

Explore snippets

Discover reusable code snippets, examples, fixes, and ideas shared by developers, students, and teams.

Public snippets by Geri
Clear
4 public snippets
Open
Python
Public

Asynchronous LRU Cache with TTL and Cleanup

Implements an asynchronous Least Recently Used (LRU) cache in Python that supports time-to-live (TTL) for entries, automatic eviction, and o...

Python Preview
import asyncio
import time
from collections import OrderedDict

class AsyncLRUCache:
    def __init__(self, maxsize):
        self.maxsize = maxsize
        self.cache = OrderedDict()  # key -> (value, expire_time)
        self.lock = asyncio.Lock()
Geri
Geri
Updated: 2026-08-20 13:43
Public snippets
0 #210
Open
HTML / Markup
Public

Animated Modern Login Form

A sleek, animated login form with email and password fields, glowing Sign In button, and smooth hover effects.

HTML / Markup Preview
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Animated Login Form</title>
<style>
Geri
Geri
Updated: 2026-08-17 15:47
Public snippets
0 #248
Open
HTML / Markup
Public

Modern Animated Login Form

An animated login form with email and password fields, glowing Sign In button, and smooth hover effects.

HTML / Markup Preview
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>Animated Login Form</title>
  <style>
Geri
Geri
Updated: 2026-08-17 14:32
Public snippets
0 #246
Open
HTML / Markup
Public

Animated Login Form

A modern login form with email and password fields, glowing Sign In button, and smooth hover animations.

HTML / Markup Preview
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Animated Login Form</title>
<style>
Geri
Geri
Updated: 2026-08-17 14:27
Public snippets
0 #245
CodShot AI Help
Ask about CodShot features, plans, workspace, AI limits, referrals, and public help topics.
Hi! I can help you understand how CodShot works. What would you like to know?
For account-specific or sensitive issues, please open a support ticket. Open support