Emily Daemon

Joined 2 years ago
Gender.png 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.
Linux thumb.png This user develops using Linux.
Developer icon.png
This user has developed homebrew for the Wii.


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


BootMii This user has installed BootMii on her Wii.
/*
 * Emily Daemon's WiiBrew user page.
 * Written in Vim.
 */

#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";

int main() {
        int i;
        size_t arrayLength;

        printf("Hello, WiiBrew!\n\n");
        printf("My name is %s.\n\n", name);
        printf("I like:\n");

        for (i = 0; likes[i] != NULL; i++) {
                printf(" - %s\n", likes[i]);
        }

        printf("\nMy consoles:\n");
        arrayLength = sizeof(myConsoles) / sizeof(myConsoles[0]);
        for (i = 0; i != arrayLength; i++) {
                printf(" - a%s%s %s\n",
                        (myConsoles[i].modded == true) ? " modded " : " ",
                        myConsoles[i].company,
                        myConsoles[i].name
                );
        }

        printf("\nMy website can be found at %s.\n", WEBSITE);
        printf("Contact information can be found at %s.\n", CONTACT);

        return 0;
}