Skip to content
View ruykaji's full-sized avatar
πŸ˜•
πŸ˜•

Block or report ruykaji

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
ruykaji/README.md

Coding

C CPP Python JavaScript CSS3 HTML5 Git GitHub

#include <iostream>
#include <string>
#include <vector>

struct Software_developer{
    std::string name = "Ruykaji"; 
    std::vector<std::string> roles = { "C/C++ Developer", "Machine Learning Enthusiast" };
    std::vector<std::string> languages = { "C", "C++", "Python", "JavaScript", "CSS3/HTML5" };
};

inline void about() noexcept {
    std::cout << "πŸ‘‹ Hi, I’m Ruykaji\n";
    std::cout << "πŸ‘€ I’m interested in complex problem solving and data analysis\n";
    std::cout << "🌱 Advancing my skills in C/C++ and machine learning\n";
    std::cout << "πŸ’žοΈ Looking to collaborate on projects that combine C++ efficiency with machine learning\n";
    std::cout << std::flush;
}

int
main()
{
  Software_developer me;
  about();

  return 0;
}

Pinned Loading

  1. lefdef-python lefdef-python Public

    Python iterface for Cadence LEF/DEF parser.

    C++ 12 3

  2. cpp-algorithms cpp-algorithms Public

    Algorithms and data structures implemented in C++ with explanations and links to further readings

    C++

  3. steiner-tree-problem steiner-tree-problem Public

    C++ 1