Skip to content
View hernanhawryluk's full-sized avatar

Block or report hernanhawryluk

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

Hi 👋 My name is Hernan

Full-Stack Developer

Portfolio Cambiar idioma al español Visitor Badge

I am currently working as a Mobile Developer with solid experience in React Native and SwiftUI. I consider myself a Full-stack developer as I also have experience with front-end technologies like React and Next.js with TypeScript, as well as back-end with Node.js and Django. I have implemented both relational and NoSQL databases, including Firebase and MongoDB. Therefore, my versatile approach enables me to develop or collaborate in the design of web and mobile applications comprehensively, from initial conception to deployment.

  • 🌍 I'm based in Argentina, Buenos Aires, Monte Grande.
  • 🖥️ See my portfolio developed in Next.js and deployed on Vercel.
  • 🚀 Currently working as a Mobile Developer.
  • ✉️ You can contact me at LinkedIn.
  • 🧠 I'm learning Kotlin.

My Skill Set

Front-end

HTML5 CSS3 JavaScript TypeScript Swift Swift UI React NextJS Tailwind CSS Bootstrap

Back-end

Python Django JavaScript TypeScript NextJS NodeJS Express

Database

MySQL PostgreSQL Prisma MongoDB Firebase

💻 Representing myself as an instance of a class in Python

class FullStackDeveloper:
    def __init__(self, fullname, role, workplace):
        self.fullname = fullname
        self.role = role
        self.workplace = workplace
        self.languages = ["Spanish", "English"]
        self.coding_languages = ["Javascript", "TypeScript", "Swift", "Python"]
        self.technologies = {
            "front_end": {
                "basics": ["HTML", "CSS", "JavaScript"],
                "web": ["React", "Next.js", "Tailwind CSS", "Bootstrap"],
                "mobile": ["React Native", "SwiftUI"],
            },
            "back_end": {
                "typescript": ["Node.js", "Express", "Next.js"],
                "python": ["Django", "Django REST Framework"],
            },
            "databases": {
                "sql": ["MySQL", "PostgreSQL", "SQLite"],
                "no_sql": ["MongoDB", "Firebase"],
            },
            "dev_ops": {
                "hosting": ["Vercel"],
                "mobile": ["Google PlayStore", "Apple AppStore"],
            },
        }

    def work(self, tech_type, tech_category, tech_name):
        if tech_type in self.technologies:
            if tech_category in self.technologies[tech_type]:
                if tech_name in self.technologies[tech_type][tech_category]:
                    return f"Currently working on {tech_category} development using {tech_name}."
                else:
                    return f"{tech_name} is not part of my {tech_category} technologies, I will start learning it."
            else:
                return f"{tech_category} is not a valid category under {tech_type}."
        else:
            return f"{tech_type} is not a valid technology type."

hernan_hawryluk = FullStackDeveloper("Hernan Hawryluk", "Mobile Developer", "Bytewave")
work = hernan_hawryluk.work("front_end", "mobile", "React Native")

print(f"Hello! My name is {hernan_hawryluk.fullname}, and I am a {hernan_hawryluk.role} at {hernan_hawryluk.workplace}.")
print(work)

Snake eating contribution graph

github contribution grid snake animation

Connect with me

Popular repositories Loading

  1. instagram-clone-app instagram-clone-app Public

    Fully functional Instagram replica built in React Native, showcasing my skills as a mobile app developer. Explore the features and functionality of Instagram in this project.

    JavaScript 9 7

  2. ue5-interactive-render ue5-interactive-render Public

    Showcase for my portfolio, demonstrating real-time rendering capabilities and interactivity with Unreal Engine 5 (Lumen).

    1 1

  3. portfolio-nextjs-app portfolio-nextjs-app Public

    My portfolio website crafted using Next.js, TypeScript, and Tailwind CSS. It boasts full responsiveness, multilingual support, light and dark modes, engaging animations, and robust form validation.

    TypeScript 1

  4. ecommerce-nextjs-app ecommerce-nextjs-app Public

    A fullstack e-commerce website developed in Nextjs. This platform features a responsive design, comprehensive cart functionality, seamless Stripe payment integration, and a robust dashboard for eff…

    TypeScript 1

  5. web-renders-showcase web-renders-showcase Public

    A web platform developed from scratch to showcase and promote high-quality architectural renders. This project was created as part of my own venture and stands out for its custom design, unique ill…

    HTML

  6. python-apps-games python-apps-games Public

    The first applications and games I created in Python, leveraging the Tkinter and pygame libraries to implement more contemporary user interfaces.

    Python