Skip to content

Instantly share code, notes, and snippets.

View ManishPoduval's full-sized avatar
💭
I may be slow to respond.

Manish Poduval ManishPoduval

💭
I may be slow to respond.
View GitHub Profile
https://repl.it/@ManishPoduval1/Traffic-lights-drill-2
@ManishPoduval
ManishPoduval / README.md
Last active February 23, 2021 03:40
Create React App first steps

##Complete the following steps:

  • Open your command line or terminal
  • cd into your projects directory
  • Run npx create-react-app APP_NAME to create a new folder called APP_NAME with a React app inside

eg npx create-react-app react-day2

OR

@ManishPoduval
ManishPoduval / coudinary.config.js
Last active October 20, 2020 15:52
Cloudinary Setup
// You need to run `npm i cloudinary multer-storage-cloudinary multer` to use cloudinary
// create this file in the 'config' folder
const cloudinary = require('cloudinary').v2;
const { CloudinaryStorage } = require('multer-storage-cloudinary');
const multer = require('multer');
// once you register on cloudinary you will get these three keys.
// store them in the .env file and reference them here
cloudinary.config({
@ManishPoduval
ManishPoduval / steps.md
Last active September 23, 2020 10:27
Canvas images

How to use images on canvas?

Step 1: create image tag withnew Image()

We will start with creating image tag, and the following line of code does exactly that:

let naturePic = new Image();
console.log("what is this: ", naturePic);
@ManishPoduval
ManishPoduval / Projects.md
Created September 10, 2020 13:07
WDFT-July-2020