Skip to content

Instantly share code, notes, and snippets.

View tika's full-sized avatar
🌿

tika

🌿
View GitHub Profile
@benja
benja / keybindings.json
Last active December 18, 2022 15:19
Visual Studio Code — Exclude .gitignore files on command
[
{
"key": "shift+cmd+[Period]",
"command": "settings.cycle.explorer.excludeGitIgnore"
},
]
@stolinski
stolinski / Example.tsx
Last active June 8, 2022 05:54
Route Transitions with Framer Motion
const FakeComponent = () => {
return (
<AnimatedRoutes exitBeforeEnter initial={false}>
<RouteTransition exact path="/some-route">
<NewUsers />
</RouteTransition>
<RouteTransition exact path="/yo" >
<Users />
</RouteTransition>
</AnimatedRoutes>
@nodaguti
nodaguti / quizlet-scraper.js
Last active September 14, 2025 19:42
Quizlet to CSV
/**
* Convert a list on Quizlet into CSV-formatted text.
* Usage:
* i) Copy and paste into your browser's console.
* ii) Run it!
*/
(() => {
const terms = document.getElementsByClassName('term');
const csv = [];