Skip to content

Instantly share code, notes, and snippets.

View pavanpej's full-sized avatar
Supercharging

Pavan Rao pavanpej

Supercharging
View GitHub Profile
@pavanpej
pavanpej / RotateExample.tsx
Last active July 26, 2024 02:32
"Yet Another React Lightbox" custom plugin for image rotation
// based off of https://stackblitz.com/edit/yet-another-react-lightbox-examples?file=src/examples/FullscreenPlugin.tsx&initialPath=/examples/basic
import * as React from "react";
import Lightbox from "yet-another-react-lightbox";
import Rotate from "@/examples/RotatePlugin"
import { LightboxButton, Paragraph, Title } from "@/components";
import slides from "@/data/slides";
export default function RotateExample() {
@pavanpej
pavanpej / Intro to ES6+ (Scrimba).md
Created February 1, 2019 08:49
Notes for the Scrimba course: Intro to ES6+.

Intro to ES6+

Course on Scrimba.

Some prior programming experience is needed when reading these notes to understand things like variables, data types, and some data structures like arrays and objects.

This course includes newly introduced features in ES6, ES7 and ES8. Some additions make JS a lot easier to use.

@pavanpej
pavanpej / Intro to JS (Scrimba).md
Last active February 1, 2019 08:51
Notes for the Scrimba course: Intro to JS.

Intro to JS

Course on Scrimba.

Some prior programming experience is needed when reading these notes to understand things like variables, data types, and some data structures like arrays and objects.