In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

User:Emily Daemon: Difference between revisions

From WiiBrew
Jump to navigation Jump to search
No edit summary
No edit summary
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>

Revision as of 17:22, 23 November 2023

This user goes by Female pronouns.
C This user codes in C.
C++ This user codes in C++.
PHP This user codes in PHP: Hypertext Preprocessor.
Py This user codes in Python.
This user develops using Linux.
This user has developed homebrew for the Wii.


Internet This User is looking for something to do.
This user has 6 trucha vulnerable IOS(s).
Wii This user is running System Menu 4.3 on her Wii.
This user has installed the Homebrew Channel on her Wii.


BootMii This user has installed BootMii on her Wii.

~ welcome to my userpage ~


Hmm. There's not much for me to put here.

Well, for what it's worth, you can find my website here: https://donut.eu.org/

Here's a list of homebrew I made (that's all you care about, right?):

  • easyCSM - a simple & safe theme installer (closed beta)
  • hbc-loader - a program that tries to load the Homebrew Channel (unreleased)
  • Wii Static - a program that simulates TV static
  • Rumbler - do I even need to explain this one? It makes your Wii remote rumble. That's it.

There's plenty more, but they're not yet/never will be in a state that I deem worthy of being on this list.

Got any homebrew ideas/suggestions? Please leave them on my talk page!

super cool example image