Skip to content

Instantly share code, notes, and snippets.

@1travelintexan
1travelintexan / cloudinary-setup.md
Created October 26, 2023 09:27
Cloudinary React (module-3)

1. Cloudinary account setup

Go to this link https://cloudinary.com/ and create your cloudinary account, verify your email and go through or skip the initial questions

After you are done you should be able to see the following in your dashboard:

  • Cloud Name
  • API key
  • API Secret
@1travelintexan
1travelintexan / coolLinks.js
Created August 11, 2023 15:44
Cool stuff to share and learn
unction Profile({ currentUser, setUser }: IProps) {
const navigate = useNavigate();
function handleUserImage(event: any) {
event.preventDefault();
let image = event.target.imageUrl.files[0];
let imageFormData = new FormData();
imageFormData.append("imageUrl", image);
async function sendImage() {