Skip to content

Instantly share code, notes, and snippets.

View tarikbc's full-sized avatar
🚀

Tarik Caramanico tarikbc

🚀
View GitHub Profile
@tarikbc
tarikbc / clone-cursor.sh
Created January 6, 2026 00:52
Creates another instance of cursor so you can have multiple accounts
#!/bin/bash
# Script to clone a Cursor instance with separate profile
# Usage: ./clone-cursor-instance.sh <instance_name>
# Example: ./clone-cursor-instance.sh personal
set -e
# Colors for output
RED='\033[0;31m'
@tarikbc
tarikbc / removeSmooth.js
Created May 23, 2023 18:45
Remove smooth scrolling from website
((el = [...document.getElementsByTagName('script')].find(tag => tag.outerHTML.includes('scroll'))) => el ? el.parentNode.removeChild(el) : null)()