MD file cheatsheet -
md-cheatSheet
Keyboard Shortcuts Windows -
ShortcutsWindows
Keyboard Shortcuts Mac -
Keyboard Shotcuts Mac
Git -
oh-my-git
git-branches
Flexbox -
flexbox-froggy
flex-box-zombie
tower-defense
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Youtube channels | |
https://www.youtube.com/@WebDevSimplified - this guy breaks down React and CSS amazingly | |
https://www.youtube.com/@CodingGarden - This guy solves beginner katas in multiple ways (super recommend to help with js methods) | |
https://www.youtube.com/@cs50 - Great course on computer languages and computers in general. (Harvard taught) | |
https://www.youtube.com/@crashcourse - short videos explaining how computers and all the components work inside | |
https://www.youtube.com/@Fireship - Really great follow with interesting videos | |
https://www.youtube.com/@AniaKubow - This is the woman who teaches for Scrimba. Great teacher | |
//Websites to learn | |
https://scrimba.com - great free lessons for typescript and other libraries |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() { |
NewerOlder