Skip to content
View gtchakama's full-sized avatar
🌿
Full-Stack Developer
🌿
Full-Stack Developer

Block or report gtchakama

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

Innovative Fullstack Developer with a track record of building scalable, high-performance web and mobile applications. I specialize in architecting robust systems, optimizing user experiences, and integrating advanced cloud and AI-driven solutions.

Tech Stack

  • Frontend: React.js, React Native, Flutter, Tailwind CSS, Redux
  • Backend: Node.js, Ruby on Rails, Express.js
  • Databases: PostgreSQL, MongoDB, MySQL
  • Cloud & DevOps: Git, Docker, Google Cloud Platform (GCP), Heroku
  • Google Technologies: Fleet Engine (Last Mile Fleet Solutions), Driver SDK

Selected Projects

  • Oddah – A digital space designed for couples to foster connection through mindful moments and shared dreams
  • WordRift – A word-matching game leveraging React & Tailwind CSS for a seamless UI/UX
  • HearMe – Assistive technology for speech impairments, enhancing accessibility through text-to-speech and speech-to-text integration

Talks & Industry Engagement

I actively contribute to the tech ecosystem by speaking at major events. Notably, I presented at Google Build with AI, where I demonstrated the capabilities of Gemini AI and its transformative potential in real-world applications.

Blog & Insights

I share insights on software engineering, emerging technologies, and industry trends. Explore my latest articles here:
πŸ“– Read More

πŸš€ Always building, always innovating.

Pinned Loading

  1. Permutations - Generates all permuta... Permutations - Generates all permutations of an array's elements (contains duplicates).
    1
    const permutations = arr => {
    2
      if (arr.length <= 2) return arr.length === 2 ? [arr, [arr[1], arr[0]]] : arr;
    3
      return arr.reduce(
    4
        (acc, item, i) =>
    5
          acc.concat(
  2. Query selector shorthand Query selector shorthand
    1
    const $ = document.querySelector.bind(document);
    2
    const $$ = document.querySelectorAll.bind(document);
    3
    
                  
    4
    const mainContent = $('.main-content');
    5
    const externalLinks = $$('a[target="_blank"]');
  3. nodejs-web-scrapper nodejs-web-scrapper Public

    This code provides a web scraping API that extracts information from the HTML of a given website.

    JavaScript 3

  4. zi-user zi-user Public

    Zi-User is a simple package that generates random user objects with fake names and passwords. It uses an object containing arrays of fake first names and last names to generate random name combinat…

    TypeScript 1