Skip to content
View salihefee's full-sized avatar

Highlights

  • Pro

Block or report salihefee

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
salihefee/README.md
#include "person.h"

int main() {
    char* name = "Salih Efe Ergür";
    int age = 17;
    char* occupation = "Student";
    char* location = "Turkey";
    char* languages[] = { "C#", "Python", "C" };
    char* projects[] = { "MapDownloader", "osu-rpc", "MineStorage", "badapple", "BadAppleMinecraft" };
    char* hobbies[] = { "Coding", "Playing osu!", "Listening to music" };
    
    Socials socials = {
        .discord = "salihefee",
        .instagram = "salihefee727",
        .github = "salihefee",
        .reddit = "salihefee727",
        .lastfm = "https://www.last.fm/user/pthreadgc2",
        .email = "[email protected]",
        .website = "https://salihefee.com.tr",
    };

    Person salihefee = createPerson(name, age, occupation, location, languages, socials, projects, hobbies);
}

Pinned Loading

  1. BadAppleMinecraft BadAppleMinecraft Public

    Video playback in Minecraft

    Java 2

  2. chip8-emulator chip8-emulator Public

    CHIP-8 Emulation in C++

    C++