Skip to content
View gtchakama's full-sized avatar
πŸ‡ΏπŸ‡Ό
Full-Stack Developer
πŸ‡ΏπŸ‡Ό
Full-Stack Developer
Block or Report

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

George Chakama - Fullstack Developer πŸš€

Welcome to my developer space! I'm George Chakama, a passionate Fullstack Developer dedicated to crafting exceptional web and mobile applications. With a strong foundation in both frontend and backend technologies, I bring a wealth of experience and expertise to the table.

Tech Stack

Frontend

  • JavaScript Frameworks: ReactJS, React Native
  • HTML/CSS Frameworks: Bootstrap, Tailwind CSS
  • State Management: Redux, Redux Toolkit
  • UI/UX Design: Figma

Backend

  • Languages: JavaScript (Node.js), Ruby (Ruby on Rails)
  • API Development: RESTful APIs, GraphQL
  • Databases: MongoDB, PostgreSQL, MySQL
  • Server Management: Express.js

DevOps & Cloud

  • Version Control: Git, GitLab, GitHub
  • CI/CD: GitLab CI/CD
  • Containerization: Docker
  • Cloud Platforms: Google Cloud Platform, Heroku

Other Skills

  • Blockchain: Ethereum
  • Testing: Jest, Enzyme
  • Security: JWT, OAuth
  • Project Management: Agile, Scrum, Kanban

Projects

HearMe πŸ—£οΈ

HearMe is a groundbreaking app designed to assist individuals with speech impairments. It features text-to-speech and speech-to-text capabilities, providing a voice to those who need it most.

Document Classification πŸ“„

Utilizing machine learning algorithms, I've developed a document classification system that automatically categorizes documents based on their content. This project streamlines document management processes and enhances productivity.

Speech Recognition πŸ—£οΈ

I've worked on speech recognition systems using deep learning techniques to accurately transcribe spoken language into text. These systems are used in applications like virtual assistants and dictation software.

Portfolio v8.2.5 🌟

My evolving portfolio showcases my latest projects, blog posts, and insights into the world of Fullstack Development. Check it out here.

Blog & Insights

Explore my in-depth articles and tutorials on various tech topics:

Communities & Collaboration

Zim Developers πŸ‡ΏπŸ‡Ό

As a co-founder of Zim Developers, I lead a vibrant community of tech enthusiasts, fostering collaboration and knowledge sharing to empower developers in Zimbabwe and beyond.

Built Different 🌍

As a community leader at Built Different, I organize events and discussions that inspire innovation and creativity, driving positive change in the tech industry.

Let's Connect 🀝

I'm always open to exciting projects, collaborations, and discussions. Reach out to me on Twitter or LinkedIn to start a conversation. Together, let's build the future of technology!


Thank you for reading, and I look forward to connecting with you soon! πŸš€

Pinned

  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…

    JavaScript 1