Explore
Explore snippets
Discover reusable code snippets, examples, fixes, and ideas shared by developers, students, and teams.
Public snippets by Geri
4 public snippets
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()
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>
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>
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>