Skip to content

1. Project management

First, create a personal website where you introduce yourself and your final project in detail. Include sections where you introduce yourself, describe the purpose and technical aspects of your project, and provide contact information. Second, upload your website to the class archive or platform of choice. Finally, work through a Git tutorial that covers installation, repository setup, basic commands (such as add, commit, branch), collaboration (including branching, merging, and pulling), and conflict resolution. These steps will teach you important version control and project management skills.

I continue to modify the pages by adding a profile picture and highlighting previous work in fab lab. All changes were made locally with Atom and then transferred to the online repository.

Additional website editing

I wanted to customize my interface a little in order to reflect myself without changing the actual theme. So I used Material for MkDocs to achieve that.

So I changed the font, header color and text color in Mkdocs.yml

And here how it looks!

Research

“Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.”

“Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.”

Code Example

Use the three backticks to separate code.

// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

click here to download my file

files

click to download my car model

Video

From Vimeo

Sound Waves from George Gally (Radarboy) on Vimeo.

From Youtube

3D Models

Use HTML

You may also embed HTML in your markdown files


Try having a seperator line


ID First Name Last Name
235312 John Doe
453123 Mark Jones
998332 Jonathan Smith
345612 Andrew McArthur
453123 Adam Fuller

Last update: July 4, 2024