Skip to content
View Robertcego's full-sized avatar
πŸ’»
Currently working on backend, microservices and API implementations
πŸ’»
Currently working on backend, microservices and API implementations

Block or report Robertcego

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

github banner (LinkedIn Article Cover Image)

⚑ Quick Facts

  • πŸ’» I build modern websites and components that scale.
  • 🎸 Fun fact: I play guitar, love cruising around on my longboard and going in mountain bike rides.
  • 🌱 Currently exploring better architecture and design patterns with React/Next.
  • 🧠 Learning more about performance tuning and clean code.

πŸ‘‹ About Me

With over 5 years of experience working, maintaining and creating web applications, I bring a proven track record of enhancing UI/UX, optimizing codebases, and delivering innovative solutions for global brands like 3M and Solventum. My versatile skill set now spans significant contributions to both frontend and backend systems.

My core expertise involves modern frontend technologies, including React, Next.js, Redux, JavaScript, and TypeScript, which I use to craft interactive interfaces. On this foundation, I've actively expanded my capabilities by contributing to backend refactoring efforts and developing robust APIs, learning new technologies like JOI, Zod, and GraphQL to ensure seamless systems integration.

I thrive in international, cross-functional teams, collaborating effectively with designers, backend developers, and stakeholders to deliver intuitive web solutions that truly meet user and business needs. My proven ability to adapt quickly, learn new stacks, and solve complex problems efficiently makes me a valuable asset to any development team.

Always eager to learn and explore new technologies, I am committed to staying at the forefront of the always evolving web development landscape. Let's connect to explore how I can contribute to creating your next impactful digital experience!


πŸ“Œ Connect with me:

dev.to linkedin

πŸ›  Languages & Tools

html5 css3 javascript git sass bootstrap react redux babel gatsby nextjs tailwind


πŸ’‘ Codewars

Codewars Robertcego


πŸ“Š GitHub Stats

GitHub Stats
Top Languages

Pinned Loading

  1. express-rest-api-practice express-rest-api-practice Public

    A TypeScript-based REST API built with Express.js, designed as a practice implementation for learning modern Node.js API development patterns.

    TypeScript

  2. js-fetchWrapper js-fetchWrapper Public

    JavaScript helper class for the Fetch api

    JavaScript 1

  3. react-color-palette-generator react-color-palette-generator Public

    Color palette generator made with React.

    JavaScript 1

  4. movie-app movie-app Public

    Movie search app implemented with React, React-Router, React-Redux and Redux-Thunk

    JavaScript 1

  5. Basic memoization implementation in ... Basic memoization implementation in ES5 to understand old JavaScript version patterns
    1
    var memoizeFunctions = function (fn) {
    2
      var cache = {};
    3
    
                  
    4
      return function () {
    5
        
  6. Debounce example in ES5 for practice... Debounce example in ES5 for practice purposes
    1
    var debounce = function (fn, delay) {
    2
      // need to initiate the id for the timeout
    3
      var timeoutId;
    4
    
                  
    5
      return function () {