geekhack
geekhack Marketplace => Interest Checks => Topic started by: balance on Fri, 12 September 2025, 16:49:00
-
_____________________________________________________________________________________________________________________________________________________________________
/*
* GMK CPL (C Programming Language) - Interest Check
* Hello Geekhack! Today, I present you a set inspired by my beginning in the coding world. Every programmer starts with a certain language, mine was the C Language.
* This set is a nod to syntax-highlighted code on a white background.
* For lovers of clean syntax, logic, and elegance.
* Discord Server (https://discord.gg/UHQJUrYdxK)
* Interest Check Form (https://forms.gle/d7oiUuCv9yYiRNLr9)
*/
#include <stdio.h>
#include <stdbool.h>
#define SET "GMK CPL"
#define MATERIAL "Double-shot ABS"
#define PROFILE "Cherry"
#define MAKER "GMK"
// Color Scheme
const char *colors[] = {
"PANTONE 656 C (alphas)",
"RAL 270 20 20 (legends)",
"GMK TU2 / GMK AE / RAL 360 40 50 / PANTONE 927 C (mods/accents)"
};
// Kit Structure
struct Kit { const char *name; bool available; };
struct Kit kits[] = {
{ "Base Kit", true },
{ "Alt Mod Kit 1", true },
{ "Alt Mod Kit 2", true },
{ "Numpad", true },
{ "Spacebars", true }
};
// Kits
void print_kits() {
puts("Kits:");
for (int i = 0; i < 5; i++)
printf(" - %s: %s\n", kits.name, kits.available ? "Yes" : "No");
}
(https://i.imgur.com/ZenbmkM.jpeg)
(https://i.imgur.com/1cmNf64.jpeg)
(https://i.imgur.com/QPrReGv.jpeg)
(https://i.imgur.com/glIu26m.jpeg)
(https://i.imgur.com/8Zrbgc5.jpeg)
//Board Renders
void print_renders(const char *a, const char *b, const char *c) {
printf("Renders:\n 1. %s\n 2. %s\n 3. %s\n", a, b, c);
}
(https://i.imgur.com/9oJFLDr.jpeg)
(https://i.imgur.com/ZwiokWR.jpeg)
(https://i.imgur.com/fNnXjqs.jpeg)
(https://i.imgur.com/PHD3bmP.jpeg)
(https://i.imgur.com/KMpNxiH.jpeg)
(https://i.imgur.com/eeQzkQM.jpeg)
(https://i.imgur.com/8lUKX8x.jpeg)
(https://i.imgur.com/Ozou8tp.jpeg)
(https://i.imgur.com/sdGNpPB.jpeg)
// Interest Check Form
void interest_check() {
puts("\n Interest Check Form (https://forms.gle/d7oiUuCv9yYiRNLr9)");
puts("Let me know if this set caught your eye! Vote in the IC form and spread the word.");
puts("Your feedback helps shape the final product.");
}
// Discord Link
void join_discord() {
puts("\n Join the Community");
puts("Stay updated, ask questions, and share your thoughts on Discord:");
puts("Discord Server (https://discord.gg/UHQJUrYdxK)");
}
// Main Output
int main() {
printf("\n--- Interest Check: %s ---\n\n", SET);
print_kits();
puts("\nIf you're interested, leave a comment below!");
puts("Feedback and suggestions are appreciated.\n");
print_renders("TGR Alice", "TGR Jane", "Sunsetter");
interest_check();
join_discord();
return 0;
}
-
reserved