Skip to content
View Konan931's full-sized avatar
:electron:
Coding with commitment.
:electron:
Coding with commitment.

Block or report Konan931

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
Konan931/README.md
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

void githubGreeting() {
    const char *binaryGreeting[] = {
        "01001010","01110101","01110011","01110100","00100000",
        "00101000","01100100","01100101","00101001","01100011",
        "01101111","01100100","01101001","01101110","01100111", 
    "00101110"
    };

    for (int i = 0; i < 16; ++i) {
        long v = strtol(binaryGreeting[i], NULL, 2);
        putchar((char)v);
    }
    putchar('\n');
}

void githubGreetingTok() {
    char buffer[235];
    strcpy(buffer, 
      "00111100 01001010 01110101 01110011 01110100 00100000 "
      "00101000 01100100 01100101 00101001 01100011 "
      "01101111 01100100 01101001 01101110 01100111 "
      "00100000 01110100 01101111 01101011 01100101 " 
      "01101110 01110011 00101110 00101010 00111110 "
    );

    const char *delim = " ";
    char *token = strtok(buffer, delim);
    while (token) {
        long v = strtol(token, NULL, 2);
        putchar((char)v);
        token = strtok(NULL, delim);
    }
    putchar('\n');
}

int main() {
    printf("Executing your github greeting function -> please wait...\n");
    githubGreeting();
    githubGreetingTok();
    return 0;
}

Popular repositories Loading

  1. lets-get-arrested lets-get-arrested Public

    Forked from hamukazu/lets-get-arrested

    This project is intended to protest against the police in Japan

    HTML 1

  2. evilginx2 evilginx2 Public

    Forked from kgretzky/evilginx2

    Standalone man-in-the-middle attack framework used for phishing login credentials along with session cookies, allowing for the bypass of 2-factor authentication

    Go 1

  3. Konan931 Konan931 Public

    Config files for my GitHub profile.

  4. scipy scipy Public

    Forked from scipy/scipy

    SciPy library main repository

    Python

  5. DotNet-Developer-Roadmap DotNet-Developer-Roadmap Public

    Forked from milanm/DotNet-Developer-Roadmap

    The comprehensive .NET Developer Roadmap by seniority level.

  6. Calculator-Free-To-Use- Calculator-Free-To-Use- Public

    Forked from Achiever-12/Calculator-Free-To-Use-

    Functionalities improved and debugged

    HTML