Skip to content

Commit e7871bf

Browse files
committed
changing docs structure
1 parent 1276723 commit e7871bf

17 files changed

+229
-113
lines changed

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,24 @@ The format will look as this:
7474
│ ├── readme4.md
7575
```
7676

77+
After that process, you need to add your section in <code>sidebars.ts</code> in order to display in documentation section.
78+
79+
```ts
80+
tutorialSidebar: [
81+
"intro",
82+
{
83+
type: "category",
84+
label: "WSL Installation",
85+
items: [
86+
"tutorial-wsl/sfu-vpn",
87+
"tutorial-wsl/why-wsl",
88+
"tutorial-wsl/wsl-installation_Windows",
89+
"tutorial-wsl/wsl-installation_macOS",
90+
],
91+
},
92+
];
93+
```
94+
7795
To contribute, please submit a Pull Request. Our executive team will review and confirm your submissions before they are published.
96+
97+
Thank you for your contribution!

blog/2023-01-16-pm/what-is-pm.md

-10
This file was deleted.

blog/2024-01-16-execs/execs.md

-10
This file was deleted.

blog/2024-09-23-blog.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
slug: first-post
3+
title: The Beginning of Documentation
4+
authors: [tommy]
5+
tags: [docusaurus]
6+
---
7+
8+
<!-- truncate -->
9+
10+
SFU Open-Source Development Club decided to utilize a documentation tool to provide valuable resources that help students who want to start learning programming and joining software projects. We will be using Docusaurus, an open-source tool made by Meta (Facebook) and will try to provide valuable tools to them. This tool will be open to everyone at Simon Fraser University. The update with our documentation will be shown in the Blog section. This idea has been suggested by Jiin Kim and deployed by Tommy Oh.

blog/2025-01-16-purpose-of-blog-feature.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
---
2-
slug: welcome
2+
slug: blog-feature
33
title: Purpose of blog feature
44
authors: [tommy]
55
tags: [how-to-use, docusaurus]
66
---
77

88
<!-- truncate -->
99

10-
The SFU Open Source Development Club will use the Docusaurus Blog feature to document the responsibilities and tips of project leads and club executives. The blogs can be based on personal experience or basic knowledge.
11-
12-
With permission from the club presidents, any SFU OS Dev Club executives, ex-executives, project leads (project managers), and project members can write blog posts. Blog posts can be .md or .mdx format.
10+
The SFU Open Source Development Club will use the Docusaurus Blog feature to show the documentation update and may add acknowledgement of the documentation. Writing blog posts strictly only for Presidents and Director of Technology.
1311

14-
If you are willing to write blog, please make your profiles in <code>authors.yml</code>:
12+
If you are writing blog, please make your profiles in <code>authors.yml</code>:
1513

1614
```yml
1715
slorber:

