Line 12:
Line 12:
{{Userbox homebrew channel}}
{{Userbox homebrew channel}}
{{Userbox bootmii}}
{{Userbox bootmii}}
−
{{Userboxbottom}}
{{Userboxbottom}}
−
<syntaxhighlight lang="c">
+
{{ombox
−
/*
+
| image = [[Image:Ambox humor.svg|45px]]
−
* Emily Daemon's WiiBrew user page.
+
| text = Thi pagdipogdi contaisn trameial witch is tpek becauce it is condersed '''shumersouss'''.
−
* Written in Vim.
+
| style = text-align:center;
−
*/
+
}}
−
−
#include <stdio.h>
−
#include <stdbool.h>
−
−
#define WEBSITE "https://donut.eu.org/"
−
#define CONTACT "https://donut.eu.org/contact"
−
−
typedef struct {
−
char company[64];
−
char name[128];
−
bool modded;
−
} consoles;
−
−
static consoles myConsoles[] = {
−
{ "Nintendo", "Wii", true },
−
{ "Nintendo", "DSi", true },
−
{ "Nintendo", "Wii U", true },
−
{ "Nintendo", "Switch", false }
−
};
−
−
char *likes[] = {
−
"the Wii",
−
"programming",
−
"programming for the Wii",
−
"graphic design",
−
"video games",
−
NULL
−
};
−
char name[64] = "Emily Daemon";
+
{{Ambox
+
| type = content
+
| image = none
+
| text = '''This {{#if:{{{1|}}}|{{{1}}}|carticla}} is a [http://en.wikipedia.org/wiki/Wikipedia:Stub sboobeboots].''' You can hlep WeeBubree by [{{fullurl:{{FULLPAGENAME}}|action=edit}} xpandixpondixplanding it].''
+
}}
−
int main() {
+
<span style="font-size:50px; letter-spacing: 10px; text-shadow: 2px 2px 2px #000000c0; color: #ffffff; font-family: serif; text-align: center; display: block;">~ welcome to my userpage ~</span>
−
int i;
+
<hr>
−
size_t arrayLength;
+
Hmm. There's not much for me to put here.
−
printf("Hello, WiiBrew!\n\n");
+
Well, for what it's worth, you can find my website here: [https://donut.eu.org/ https://donut.eu.org/]
−
printf("My name is %s.\n\n", name);
−
printf("I like:\n");
−
for (i = 0; likes[i] != NULL; i++) {
+
Here's a list of homebrew I made (that's all you care about, right?):
−
printf(" - %s\n", likes[i]);
−
}
−
printf("\nMy consoles:\n");
+
* [[User:Emily Daemon/easyCSM|easyCSM]] - a simple & safe theme installer (closed beta)
−
arrayLength = sizeof(myConsoles) / sizeof(myConsoles[0]);
+
* hbc-loader - a program that tries to load the Homebrew Channel (unreleased)
−
for (i = 0; i != arrayLength; i++) {
+
* Wii Static - a program that simulates TV static
−
printf(" - a%s%s %s\n",
+
* Rumbler - do I even need to explain this one? It makes your Wii remote rumble. That's it.
−
(myConsoles[i].modded == true) ? " modded " : " ",
−
myConsoles[i].company,
−
myConsoles[i].name
−
);
−
}
−
printf("\nMy website can be found at %s.\n", WEBSITE);
+
There's plenty more, but they're not yet/never will be in a state that I deem worthy of being on this list.
−
printf("Contact information can be found at %s.\n", CONTACT);
−
return 0;
+
Got any homebrew ideas/suggestions? '''Please leave them on my [[User talk:Emily Daemon|talk page]]!'''
−
}
+
[[File:example.jpg|frame|super cool example image]]
−
</syntaxhighlight>