Never Lose a Good Snippet Again
Stop re-solving the same problems. Build your personal, searchable library of useful functions, commands, and boilerplate code, accessible from any device.
Start Organizing Your Code - Free- Rewriting the same function for the fifth time?
- Forgetting complex but useful syntax?
- Are your best snippets lost in random files?
- Is sharing code via Slack or email messy?
Experience it Live. No Signup Required.
This is a real, read-only version of the app. Click any clip to copy its content. See for yourself how fast and intuitive it is. On the full version, you can add, edit and arrange your own clips.
.btn-primary {
color: #fff;
background: #7C3AED;
border-radius: 8px;
padding: 1rem 2rem;
}
const btn = document.querySelector('#submit');
btn.addEventListener('click', () => {
console.log('Button clicked!');
});
<i class="fa-regular fa-paper-plane"></i>
git commit -m "feat: Add user authentication flow"
{
"id": 123,
"username": "alex",
"isActive": true
}
background-image: linear-gradient(
to right,
#7C3AED,
#A78BFA
);
[gallery ids="12, 34, 56" columns="3"]
// ParentComponent.js
import React from 'react';
import ChildComponent from './ChildComponent';
const ParentComponent = () => {
const userName = "Alice";
const userAge = 25;
return (
<div>
<h1>Parent Component</h1>
<ChildComponent name={userName} age={userAge} />
</div>
);
};
export default ParentComponent;
<i class="fa-regular fa-truck"></i>