Skip to content

Instantly share code, notes, and snippets.

View sagar-gavhane's full-sized avatar
🏠
Working from home

Sagar sagar-gavhane

🏠
Working from home
View GitHub Profile
@sagar-gavhane
sagar-gavhane / rename-files-js-to-ts
Created April 9, 2020 16:32
Rename files from .js to .ts
find app/src -name "*.js" -exec sh -c 'mv "$0" "${0%.js}.ts"' {} \;
@sagar-gavhane
sagar-gavhane / Noctis.itermcolors
Created February 23, 2020 07:43
Noctis iTerm theme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Alpha Component</key>
<real>1</real>
<key>Blue Component</key>
<real>0.554656982421875</real>
@sagar-gavhane
sagar-gavhane / README.md
Last active April 9, 2020 16:29
Create custom server for next.js dynamic routes

if we want to fetch pageId and versionId from this url: http://localhost:3001/xpm/editor/:pageId/:versionId then we need to do following things to make this happen.

install below pkg's from npm

  • express
  • body-parser
  • esm
  • next-routes

add scripts into package.json file

<div class="avatar">OP</div>
.avatar {
  width: 52px;
  height: 52px;
  display: flex;
 align-items: center;
@sagar-gavhane
sagar-gavhane / create_db.js
Created May 28, 2019 09:10
create dynamo db
const create_db = (dynamodb) => {
const params = {
TableName: 'feeds-subscriptions',
KeySchema: [
{ AttributeName: 'id', KeyType: 'HASH' },
],
AttributeDefinitions: [
{ AttributeName: 'id', AttributeType: 'S' },
],
ProvisionedThroughput: {
@sagar-gavhane
sagar-gavhane / embedded-file-viewer.md
Created May 15, 2019 13:17 — forked from tzmartin/embedded-file-viewer.md
Embedded File Viewer: Google Drive, OneDrive

Office Web Apps Viewer

('.ppt' '.pptx' '.doc', '.docx', '.xls', '.xlsx')

http://view.officeapps.live.com/op/view.aspx?src=[OFFICE_FILE_URL]

<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=[OFFICE_FILE_URL]' width='px' height='px' frameborder='0'>
</iframe>

OneDrive Embed Links

@sagar-gavhane
sagar-gavhane / mfa.js
Created March 20, 2019 08:16
AWS Cognito Backend Multi Factor Authentication (MFA)
// mfaSignIn.js
const AWS = require("aws-sdk");
try {
const credentials = {
email: "[email protected]",
password: "xxxxxxxxxxxxxx"
};
const params = {
@sagar-gavhane
sagar-gavhane / disableReactDevTool.jsx
Created January 16, 2019 12:51
Disable react dev tools in production.
if (!window.location.port && typeof window.__REACT_DEVTOOLS_GLOBAL_HOOK__ === 'object') {
window.__REACT_DEVTOOLS_GLOBAL_HOOK__.inject = function() {};
}
@sagar-gavhane
sagar-gavhane / WithoutFormik.jsx
Created January 13, 2019 10:08
WithoutFormik - Build forms in React, without the tears with Formik and Yup
import React from 'react'
import createRepository from './../services/createRepository'
class WithoutFormik extends React.Component {
state = {
name: '',
desc: '',
type: 'PUBLIC',
license: 'NONE',
errors: {
@sagar-gavhane
sagar-gavhane / multipleOfHundred.js
Created January 12, 2019 12:26
Yupjs multipleOfHundred custom validation
import * as Yup from "yup";
const values = 0;
const msg = "value should be multiple of hundred";
Yup.addMethod(Yup.number, "multipleOfHundred", function(msg) {
return this.test("test-name", msg, function(value) {
const { path, createError } = this;
return value % 100 === 0 && value !== 0;