Open-Discord / EPS /Help /Everyone's Programming Server - help - Building an SQL query [1038445825761738833].json
hudsongouge's picture
Upload EPS folder
ee2b948 verified
{
"guild": {
"id": "743031115207540836",
"name": "Everyone's Programming Server",
"iconUrl": "https://cdn.discordapp.com/icons/743031115207540836/1d4d00866818b8f61051002dd9f3167a.png?size=512"
},
"channel": {
"id": "1038445825761738833",
"type": "GuildPublicThread",
"categoryId": "1022562971743948963",
"category": "help",
"name": "Building an SQL query",
"topic": null
},
"dateRange": {
"after": null,
"before": null
},
"exportedAt": "2025-02-26T20:34:06.681702-05:00",
"messages": [
{
"id": "1038445825761738833",
"type": "Default",
"timestamp": "2022-11-05T09:32:58.252-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "(the tag is wrong, there was no suitable option as this question is about SQL)",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1038445907047358484",
"type": "Default",
"timestamp": "2022-11-05T09:33:17.632-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "for the following database schema",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1038445969949347852",
"type": "Default",
"timestamp": "2022-11-05T09:33:32.629-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "```sql\nCREATE TABLE game (\n code CHAR(8) PRIMARY KEY,\n progress TINYINT NOT NULL,\n player_count TINYINT NOT NULL,\n creator_id CHAR(36) NOT NULL\n);\n\nCREATE TABLE client (\n id CHAR(36) PRIMARY KEY,\n nick VARCHAR(50) NOT NULL\n);\n\nCREATE TABLE game_clients (\n client_id CHAR(36) PRIMARY KEY,\n code CHAR(8) NOT NULL,\n\n FOREIGN KEY (client_id) REFERENCES client (id),\n FOREIGN KEY (code) REFERENCES game (code)\n);\n```",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1038446110529818674",
"type": "Default",
"timestamp": "2022-11-05T09:34:06.146-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "how does one create a query that returns the items in `client` that also have an entry in `game_clients` under a specifc `code`?",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1038446134185693275",
"type": "Default",
"timestamp": "2022-11-05T09:34:11.786-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "i know its `inner join` but no idea how",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1038450594379223181",
"type": "Default",
"timestamp": "2022-11-05T09:51:55.179-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "ok there we go, now the tags are correct",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1038548622297542708",
"type": "Reply",
"timestamp": "2022-11-05T16:21:26.856-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "looks cool",
"author": {
"id": "817084059020296203",
"name": "q1z2377",
"discriminator": "0000",
"nickname": "q1z",
"color": "#A6D5FF",
"isBot": false,
"roles": [
{
"id": "743483193721749564",
"name": "Level 2",
"color": "#A6D5FF",
"position": 78
}
],
"avatarUrl": "https://cdn.discordapp.com/avatars/817084059020296203/d15529af28a16836f98d82eca7a1d384.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [
{
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
}
],
"reference": {
"messageId": "1038445969949347852",
"channelId": "1038445825761738833",
"guildId": "743031115207540836"
},
"inlineEmojis": []
},
{
"id": "1038548673392545803",
"type": "Default",
"timestamp": "2022-11-05T16:21:39.038-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "what language is this \uD83D\uDE42",
"author": {
"id": "817084059020296203",
"name": "q1z2377",
"discriminator": "0000",
"nickname": "q1z",
"color": "#A6D5FF",
"isBot": false,
"roles": [
{
"id": "743483193721749564",
"name": "Level 2",
"color": "#A6D5FF",
"position": 78
}
],
"avatarUrl": "https://cdn.discordapp.com/avatars/817084059020296203/d15529af28a16836f98d82eca7a1d384.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": [
{
"id": "",
"name": "\uD83D\uDE42",
"code": "slight_smile",
"isAnimated": false,
"imageUrl": "https://cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/1f642.svg"
}
]
},
{
"id": "1038549058123464866",
"type": "Reply",
"timestamp": "2022-11-05T16:23:10.765-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "sql",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [
{
"id": "817084059020296203",
"name": "q1z2377",
"discriminator": "0000",
"nickname": "q1z",
"color": "#A6D5FF",
"isBot": false,
"roles": [
{
"id": "743483193721749564",
"name": "Level 2",
"color": "#A6D5FF",
"position": 78
}
],
"avatarUrl": "https://cdn.discordapp.com/avatars/817084059020296203/d15529af28a16836f98d82eca7a1d384.png?size=512"
}
],
"reference": {
"messageId": "1038548622297542708",
"channelId": "1038445825761738833",
"guildId": "743031115207540836"
},
"inlineEmojis": []
},
{
"id": "1038549096459415643",
"type": "Default",
"timestamp": "2022-11-05T16:23:19.905-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "sql is very much not cool",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1038549149886451772",
"type": "Default",
"timestamp": "2022-11-05T16:23:32.643-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "all keywords are in caps by convention so youre getting screamed at",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1038666626784051291",
"type": "Reply",
"timestamp": "2022-11-06T00:10:21.318-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "wow",
"author": {
"id": "817084059020296203",
"name": "q1z2377",
"discriminator": "0000",
"nickname": "q1z",
"color": "#A6D5FF",
"isBot": false,
"roles": [
{
"id": "743483193721749564",
"name": "Level 2",
"color": "#A6D5FF",
"position": 78
}
],
"avatarUrl": "https://cdn.discordapp.com/avatars/817084059020296203/d15529af28a16836f98d82eca7a1d384.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [
{
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
}
],
"reference": {
"messageId": "1038549058123464866",
"channelId": "1038445825761738833",
"guildId": "743031115207540836"
},
"inlineEmojis": []
},
{
"id": "1038666643640959026",
"type": "Default",
"timestamp": "2022-11-06T00:10:25.337-04:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "ur a goat",
"author": {
"id": "817084059020296203",
"name": "q1z2377",
"discriminator": "0000",
"nickname": "q1z",
"color": "#A6D5FF",
"isBot": false,
"roles": [
{
"id": "743483193721749564",
"name": "Level 2",
"color": "#A6D5FF",
"position": 78
}
],
"avatarUrl": "https://cdn.discordapp.com/avatars/817084059020296203/d15529af28a16836f98d82eca7a1d384.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1038722878767636510",
"type": "Reply",
"timestamp": "2022-11-06T02:53:52.836-05:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "uh... what? \uD83D\uDE02",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [
{
"id": "817084059020296203",
"name": "q1z2377",
"discriminator": "0000",
"nickname": "q1z",
"color": "#A6D5FF",
"isBot": false,
"roles": [
{
"id": "743483193721749564",
"name": "Level 2",
"color": "#A6D5FF",
"position": 78
}
],
"avatarUrl": "https://cdn.discordapp.com/avatars/817084059020296203/d15529af28a16836f98d82eca7a1d384.png?size=512"
}
],
"reference": {
"messageId": "1038666643640959026",
"channelId": "1038445825761738833",
"guildId": "743031115207540836"
},
"inlineEmojis": [
{
"id": "",
"name": "\uD83D\uDE02",
"code": "joy",
"isAnimated": false,
"imageUrl": "https://cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/1f602.svg"
}
]
},
{
"id": "1038815364076798002",
"type": "Default",
"timestamp": "2022-11-06T09:01:23.052-05:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "if you using sql",
"author": {
"id": "817084059020296203",
"name": "q1z2377",
"discriminator": "0000",
"nickname": "q1z",
"color": "#A6D5FF",
"isBot": false,
"roles": [
{
"id": "743483193721749564",
"name": "Level 2",
"color": "#A6D5FF",
"position": 78
}
],
"avatarUrl": "https://cdn.discordapp.com/avatars/817084059020296203/d15529af28a16836f98d82eca7a1d384.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1038815405747220591",
"type": "Default",
"timestamp": "2022-11-06T09:01:32.987-05:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "you're on a different level",
"author": {
"id": "817084059020296203",
"name": "q1z2377",
"discriminator": "0000",
"nickname": "q1z",
"color": "#A6D5FF",
"isBot": false,
"roles": [
{
"id": "743483193721749564",
"name": "Level 2",
"color": "#A6D5FF",
"position": 78
}
],
"avatarUrl": "https://cdn.discordapp.com/avatars/817084059020296203/d15529af28a16836f98d82eca7a1d384.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1038815415276683375",
"type": "Default",
"timestamp": "2022-11-06T09:01:35.259-05:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "props to you",
"author": {
"id": "817084059020296203",
"name": "q1z2377",
"discriminator": "0000",
"nickname": "q1z",
"color": "#A6D5FF",
"isBot": false,
"roles": [
{
"id": "743483193721749564",
"name": "Level 2",
"color": "#A6D5FF",
"position": 78
}
],
"avatarUrl": "https://cdn.discordapp.com/avatars/817084059020296203/d15529af28a16836f98d82eca7a1d384.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1039131080193757215",
"type": "Reply",
"timestamp": "2022-11-07T05:55:55.64-05:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "I mean I am using a query library",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [
{
"id": "817084059020296203",
"name": "q1z2377",
"discriminator": "0000",
"nickname": "q1z",
"color": "#A6D5FF",
"isBot": false,
"roles": [
{
"id": "743483193721749564",
"name": "Level 2",
"color": "#A6D5FF",
"position": 78
}
],
"avatarUrl": "https://cdn.discordapp.com/avatars/817084059020296203/d15529af28a16836f98d82eca7a1d384.png?size=512"
}
],
"reference": {
"messageId": "1038815405747220591",
"channelId": "1038445825761738833",
"guildId": "743031115207540836"
},
"inlineEmojis": []
},
{
"id": "1039131124116492368",
"type": "Default",
"timestamp": "2022-11-07T05:56:06.112-05:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "but it still exposed the SQL logic",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1039228286112370698",
"type": "Default",
"timestamp": "2022-11-07T12:22:11.337-05:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "```sql\nSeLeCt client.id, client.nick, game_clients.client_id, game_clients.code\nfRoM client\niNnEr jOiN\ngame_clients\nON\ngame_clients.client_id = client.id\nWhErE game_clients.code = 'qwertzui';\n```",
"author": {
"id": "840634687663767632",
"name": "j.a.k.1.",
"discriminator": "0000",
"nickname": "jaki",
"color": "#A84300",
"isBot": false,
"roles": [
{
"id": "935963987915464734",
"name": "\uD83D\uDE80 SUPER EXTRA HIGHLY ACTIVE",
"color": "#A84300",
"position": 85
},
{
"id": "743482969359908968",
"name": "Level 3",
"color": "#A6AEFF",
"position": 79
},
{
"id": "746976140937396224",
"name": "Helper",
"color": "#6F0035",
"position": 76
},
{
"id": "848201437573152790",
"name": "Highly Active",
"color": "#A26D27",
"position": 73
},
{
"id": "800385754219937792",
"name": "CodeCom Participant",
"color": "#E91E63",
"position": 72
},
{
"id": "874858515838148608",
"name": "Music",
"color": "#2ECC71",
"position": 66
},
{
"id": "821123981717274654",
"name": "Bot Maker",
"color": "#2ECC71",
"position": 62
},
{
"id": "746976912181821511",
"name": "Help-JS",
"color": null,
"position": 58
},
{
"id": "746976986777255937",
"name": "Help-C",
"color": null,
"position": 57
},
{
"id": "824686275470032967",
"name": "Help-C++",
"color": null,
"position": 55
},
{
"id": "746977167153299546",
"name": "Help-Java",
"color": null,
"position": 54
},
{
"id": "1069778726457450557",
"name": "Help-HTML/CSS",
"color": null,
"position": 52
},
{
"id": "854548376393089044",
"name": "User-Made Challenge Ping",
"color": null,
"position": 51
},
{
"id": "854547959445323806",
"name": "Official Challenge Ping",
"color": "#525252",
"position": 50
},
{
"id": "814614879045812324",
"name": "Poll Ping",
"color": null,
"position": 49
},
{
"id": "849178678701064203",
"name": "pog a conversation starter",
"color": "#E74C3C",
"position": 48
},
{
"id": "849032245279850506",
"name": "Announcement Ping",
"color": null,
"position": 46
},
{
"id": "878363922099490846",
"name": "Misc Access",
"color": "#009BFF",
"position": 14
}
],
"avatarUrl": "https://cdn.discordapp.com/embed/avatars/0.png"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1039228565453033572",
"type": "Default",
"timestamp": "2022-11-07T12:23:17.937-05:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "also you might want to join game_clients and client table, its probably not necessary to have both",
"author": {
"id": "840634687663767632",
"name": "j.a.k.1.",
"discriminator": "0000",
"nickname": "jaki",
"color": "#A84300",
"isBot": false,
"roles": [
{
"id": "935963987915464734",
"name": "\uD83D\uDE80 SUPER EXTRA HIGHLY ACTIVE",
"color": "#A84300",
"position": 85
},
{
"id": "743482969359908968",
"name": "Level 3",
"color": "#A6AEFF",
"position": 79
},
{
"id": "746976140937396224",
"name": "Helper",
"color": "#6F0035",
"position": 76
},
{
"id": "848201437573152790",
"name": "Highly Active",
"color": "#A26D27",
"position": 73
},
{
"id": "800385754219937792",
"name": "CodeCom Participant",
"color": "#E91E63",
"position": 72
},
{
"id": "874858515838148608",
"name": "Music",
"color": "#2ECC71",
"position": 66
},
{
"id": "821123981717274654",
"name": "Bot Maker",
"color": "#2ECC71",
"position": 62
},
{
"id": "746976912181821511",
"name": "Help-JS",
"color": null,
"position": 58
},
{
"id": "746976986777255937",
"name": "Help-C",
"color": null,
"position": 57
},
{
"id": "824686275470032967",
"name": "Help-C++",
"color": null,
"position": 55
},
{
"id": "746977167153299546",
"name": "Help-Java",
"color": null,
"position": 54
},
{
"id": "1069778726457450557",
"name": "Help-HTML/CSS",
"color": null,
"position": 52
},
{
"id": "854548376393089044",
"name": "User-Made Challenge Ping",
"color": null,
"position": 51
},
{
"id": "854547959445323806",
"name": "Official Challenge Ping",
"color": "#525252",
"position": 50
},
{
"id": "814614879045812324",
"name": "Poll Ping",
"color": null,
"position": 49
},
{
"id": "849178678701064203",
"name": "pog a conversation starter",
"color": "#E74C3C",
"position": 48
},
{
"id": "849032245279850506",
"name": "Announcement Ping",
"color": null,
"position": 46
},
{
"id": "878363922099490846",
"name": "Misc Access",
"color": "#009BFF",
"position": 14
}
],
"avatarUrl": "https://cdn.discordapp.com/embed/avatars/0.png"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1039421225933492244",
"type": "Reply",
"timestamp": "2022-11-08T01:08:51.775-05:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "it's for code clarity",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [
{
"id": "840634687663767632",
"name": "j.a.k.1.",
"discriminator": "0000",
"nickname": "jaki",
"color": "#A84300",
"isBot": false,
"roles": [
{
"id": "935963987915464734",
"name": "\uD83D\uDE80 SUPER EXTRA HIGHLY ACTIVE",
"color": "#A84300",
"position": 85
},
{
"id": "743482969359908968",
"name": "Level 3",
"color": "#A6AEFF",
"position": 79
},
{
"id": "746976140937396224",
"name": "Helper",
"color": "#6F0035",
"position": 76
},
{
"id": "848201437573152790",
"name": "Highly Active",
"color": "#A26D27",
"position": 73
},
{
"id": "800385754219937792",
"name": "CodeCom Participant",
"color": "#E91E63",
"position": 72
},
{
"id": "874858515838148608",
"name": "Music",
"color": "#2ECC71",
"position": 66
},
{
"id": "821123981717274654",
"name": "Bot Maker",
"color": "#2ECC71",
"position": 62
},
{
"id": "746976912181821511",
"name": "Help-JS",
"color": null,
"position": 58
},
{
"id": "746976986777255937",
"name": "Help-C",
"color": null,
"position": 57
},
{
"id": "824686275470032967",
"name": "Help-C++",
"color": null,
"position": 55
},
{
"id": "746977167153299546",
"name": "Help-Java",
"color": null,
"position": 54
},
{
"id": "1069778726457450557",
"name": "Help-HTML/CSS",
"color": null,
"position": 52
},
{
"id": "854548376393089044",
"name": "User-Made Challenge Ping",
"color": null,
"position": 51
},
{
"id": "854547959445323806",
"name": "Official Challenge Ping",
"color": "#525252",
"position": 50
},
{
"id": "814614879045812324",
"name": "Poll Ping",
"color": null,
"position": 49
},
{
"id": "849178678701064203",
"name": "pog a conversation starter",
"color": "#E74C3C",
"position": 48
},
{
"id": "849032245279850506",
"name": "Announcement Ping",
"color": null,
"position": 46
},
{
"id": "878363922099490846",
"name": "Misc Access",
"color": "#009BFF",
"position": 14
}
],
"avatarUrl": "https://cdn.discordapp.com/embed/avatars/0.png"
}
],
"reference": {
"messageId": "1039228565453033572",
"channelId": "1038445825761738833",
"guildId": "743031115207540836"
},
"inlineEmojis": []
},
{
"id": "1039421367377993788",
"type": "Default",
"timestamp": "2022-11-08T01:09:25.498-05:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "I use the controller pattern, and the client controller doesn't need to know what game the client is in",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1039421492074655744",
"type": "Default",
"timestamp": "2022-11-08T01:09:55.228-05:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "but the game controller needs to know what clients a game has",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
},
{
"id": "1039421711289962547",
"type": "Default",
"timestamp": "2022-11-08T01:10:47.493-05:00",
"timestampEdited": null,
"callEndedTimestamp": null,
"isPinned": false,
"content": "I really hate it when code layers start to mix or some sort of God class is created, so I tend to distribute things by their purpose",
"author": {
"id": "881884518909358100",
"name": "gehirnsuppee",
"discriminator": "0000",
"nickname": "apachejuice",
"color": null,
"isBot": false,
"roles": [],
"avatarUrl": "https://cdn.discordapp.com/avatars/881884518909358100/81f8e128c3633b633d5fa93e6bd2b18a.png?size=512"
},
"attachments": [],
"embeds": [],
"stickers": [],
"reactions": [],
"mentions": [],
"inlineEmojis": []
}
],
"messageCount": 25
}