Skip to content

Instantly share code, notes, and snippets.

View amruthpillai's full-sized avatar
🎯
Building Reactive Resume

Amruth Pillai amruthpillai

🎯
Building Reactive Resume
View GitHub Profile
@amruthpillai
amruthpillai / vercel-now-zoho-mail-setup.md
Last active April 28, 2023 07:45
Zeit/Vercel Now CLI: Zoho Mail Setup

Run these lines on your command line one-by-one to ensure they are properly set. Make sure you replace the yourdomain.com, dkimKey and verifyCode variables before running.

now dns add yourdomain.com '@' TXT zoho-verification=verifyCode
now dns add yourdomain.com '@' MX mx.zoho.com 10
now dns add yourdomain.com '@' MX mx2.zoho.com 20
now dns add yourdomain.com '@' MX mx3.zoho.com 50

# SPF
@amruthpillai
amruthpillai / javascriptreact.json
Last active July 7, 2020 17:15
Import CSS Module with Current React Component Name
{
"Import CSS Module": {
"prefix": "imcss",
"body": [
"import styles from \"./$TM_FILENAME_BASE.module.css\";",
"$2",
],
"description": "Import CSS Module with Current React Component Name"
}
}