Skip to content
View Kay-79's full-sized avatar
🦀
Focusing
🦀
Focusing
  • 127.0.0.1

Block or report Kay-79

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 is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Kay-79/README.md

Hi 👋, I'm Kay

I'm a Blockchain Developer. Every day is a learning day for me.

  • 🔭 I’m currently working as a freelance blockchain developer.

  • 🌱 I’m currently learning Smart Contracts development.

  • 👀 Fun fact If i don't know about something, I don't know it today. But i'll learn it and implement in my code.

Socials

About me

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.30;

contract Profile {
    string public name = "Kay";
    string public pronouns = "He | Him";
    string public currentFocus = "Web3 / Smart Contract / Dapp / EVM";

    string[] internal skills;
    string[] internal langs;
    string[] internal frameworks;

    function getSkills() public returns (string[] memory) {
        skills = ["git", "Agile/Scrum", "CI/CD"];
        return skills;
    }

    function getFrameworks() public returns (string[] memory) {
        frameworks = ["Next.js", "Redis", "PostgreSQL", "Tailwind CSS", "Hardhat", "Ethers.js", "Foundry"];
        return frameworks;
    }

    function getLangs() public returns (string[] memory) {
        langs = ["TypeScript", "Solidity", "JavaScript", "Rust", "Move", "Python", "AutoIt"];
        return langs;
    }

    function fun() public pure returns (string memory) {
        return
            "If i don't know about something, I don't know it today. But i'll learn it and implement in my code.";
    }
}

@Kay-79's activity is private