ERROR 403 when
git push
Error message:
remote: Permission to ....... denied to ......
fatal: unable to access '......git/': The requested URL returned error: 403
Solution:
git remote set-url <name> [email protected]:<username>/<repo>.git
git push
Example:
/workspaces/CS50x2022/ $ git remote set-url origin [email protected]:ngocpham1994x/CS50x2022.git
/workspaces/CS50x2022/ $ git push
These are my own work for labs and assginments of CS50x2022 by Harvard College/OpenCourseWare.
In each week, there is a summary of knowledge that is worth to know and practice, as well as some extra shorts, videos or links I find helpful along the way to study for CS50.
Please note: I DON'T USE CS50.h LIBRARY IN MY 2022 WORK
Course materials:
Enjoy and Happy coding! 🤖
-
Week 0 Scratch
-
Week 1 C
- Knowledge sum-up:
- useful commands:
cd
,cp
,ls
,mkdir
,mv
,rm
,rmdir
, ... - conditions:
if..else
- loops:
for
,do..while
,while
- format output
%i
,%li
,%c
- limitations (32-bit, 64-bit), truncation
- abstraction (waterfall compiling), imprecision of 1/2, overflow, casting var type
- useful commands:
- Lab:
- Problem Set 1:
- Knowledge sum-up:
-
Week 2 Arrays
- Lab: scrabble.c
- Problem Set 2:
-
Week 3 Algorithms
- Lab: sort
- Problem Set 3:
- plurality.c
- runoff.c
- tideman.c - status: INCOMPLETE
-
Week 4 Memory
-
Week 5 Data Structures
- Lab: inheritance.c
- Problem Set 5:
-
Week 6 Python
- Lab: worldcup - tournament.py
- Problem Set 6:
-
Week 7 SQL
- Lab: songs
- Problem Set 7:
-
Week 8 HTML, CSS, JavaScript
-
Week 9 Flask
-
Week 10 Emoji
- Final Project: Gas Logger
-
Extras:
-
Security
-
Artificial Intelligence
-