Skip to content

Commit 4ffead4

Browse files
Merge pull request nus-cs2113-AY2324S1#4 from junhyeong0411/master
Added information for team member: Bang Junhyeong
2 parents 7f101cf + a131e80 commit 4ffead4

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

docs/AboutUs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ Display | Name | Github Profile | Portfolio
66
![](https://media.licdn.com/dms/image/C4D03AQGTLbALYjG82Q/profile-displayphoto-shrink_800_800/0/1580629728751?e=1701907200&v=beta&t=PEfw_qZfZA39rJRfo5_Pg4o_RmbPwdneiPX3ftNt9dA) | Wendelin Wemhoener | [Github](https://github.com/wendelinwemhoener/) | [Portfolio](docs/team/wendelinwemhoener.md)
77
![](https://via.placeholder.com/100.png?text=Photo) | Zhu Jingxi | [Github](https://github.com/Cheezeblokz) | [Portfolio](docs/team/zhujingxi.md)
88
![](https://via.placeholder.com/100.png?text=Photo) | Kherlen Bayasgalan | [Github](https://github.com/Brian030601) | [Portfolio](docs/team/kherlenbayasgalan.md)
9-
![](https://via.placeholder.com/100.png?text=Photo) | John Roe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md)
9+
![](https://via.placeholder.com/100.png?text=Photo) | Bang Junhyeong | [Github](https://github.com/junhyeong0411) | [Portfolio](docs/team/bangjunhyeong.md)
1010
![](https://via.placeholder.com/100.png?text=Photo) | Don Roe | [Github](https://github.com/) | [Portfolio](docs/team/johndoe.md)

docs/team/bangjunhyeong.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Bang Junhyeong - Project Portfolio Page
2+
3+
## Overview
4+
5+
6+
### Summary of Contributions
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package seedu.duke;
2+
3+
import java.io.File;
4+
import java.io.FileNotFoundException;
5+
import java.io.FileWriter;
6+
import java.util.Scanner;
7+
8+
/**
9+
* storage for flashcards
10+
* Flashcard implementation should be finished first
11+
*/
12+
public class Storage {
13+
// simply implemented for save & load first
14+
15+
protected String path;
16+
17+
public Storage(String path){
18+
this.path = path;
19+
}
20+
21+
22+
public void loadFlashcards() throws FileNotFoundException{
23+
24+
File f = new File (this.path);
25+
Scanner s = new Scanner(f);
26+
27+
}
28+
}

0 commit comments

Comments
 (0)