Principles and Practices/Project Management

Back to Home

Goals

Git and Version Control

In the Fab Academy program, version control is an essential tool for managing projects and documentation. I explored multiple ways of working with Git, including local setup and online editing, and ultimately chose the method that best suits my workflow.

Attempting Local Deployment

To better understand the principles of version control, I first experimented with a local Git environment. Here are the steps I followed:

  1. I installed Visual Studio Code as my local text editor.
  1. After editing the files locally, I used the following Git workflow:
git pull
            git add .
            git commit -m "Updated weekly assignment"
            git push

Through this process, I gained hands-on experience with the complete Git workflow, including:

Choosing the Web IDE

Although local deployment is powerful, I found it to be less efficient for my workflow, especially when switching between devices or making quick edits. Eventually, I decided to use the GitLab Web IDE, which is intuitive, fast, and requires no local setup.

Here’s my current workflow:

  1. I log into GitLab;
  2. Open my student repository and launch the Web IDE;
  3. Edit files such as index.html or weekly documentation;
  4. Write a commit message and click “Commit”;
  5. GitLab automatically records the version and pushes the update.

What I Learned and Reflections

By trying both approaches, I not only learned the practical use of Git but also understood the differences and advantages of each method:

This experience helped me appreciate Fab Academy’s “learning by doing” philosophy. More importantly, it allowed me to choose a workflow that keeps me productive and focused while still respecting good version control practices.


Building a Personal Website

Task:

In this week's assignment, my goal is to set up a personal website using GitLab Pages and document the entire website design process.

To complete the task more efficiently, I used ChatGPT as an assistant to help me design the website structure, optimize CSS styles, adjust the layout, and enhance interactive effects.

Below is the complete record of the design and implementation process.

Creating GitLab Pages and Initializing the Website

First, I decided to use HTML + CSS + JavaScript as the technology stack for the website and deploy it via GitLab Pages. I consulted ChatGPT and finalized the following website structure:

ChatGPT suggested using a minimalist tech-style design and incorporating elements like neon lighting, glassmorphism, and particle animations to enhance the visual appeal.

Choosing the Website Architecture

Process:

Designing the Website Homepage

Homepage Layout

With the help of ChatGPT, I created index.html, which includes:

Partial index.html Code: