Skip to content

Commit

Permalink
Add more review posts
Browse files Browse the repository at this point in the history
  • Loading branch information
raararaara committed Feb 11, 2024
1 parent f6b6e5b commit b8f9a73
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 9 deletions.
6 changes: 4 additions & 2 deletions public/history/data/2021.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
"스코어보드",
"http://static.icpckorea.net/2021/scoreboard_preliminary"
]
]
],
"review": [["이민희(minigimbob)", "https://www.minigb.io/111"]]
},
{
"title": "ICPC World Finals Moscow",
Expand All @@ -50,7 +51,8 @@
"links": [
["공식 사이트", "https://worldfinals.icpc.global"],
["스코어보드", "https://pc2.ecs.baylor.edu/scoreboard"]
]
],
"review": [["임지환(raararaara)", "https://blog.naver.com/raararaara/222519851530"]]
},
{
"title": "SUAPC 2021 Summer",
Expand Down
10 changes: 9 additions & 1 deletion public/history/data/2022.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
"links": [
["공식 사이트", "http://icpckorea.org/2022-seoul/regional"],
["스코어보드", "http://static.icpckorea.net/20221119/scoreboard/"]
],
"review": [
["김동건(dong_gas)", "https://dong-gas.tistory.com/82"],
["이민희(minigimbob, 스태프 후기)", "https://www.minigb.io/220"],
["임지환(raararaara, 스태프 후기)", "https://blog.naver.com/raararaara/222944043938"]
]
},
{
Expand Down Expand Up @@ -59,7 +64,10 @@
"http://static.icpckorea.net/2022/scoreboard_preliminary/"
]
],
"review": [["김동건(dong_gas)", "https://dong-gas.tistory.com/80"]]
"review": [
["김동건(dong_gas)", "https://dong-gas.tistory.com/80"],
["이민희(minigimbob)", "https://www.minigb.io/217"]
]
},
{
"title": "Google Kick Start Round C 2022",
Expand Down
28 changes: 24 additions & 4 deletions public/history/data/2023.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@
["공식 사이트", "http://icpckorea.org/2023-seoul/regional"],
["스코어보드", "http://static.icpckorea.net/2023/regional/scoreboard"]
],
"review": [["임지환(raararaara, 스태프 후기)", "https://blog.naver.com/raararaara/223297965004"],["채성우(lem0nad3)", "https://blog.naver.com/vermeil_/223284913439"]]
"review": [
["임지환(raararaara, 스태프 후기)", "https://blog.naver.com/raararaara/223297965004"],
["채성우(lem0nad3)", "https://blog.naver.com/vermeil_/223284913439"]
]
},
{
"title": "2023 ICPC Asia Seoul Preliminary Contest",
Expand Down Expand Up @@ -64,6 +67,22 @@
],
"review": [["김동건(dong_gas)", "https://blog.naver.com/dong_gas/223244723211"]]
},
{
"title": "Samsung Collegiate Programming Contest 2023 Finals",
"columns": ["#", "이름"],
"data": [
["-", "강효규"],
["-", "김동건"],
["-", "조원빈"],
["-", "이승형"],
["-", "박성준"],
["-", "송근수"]
],
"award": [""],
"links": [
["공식 사이트", "https://www.codeground.org/scpc/commons/honer/list"]
]
},
{
"title": "SUAPC 2023 Summer",
"columns": ["#", "=", "", "멤버"],
Expand Down Expand Up @@ -92,10 +111,11 @@
"title": "2023 ICPC Sinchon Summer Algorithm Camp Contest - Novice",
"columns": ["#", "=", "닉네임", "이름"],
"data": [
["2", "4", "변미담", "변미담"],
["3", "3", "임정연", "임정연"]
["1", "5", "alzflost", "김현서"],
["2", "4", "midamida", "변미담"],
["3", "3", "aprilfo01s", "임정연"]
],
"award": ["silver", "bronze"],
"award": ["gold","silver", "bronze"],
"links": [
["공식 사이트", "https://icpc-sinchon.io/campcontest"],
["스코어보드", "https://www.acmicpc.net/contest/spotboard/1101"]
Expand Down
15 changes: 15 additions & 0 deletions public/history/data/2024.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"year": 2024,
"contests": [
{
"title": "solved.ac Grand Arena Party × NEXON - Div 2",
"columns": ["#", "=", "이름"],
"data": [
["13", "4", "정회윤"]
],
"award": [""],
"links": [],
"review": [["정회윤(yunny_world)", "https://yunny-world.tistory.com/87"]]
}
]
}
3 changes: 2 additions & 1 deletion public/history/data/years.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[
2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011,
2024, 2023, 2022, 2021,
2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011,
2010, 2009, 2008, 2007, 2006, 2005
]
2 changes: 1 addition & 1 deletion src/template/HistoryTab/HistoryTab.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

{#if yearsList}
{#each yearsList as data, idx}
<li class={idx == 0 ? 'selected' : ''} on:click={switchSelected}>
<li class={curYear == data ? 'selected' : ''} on:click={switchSelected}>
<span class="tab_text">{data}</span>
</li>
{/each}
Expand Down

0 comments on commit b8f9a73

Please sign in to comment.