Skip to content
View ApplehatDot's full-sized avatar
🍎
existing as an apple...
🍎
existing as an apple...

Block or report ApplehatDot

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ApplehatDot/README.md

Hello, welcome to my Github profile 👋🍎

// About Me
#include <stdlib.h>
#include <string.h>

typedef struct {
    char nickname[70];
    char PLang[70];
    char pronouns[10];
    char country[30];
    char interests[100];
    char* repositories;
} AboutMe;

void Display_AboutMe(AboutMe person) {
    printf("Nickname: %s\n", person.nickname);
    printf("Programming Languages: %s\n", person.PLang);
    printf("Pronouns: %s\n", person.pronouns);
    printf("Country: %s\n", person.country);
    printf("Interests: %s\n", person.interests);
    printf("Repositories: %s\n", person.repositories);
}

int main(){
    AboutMe me;

    strcpy(me.nickname, "ApplehatDot (ApplehatDoesStuff)");
    strcpy(me.PLang, "C/C++");
    strcpy(me.pronouns, "he/him");
    strcpy(me.country, "Poland");
    strcpy(me.interests, "old hardware and software, programming, using various OS' (...)");
    strcpy(me.repositories, "DVD_GL, SNEK_GL OpenGLHeart, RoseGL, GWM, Win32AboutDialog");

    Display_AboutMe(&me);

    return 0;
}

Pinned Loading

  1. OpenGLHeart OpenGLHeart Public

    [MEGC #1] Projekt OpenGL (GLUT) z biblioteką Freeglut, rysujący serce z funkcji matematycznej

    C

  2. SNEK_GL SNEK_GL Public

    [MEGC #2] SNEK - OpenGL project written in C, that recreates Snake II from Nokia 5110

    C 1

  3. RoseGL RoseGL Public

    [MEGC #3] RoseGL + GWM - Private project that draws a Rose.

    C

  4. PSBoi PSBoi Public

    [MEGC #5] PSBoi - "The funniest CPU stressing utility"

    C