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.

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
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++ 4 1

  3. nepali-fm-player nepali-fm-player Public

    live radio player for nepali fm stations.

    JavaScript 5 1

  4. merobaja merobaja Public

    nepali musical instruments vst and AU plugin for mac and windows

    Shell 1 2

  5. nepdate-cli nepdate-cli Public

    bikram sambat clitool and date converter. project moved to https://github.com/opensource-nepal/nepdate-cli

    C++ 6 1