Week 01¶
Principles and Practices¶
Project Management¶
This week I organized all of the resources offered by FAB Academy into a master folder for quick access. Here are my highlights:
- I prodded this resource on bash : https://guide.bash.academy/commands/#toc7
- I sketched some ideas for my final project
- I created a master calendar for due dates and assignments
- I set some goals and am still in the process of finalizing my planner and agenda
Git Exercise¶
This was the exercise done in class:
1. Generate a New SSH Key¶
The following was the code used:
- git config –global user.name “your_username”
-
git config –global user.email “your_email.com”
-
ssh-keygen -t rsa -C “your_email.com”
- cat ~/.ssh/id_rsa.pub
- pbcopy < ~/.ssh/id_rsa.pub
I set up my website using the exercise done in class and then I went through Alterntaive B on my own settin up a dummy wbesite for practice:
- mkdir my_site
- cd my_site
- git init
- == uv init==
- uv add mkdocs-material
- uv run mkdocs new
- previewing your site locally : uv run mkdocs serve –livereload
- Make changes on the website
- git add
- ==git commit -m”ALternative B”
Resources¶
- Animation : https://prismic.io/blog/css-animation-examples
- CSS and HTML tutorials : https://www.w3schools.com/js/js_htmldom_animate.asp#gsc.tab=0
- Bash Textbook : https://guide.bash.academy/commands/#toc7