Skip to content
View khumnath's full-sized avatar

Block or report khumnath

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
khumnath/README.md

πŸ§‘β€πŸ’» khumnath β€” g++ -std=c++17 profile.cpp -o profile && ./profile

#include <iostream>
#include <string>
#include <vector>
using namespace std;
string binaryToString(const string& b) {
    string r;
    for (size_t i = 0; i < b.size(); i += 8)
        r.push_back(char(stoi(b.substr(i, 8), nullptr, 2)));
    return r;
}
struct Profile {
    string os, shell, device, website, country, email_bin;
    vector<string> languages;
};
ostream& operator<<(ostream& o, const Profile& p) {
    o << p.os << "\n" << p.shell << "\n" << p.device << "\n"
      << p.website << "\n" << p.country << "\n"
      << "Email: πŸ“§ " << binaryToString(p.email_bin) << "\nLanguages: ";
    for (auto& l : p.languages) o << l << " ";
    return o;
}

int main() {
    Profile me = {
        "πŸ–₯️  Deepin 25",
        "🐚  bash",
        "πŸ’»  Lenovo Ideapad Pro 5i",
        "🌐  https://khumnath.com.np",
        "πŸ‡³πŸ‡΅  Nepal",        "0110111001100001011101000110100000101110011010110110100001110101011011010110111001100001011101000110100001000000011001110110110101100001011010010110110000101110011000110110111101101101",
        {"Javascript", "Typescript", "QML", "C++", "Python"}
    };
    cout << me << "\n";
}
khumnath's Stats Top Langs

khumnath's Streak

Pinned Loading

  1. nepdate nepdate Public

    nepali date desktop widget similar to conky and nepali calendar application using Qt framework. converter in javascript available on https://khumnath.com.np/nepdate and post about calendar https://…

    QML 13 1

  2. fcitx5-lekhika fcitx5-lekhika Public

    nepali input method engine for fcitx

    C++ 6 1

  3. aksharshala aksharshala Public

    typing tutor alternative to typeshala

    C++ 1

  4. Merobajavst Merobajavst Public

    Forked from prchapagain/Merobajavst

    mero

    TypeScript 1

  5. liblekhika liblekhika Public

    lekhika library for latin to nepali devnagari transliteration

    C++ 2 1

  6. lekhika-trainer lekhika-trainer Public

    database editor tester application for liblekhika library

    C++ 3