Skip to content

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:

  1. I prodded this resource on bash : https://guide.bash.academy/commands/#toc7
  2. I sketched some ideas for my final project
  3. I created a master calendar for due dates and assignments
  4. 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:

  1. git config –global user.name “your_username”
  2. git config –global user.email “your_email.com”

  3. ssh-keygen -t rsa -C “your_email.com”

  4. cat ~/.ssh/id_rsa.pub
  5. 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:

  1. mkdir my_site
  2. cd my_site
  3. git init
  4. == uv init==
  5. uv add mkdocs-material
  6. uv run mkdocs new
  7. previewing your site locally : uv run mkdocs serve –livereload
  8. Make changes on the website
  9. git add
  10. ==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