Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
skeddles authored Jun 25, 2024
2 parents 0f006c7 + 8583f83 commit b36f5f1
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 2 deletions.
11 changes: 10 additions & 1 deletion credits.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ ah,1,skeddles,2019-03-10,face
ahh,1,starlane,2020-10-19,face
aliem,1,skeddles,2023-09-08,face
animeglasses,1,braquen,2023-03-27,face
anubers,1,anubiarts,2024-06-19,member
armleft,1,degi,2022-09-20,bodypart
armright,1,degi,2022-09-20,bodypart
arthour,1,gg,2022-09-18,member
Expand Down Expand Up @@ -159,6 +160,12 @@ lookaway,1,skeddles,2019-08-27,face
lookdown,1,skeddles,2021-06-24,face
lookup,1,skeddles,2021-06-24,face
lospecgold,1,paultron,2022-09-20,logo
lospecgold,2,paultron,2022-09-22,logo
lospecgoldc,1,paultron,2022-09-22,logo
lospecgolde,1,paultron,2022-09-22,logo
lospecgoldo,1,paultron,2022-09-22,logo
lospecgoldp,1,paultron,2022-09-22,logo
lospecgolds,1,paultron,2022-09-22,logo
love,1,skeddles,2019-03-10,symbol
lozpekistan,1,kingw,2020-07-08,flag
lozpekistan,2,skeddles,2024-06-09,flag
Expand Down Expand Up @@ -194,6 +201,7 @@ painscream,1,pinkvirus,2023-05-18,face
panik,1,skeddles,2021-06-04,face
papa,1,skeddles,2024-05-26,member
papah,1,skeddles,2024-05-06,membervariant
pensivecowboy,1,pureasbestos,2021-06-24,face
phrod,1,morfarius,2021-06-17,animal
phrod,2,isa,2021-06-17,animal
pikzel,1,skeddles,2023-05-30,symbol
Expand All @@ -217,6 +225,7 @@ pun,1,skeddles,2019-07-18,word
pun,2,pureasbestos,2019-10-10,word
puu,1,skeddles,2020-07-13,object
qirl,1,qirlfriend,2023-05-17,member
qirl,2,qirlfriend,2024-06-22,member
reallygrrl,1,skeddles,2023-03-31,face
reallynow,1,skeddles,2020-10-26,bodypart
reversecard,1,grafxkid,2021-06-23,object
Expand Down Expand Up @@ -335,4 +344,4 @@ zxred2,1,skeddles,2023-05-18,pixel
zxwhite,1,skeddles,2023-05-18,pixel
zxwhite2,1,skeddles,2023-05-18,pixel
zxyellow,1,skeddles,2023-05-18,pixel
zxyellow2,1,skeddles,2023-05-18,pixel
zxyellow2,1,skeddles,2023-05-18,pixel
Binary file added current/anubers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified current/lospecgold.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added current/lospecgoldc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added current/lospecgolde.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added current/lospecgoldo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added current/lospecgoldp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added current/lospecgolds.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added current/pensivecowboy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified current/qirl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added old/lospecgold_v1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added old/qirl_v1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion scripts/util/parse-csv.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ export async function parseCsv (path) {

let outputObject = {}
for (let i = 1; i < lines.length; i++) {
const line = lines[i];
if (line.length == 0 && i == lines.length-1) continue;

const obj = {};
const currentLine = lines[i].split(',');
const currentLine = line.split(',');

for (let j = 0; j < headers.length; j++) {
obj[headers[j]] = currentLine[j];
Expand Down

0 comments on commit b36f5f1

Please sign in to comment.