Project management

Week 1: Project Management

Asignment Spec: Draft working website utilizing learning project management lecture, Plan and sketch a potential final project document learnings.

01 — git and terminal

List item summary: I quickly recognized the need review important learnings from our lecture on git below is what I felt like are the essentials with refference for git and termina that I created to keep everythign straight.

Core Git Flow (as I understand it)

  1. You work from your connected folder
  1. You push that into a staging area where you essentially prep it for import in a holding zone.
  1. You then upload it the local repository which is like another holding zone for your commited changes
  1. Then upload from the local repo by 'pushing' it to the remote

Terminal vs Shell

Directory vs Repository

Key Repo Concepts

SSH keys and Linking the Fab Academy SSH Repo

  1. Walk through the provided Fab Academy login account setup so you have your own personal gitlab account you can log into.
  1. I created a folder on my desktop manually "FAB25_REPO"
  1. cd "FAB25_REPO" to make sure you are working in the directory you want
  1. Configure repo setttings
    git config --global user.name andrew-mark
    
    git config --global user.email andrew.mark@gmail.com
  1. Generate SSH key locally
    ssh-keygen -t ed25519 -C ""andrew.mark@gmail.com""
  1. Copy SSH key to clipboard
    cat ~/.ssh/id_ed25519.pub
  1. Go to fablab personal domain click → edit profile → SSH keys → add new key

  1. Clone git files from domain to your new linked repo this is found by clicking the 'code' button dropdown and then copying the "clone with SSH" link.

    git clone git@gitlab.fabcloud.org:academany/fabacademy/2025/labs/barcelona/students/andrew-mark.git 

Git Concepts

Fundamental Shell Commands

Core Git Commands

My Essential Added Shell Commands

02— Markdown, CSS, and HTML

List item summary: Will not go too deep as I did not review the syntex, but clarifying the function of these 3 was useful for me.

03 — Downloading Tools

List item summary: Tools that helped me during the process.

Homebrew

  1. Installed Homebrew using its installation guide.
  1. This enabled me to install wget for scraping website and brew git for leveraging a more feature rich git package that is more up to date.

VS Code

  1. Installed Visual Studio Code
  1. Added copilot in VS Code
  1. Added 'code .' shell command

04— General Research

List item summary: Tried several things before I settled on a site design.

  1. Searched through 2024 websites for web refference designs settled on one by Andrea Rubio - FAB24

  1. Suffered through editing her site then decided to just work from the source template by tracking it down from inspecting the orignal code base in my browser.

05 — Editing The Site

List item summary: Used VSCode and copilot exstensively to edit the site

  1. I worked to emulate the color pallete and design language of my personal site (can be found here) as well as utilizing some of the design language of Notion. I came up with something a bit more Notion-core than I intended, but here we are. I think it looks clean at least.

  1. Objects were edited and items were updated by using a pretty basic workflow of identify relevant HTML and CSS to update and editing them manually and viewing the changes locally. I have built website with web builders and new a little HTML so I was able to callout things I wanted to change in the copilot tab in VS code. This followed a patter of "update link for text x to y", "decrease card padded by 50%"

  1. I had my own custom .svg logo that I than added to the site by simply replacing the original logo.svg file with my own file I named logo.svg.

  1. I had to experiment to come up with a way of pushing finalized documentation that wasn't a pain in the a$$. I settled on a notion database from which I copy markdown into vs code copilot to then get converted into HTML.
  1. I am now experimenting with Image Magick as an efficient option to compress images in bulk through the command line.
  1. This is a hybrid command I developed to resize decrease quality and batch rename.

    magick mogrify -format jpg -quality 65 -strip -resize 800x -- *.jpg 2>/dev/null && ls -v -- *.jpg 2>/dev/null | awk '{printf "mv \"%s\" \"project_02_blender_2_%03d.jpg\"\n", $0, NR}' | bash

Thats it for now ;)