// a sandbox of 139 sharp tools
QR, barcodes, bcrypt hashes for PHP, UUIDs, JWT decoders, color palettes — fast, local, no signup. Search the sandbox and start.
Developer · tool
Deployment + Service YAML with probes and resource limits.
apiVersion: apps/v1
kind: Deployment
metadata:
name: web
labels: { app: web }
spec:
replicas: 3
selector:
matchLabels: { app: web }
template:
metadata:
labels: { app: web }
spec:
containers:
- name: web
image: nginx:1.27-alpine
ports:
- containerPort: 80
resources:
requests: { cpu: "100m", memory: "128Mi" }
limits: { cpu: "500m", memory: "512Mi" }
readinessProbe:
httpGet: { path: /, port: 80 }
initialDelaySeconds: 3
livenessProbe:
httpGet: { path: /, port: 80 }
initialDelaySeconds: 10
---
apiVersion: v1
kind: Service
metadata:
name: web
spec:
selector: { app: web }
ports:
- port: 80
targetPort: 80
type: ClusterIP
ad space · horizontal
// about the sandbox
Every generator runs entirely in your browser. Your inputs never leave the page — no servers, no logging, no tracking pixels. Open the tool, get the thing, close the tab.
ad space · horizontal