Skip to content

Instantly share code, notes, and snippets.

View bhatvikrant's full-sized avatar
👨‍💻
Tap Tap Tap

Vikrant Bhat bhatvikrant

👨‍💻
Tap Tap Tap
View GitHub Profile
[
{
keyword: 'Spinnaker',
title: 'Redis Issue',
url: 'https://alpha.razorpay.com/repo/spinnaker-redis-issue',
description:
'When spinnaker https://deploy.razorpay.com/ starts lagging due to redis cache getting full, following are the steps to clear the cache..',
},
{
keyword: 'Spinnaker',
@bhatvikrant
bhatvikrant / rize-company-name-search.js
Last active August 30, 2023 10:16
Rize company name search custom script
// @ts-check
// const BASE_URL = "https://rize-dashboard.razorpay.com";
const BASE_URL = "https://rize.np.razorpay.in";
var searchTerm = "";
var isCompanyNameSearchLoading = false;
var isTrademarkSearchLoading = false;
@bhatvikrant
bhatvikrant / quotes.json
Last active October 18, 2023 17:23
Inspiring Quotes for Vikrant
[
"Hire character, train skills",
"Appreciation goes a long way",
"Take every experience in life as an experiment then there are no failures, only learning opportunities",
"Persuasion is an art that requires a paintbrush, not a sledgehammer",
"True genius is the ability to simplify, not complicate",
"What the smartest people do on the weekend is what everyone else will do during the week in ten years",
"You are not stupid you are unfamiliar with the codebase",
"He who asks a question is a fool for five minutes; he who does not ask a question remains a fool forever.",
"A good relationship with money is created in your childhood.",
@bhatvikrant
bhatvikrant / gist:f335eaa3ab44eb02428329f795972aa1
Last active October 18, 2021 06:56
Remove .env from git history if you have committed environment variables by mistake
git filter-branch --index-filter "git rm -rf --cached --ignore-unmatch .env" HEAD
git push --force