blog/2025-01-23-update-jan.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
slug: jan-update
3+
title: January update
4+
authors: [tommy]
5+
tags: [updates]
6+
---
7+
8+
<!-- truncate -->
9+
10+
Up until January, SFU Open-Source Development Club has updated Documentation about Windows Subsystem for Linux (WSL), Git Documentation, and Code Styling. Thank you for your contribution: [Sean Wotherspoon](https://github.com/Seanspoons), [Mehrab Uddin](https://github.com/uddinmehrab), and [Yoonsang Yoo](https://github.com/Yonny04).

blog/tags.yml

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
updates:
2+
label: updates
3+
permalink: /updates
4+
description: updates tag description
5+
16
how-to-use:
27
label: How to Use
38
permalink: /how-to-use

docs/code-styling/bad-code-styling.md

+20-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
---
22
sidebar_position: 3
33
---
4+
45
# Bad Code Style Examples
6+
57
These examples show how poor code style practices can lead to code that is difficult to read, maintain, and debug. Issues such as unclear naming, improper use of language features, inconsistent formatting, and poor error handling can all contribute to technical debt and reduce code quality.
8+
69
## Example 1: C - Addition Function
10+
711
```c
812
int add(int a,int b){printf("%d",a+b); // adds two numbers}
913
```
10-
## Why This is Bad Code Style:
14+
15+
### Why This is Bad Code Style:
1116
1217
No Spaces After Commas: There are no spaces between parameters (a,int b), making the code harder to read.
1318
@@ -18,11 +23,13 @@ Inline Comment Without Spacing: The comment (// adds two numbers) is directly at
1823
Single-Line Function Body: The entire function is written in one line, which reduces readability and makes debugging difficult.
1924
2025
## Example 2: Python - Improper List Sorting
26+
2127
```py
2228
def srt(lst):
2329
return lst.sort()
2430
```
25-
## Why This is Bad Code Style:
31+
32+
### Why This is Bad Code Style:
2633

2734
Non-Descriptive Function Name: The function name srt is not descriptive, making it unclear what the function does.
2835

@@ -31,20 +38,22 @@ Misuse of sort(): The function uses lst.sort(), which sorts the list in place an
3138
Lack of Documentation: There is no docstring or comment to explain what the function does or what parameters it takes.
3239

3340
## Example 3: JavaScript - Inconsistent Error Handling
41+
3442
```js
3543
function getData(url) {
36-
fetch(url)
37-
.then(response => {
38-
if (response.status != 200) {
39-
console.log('Error: ' + response.status);
40-
}
41-
return response.json();
44+
fetch(url)
45+
.then((response) => {
46+
if (response.status != 200) {
47+
console.log("Error: " + response.status);
48+
}
49+
return response.json();
4250
})
43-
.then(data => console.log(data))
44-
.catch(error => {});
51+
.then((data) => console.log(data))
52+
.catch((error) => {});
4553
}
4654
```
47-
## Why This is Bad Code Style:
55+
56+
### Why This is Bad Code Style:
4857

4958
Inconsistent Error Handling: The catch block is empty, which means that errors are not properly handled or logged, making debugging difficult.
5059

docs/code-styling/good-code-styling.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ sidebar_position: 2
33
---
44

55
# Good Code Style Examples
6+
67
These examples illustrate the benefits of following good code style practices, such as using descriptive naming, proper spacing, clear documentation, and effective error handling. These practices help improve readability, maintainability, and reduce the likelihood of bugs.
78

89
## Example 1: Java - Calculator Class
@@ -22,13 +23,13 @@ public class Calculator {
2223
}
2324
```
2425

25-
## Why This is Good Code Style:
26+
### Why This is Good Code Style:
2627

2728
Readable Function Name: The function name (addNumbers) is descriptive and follows a consistent naming convention, making it easy to understand the purpose of the function.
2829

2930
Proper Spacing: The code uses spaces between parameters (a, b) which makes the function signature more readable.
3031

31-
Descriptive Documentation: The comment block (/** */) provides detailed information about the function, including parameters and the return value. This helps other developers understand the code quickly.
32+
Descriptive Documentation: The comment block (/\*\* \*/) provides detailed information about the function, including parameters and the return value. This helps other developers understand the code quickly.
3233

3334
## Example 2: Python - Sorting a List
3435

@@ -45,7 +46,8 @@ def sort_numbers(numbers):
4546
"""
4647
return sorted(numbers)
4748
```
48-
## Why This is Good Code Style:
49+
50+
### Why This is Good Code Style:
4951

5052
Descriptive Function Name: The function name sort_numbers clearly describes what the function does.
5153

@@ -54,28 +56,26 @@ Docstring: The function includes a detailed docstring that describes the paramet
5456
Simplicity: The function body is simple and uses Python's built-in sorted() function, demonstrating a clear and efficient approach.
5557

5658
## Example 3: JavaScript - Fetching Data from an API
57-
``` js
59+
60+
```js
5861
async function fetchData(url) {
59-
try {
60-
const response = await fetch(url);
61-
if (!response.ok) {
62-
throw new Error('Network response was not ok');
63-
}
64-
const data = await response.json();
65-
console.log(data);
66-
} catch (error) {
67-
console.error('There has been a problem with your fetch operation:', error);
62+
try {
63+
const response = await fetch(url);
64+
if (!response.ok) {
65+
throw new Error("Network response was not ok");
6866
}
67+
const data = await response.json();
68+
console.log(data);
69+
} catch (error) {
70+
console.error("There has been a problem with your fetch operation:", error);
71+
}
6972
}
7073
```
71-
## Why This is Good Code Style:
74+
75+
### Why This is Good Code Style:
7276

7377
Error Handling: The use of try...catch ensures that errors during the fetch operation are properly handled, making the code more robust.
7478

7579
Clear Function Name: The function name fetchData makes it immediately clear that the function is fetching data.
7680

7781
Readability: Proper indentation and spacing make the code easy to follow. The use of descriptive error messages ('Network response was not ok') helps with debugging.
78-
79-
80-
81-

docs/intro-exec.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Executive Documentations
2+
3+
SFU Open-Source Development is a student club at SFU aimed at bringing together talented individuals from tech, design, and business. Our primary goal is to collaborate on projects that contribute to the community while providing valuable learning opportunities for our members.
4+
5+
This documentation will talk about general policies that executives need to follow, the description and requirements of each executive position, and good-to-have skills for executives.
6+
7+
This is for current executives for reference but also for people who want to apply for executive positions.
8+
9+
DO NOT EDIT this documentation section except presidents of the club.

docs/intro-pm.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
sidebar_position: 1
3+
---
4+
5+
# Intro to Project Management
6+
7+
This section will be documentation about project management. This project management documentation will discuss skills you definitely need to have as a Project Lead / Project Manager in Software Engineering. For instance, Software Design, Business Strategy, how to set up a CI / CD pipeline (GitHub Actions, etc.), test-driven development (TDD), etc. Thank you for considering yourself as the project lead. Your idea will benefit both our club and future colleagues who want to join software projects.
8+
9+
## Contribution
10+
11+
If you can contribute to our documentation about project lead, it will be very beneficial for future project leads. Thank you for your work. We have written a step-by-step tutorial in our Docs Github repository. To access it, please go to our [Docs repository](https://github.com/sfuosdev/Docs) or click the 'contribute' button at the header.

docs/intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ While this tool exists for current and future students in technology, you can al
3131

3232
### How to Contribute
3333

34-
We have written a step-by-step tutorial in our Docs Github repository. To access it, please go to our [Docs repository](https://github.com/sfuosdev/Docs) or click the 'contribute' button at the header.
34+
We have written a step-by-step tutorial in our Docs Github repository. To access it, please go to our [Docs repository](https://github.com/sfuosdev/Docs?tab=readme-ov-file#how-to-contribute).

docs/pm/pm.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Project Management
2+
3+
currently working on this page

docs/tutorial-wsl/wsl-installation_macOS.md

+46-34
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,36 @@
22
sidebar_position: 4
33
---
44

5+
# Alternative for MacOS
6+
57
## Usage of Linux on MacOS
8+
69
**MacOS** users needing a full Linux environment can use a virtual machine (VM) like VirtualBox or access a **Computer Science Instructional Lab (CSIL)** lab, where pre-configured Linux systems are available for development and testing.
710

811
## Virtual Machines
12+
913
The best way to utilize **Linux** in MacOS is to use a Virutal machine. \
1014
The following is a list of tools you can use to utilize Linux on MacOS
11-
- [VirtualBox](https://www.virtualbox.org/)
12-
- [Parallels Desktop](https://www.parallels.com/products/desktop/?utm_medium=cpc&utm_source=google&utm_campaign=PDfM%20-%20B%20-%20EN%20-%20PS%20-%20Tier1%20-%20Consolidated&utm_term=parallels%20desktop&utm_content=General&utm_id=43693686&extensionid=&matchtype=e&device=c&devicemodel=&creative=670597955224&network=g&placement=&x-source=ppc&gad_source=1&gclid=Cj0KCQiA-aK8BhCDARIsAL_-H9lFedZ818kCuJZZlEgaKsgUODiQpwheGeihp-XNp575bqQvPgHIAKAaAjVvEALw_wcB)
13-
- [VMware Fusion](https://blogs.vmware.com/teamfusion/2024/05/fusion-pro-now-available-free-for-personal-use.html)
14-
- [UTM](https://mac.getutm.app/)
15-
16-
There are many Virtual Machines out in the market but we personally recommand using **UTM** as it is free of use and it is macOS-native (Pre-installed)
15+
16+
- [VirtualBox](https://www.virtualbox.org/)
17+
- [Parallels Desktop](https://www.parallels.com/products/desktop/?utm_medium=cpc&utm_source=google&utm_campaign=PDfM%20-%20B%20-%20EN%20-%20PS%20-%20Tier1%20-%20Consolidated&utm_term=parallels%20desktop&utm_content=General&utm_id=43693686&extensionid=&matchtype=e&device=c&devicemodel=&creative=670597955224&network=g&placement=&x-source=ppc&gad_source=1&gclid=Cj0KCQiA-aK8BhCDARIsAL_-H9lFedZ818kCuJZZlEgaKsgUODiQpwheGeihp-XNp575bqQvPgHIAKAaAjVvEALw_wcB)
18+
- [VMware Fusion](https://blogs.vmware.com/teamfusion/2024/05/fusion-pro-now-available-free-for-personal-use.html)
19+
- [UTM](https://mac.getutm.app/)
20+
21+
There are many Virtual Machines out in the market but we personally recommand using **UTM** as it is free of use and it is macOS-native (Pre-installed)
1722

1823
## Recommended Linux Distribution for macOS Users
19-
| Name | Description |
20-
|------------------|------------------|
21-
| [Ubuntu](https://ubuntu.com/download/desktop) | User-friendly, great for beginners. |
22-
| [Pop!_OS](https://pop.system76.com/) | Optimized for productivity and developers. |
23-
| [Fedora](https://fedoraproject.org/) | Cutting-edge features and polished experience. |
24-
| [Debian](https://www.debian.org/distrib/) | Stable and reliable. |
25-
| [Elementary OS](https://elementary.io/) | Designed with a macOS-like interface. |
24+
25+
| Name | Description |
26+
| --------------------------------------------- | ---------------------------------------------- |
27+
| [Ubuntu](https://ubuntu.com/download/desktop) | User-friendly, great for beginners. |
28+
| [Pop!\_OS](https://pop.system76.com/) | Optimized for productivity and developers. |
29+
| [Fedora](https://fedoraproject.org/) | Cutting-edge features and polished experience. |
30+
| [Debian](https://www.debian.org/distrib/) | Stable and reliable. |
31+
| [Elementary OS](https://elementary.io/) | Designed with a macOS-like interface. |
2632

2733
## How to use Virtual Machine to use Linux
34+
2835
For demonstration purposes we will be using Ubunto ISO file uploaded to the VirtualBox as an example. We will also assume that users have already downloaded the required VM and Linux distribution file before reading this part of the tutorial.
2936

3037
There exists four major steps when using Virtual machines.
@@ -35,46 +42,51 @@ There exists four major steps when using Virtual machines.
3542
- Complete Post installation setup
3643

3744
### Step 1 Creating a new Virtual Machine in VirtualBox
45+
3846
1. Open VirtualBox:
39-
- Launch VirtualBox after installation.
47+
48+
- Launch VirtualBox after installation.
4049

4150
2. Create a New VM:
42-
- Click the "New" button to create a new virtual machine.
43-
- Enter a name for your VM (e.g., "Ubuntu VM").
44-
- Choose the type of operating system (e.g., Linux) and version (e.g., Ubuntu (64-bit)).
45-
- Click Next.
51+
- Click the "New" button to create a new virtual machine.
52+
- Enter a name for your VM (e.g., "Ubuntu VM").
53+
- Choose the type of operating system (e.g., Linux) and version (e.g., Ubuntu (64-bit)).
54+
- Click Next.
4655
3. Assign Memory (RAM):
4756

4857
- Decide how much memory (RAM) you want to allocate to the VM.
4958
- For Ubuntu, a minimum of 2 GB is recommended, but 4 GB is better if your Mac has enough RAM.
5059
- Click Next.
60+
5161
4. Create a Virtual Hard Disk:
5262

53-
- Choose Create a virtual hard disk now and click Create.
54-
- Choose the format for the virtual disk (e.g., VDI).
55-
- Choose the type of storage (dynamically allocated is fine).
56-
- Set the size of the virtual hard disk (e.g., 20 GB is a reasonable minimum).
57-
- Click Create.
63+
- Choose Create a virtual hard disk now and click Create.
64+
- Choose the format for the virtual disk (e.g., VDI).
65+
- Choose the type of storage (dynamically allocated is fine).
66+
- Set the size of the virtual hard disk (e.g., 20 GB is a reasonable minimum).
67+
- Click Create.
5868

5969
### Step 2 Mount the Linux ISO to the VM
70+
6071
- Mount the ISO:
61-
- In the settings window, go to Storage.
62-
- Under Controller: IDE, you’ll see an empty disk. Click the empty disk icon and then click the disk icon next to Optical Drive on the right.
63-
- Select Choose a disk file and navigate to the Ubuntu ISO file you downloaded earlier.
64-
- Select the ISO and click Open.
65-
- Click OK to save the settings.
72+
- In the settings window, go to Storage.
73+
- Under Controller: IDE, you’ll see an empty disk. Click the empty disk icon and then click the disk icon next to Optical Drive on the right.
74+
- Select Choose a disk file and navigate to the Ubuntu ISO file you downloaded earlier.
75+
- Select the ISO and click Open.
76+
- Click OK to save the settings.
6677

6778
### Step 3 Start the VM and download Linux
68-
-
69-
- start the VM
70-
- Install Linux
79+
80+
- - start the VM
81+
- Install Linux
7182

7283
### Step 4 Complete Post installation setup
84+
7385
1. log in to Linux with your login info
74-
2. Update the system by inputing the following commands to the terminal
86+
2. Update the system by inputing the following commands to the terminal
7587

76-
```
88+
```
7789
sudo apt update && sudo apt upgrade
7890
```
7991

80-
## Follow along a youtube tutorial on getting started with VMs [**(Here)**](https://youtu.be/FeJyAjDoLEw?si=_92-ksvIbqvLyfmr)
92+
Follow along a youtube tutorial on getting started with VMs [**(Here)**](https://youtu.be/FeJyAjDoLEw?si=_92-ksvIbqvLyfmr)

0 commit comments

Comments
 (0)