Skip to content
View iamqasimali's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report iamqasimali

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

Hi there


πŸ‘¨β€πŸ’» Know Me

  • πŸ”­ I’m currently working on Web Applications
  • 🌱 Learning Backend Development (Python, Generative AI, LLM)
  • πŸ’¬ Interested in open source projects collaboration and app Security.
  • πŸ˜„ Pronouns: He/Him
  • ⚑ Motivated ✨
  • πŸ‘― I’m looking to collaborate on Generative AI, fintech & block-chain technology web application projects
  • πŸ’¬ Ask me about Full-stack Web Applications
  • πŸ“« How to reach me: iamqasimalizahid@gmail.com
  • ⚑ Fun fact: The first computer β€œbug” was an actual real-life bug.

πŸ› οΈ Languages and Tools


html5 css3 JS css3 rails typescript figma git mongodb postgresql mysql

πŸ”₯ Stats

iamqasimali

Β iamqasimali

iamqasimali

Projects

Badminton

The project is a comprehensive badminton tournament organization and management system featuring three distinct portals: Player, Tournament Management, and Admin. Built using the MERN stack, this system leverages React for a dynamic front-end experience, Express.js for the backend API, and PostgreSQL for robust data management.

project 1

Next.js, React, Express.js, Nodejs, AWS S3, Postgresql

Frontend

Next.js, Javascript, React, JSX, TailwindCSS, useState, useEffect, useRef, Axios, Chart.js, Cropperjs, Flatpickr, react-google-recaptcha, react-image-gallery, react-infinite-scroll-component, react-loader-spinner, react-loading-skeleton, react-phone-number-input, Axios, react-query, formik

Backend

Bcryptjs, cookie-parser, joi, cors, dotenv, express, jsonwebtoken, sequelize, uuid, Heroku, AWS S3, Postgresql

Agency Pics

Agency.pics is a platform designed for connecting models, influencers, and creatives. It provides a space for users to showcase their portfolios and network with industry professionals. The site aims to streamline the process of finding and collaborating with talent for various creative projects.

project 1

Ruby on Rails, React, Sendgrid, Stripe Payments, Heroku, AWS S3

Frontend

React, SCSS, Bootstrap, Javascript, useState, useEffect, useRef, Axios, Chart.js, Cropperjs, Flatpickr, react-share, react-google-recaptcha, react-image-gallery, react-infinite-scroll-component, react-loader-spinner, react-loading-skeleton, react-phone-number-input, react_ujs

Backend

Stripe Checkout, Stripe Customers, Stripe Products, Devise, Pendit, Pg-search, Simple_form, Omniauth-facebook, Gibbon, Faker, Sendgrid-ruby, Sentry-rails, Sidekiq, Activejobs, ActiveStorage, Kaminari, Heroku, AWS S3

IntimeGDT

The IntimeGDT provides access to a wide variety of datasets, allowing users to discover, evaluate, and access data in real-time. It offers data products from multiple providers, which can be seamlessly integrated into users' data ecosystems for various use cases, including analytics, machine learning, and business intelligence. The marketplace includes datasets across different industries and domains, helping organizations make data-driven decisions.

project 1

Next.js, React, TailwindCSS, Ruby on Rails, Sendgrid, Stripe Payments

Frontend

React, SCSS, Bootstrap, Javascript, useState, useEffect, useRef, Axios, Chart.js, Cropperjs, Flatpickr, react-share, react-google-recaptcha, react-image-gallery, react-infinite-scroll-component, react-loader-spinner, react-loading-skeleton, react-phone-number-input, react_ujs, formik, react-query

Backend

Stripe Checkout, Stripe Customers, Stripe Products, Devise, Pendit, Pg-search, Simple_form, Omniauth-facebook, Gibbon, Faker, Sendgrid-ruby, Sentry-rails, Sidekiq, Activejobs, ActiveStorage, Kaminari, Heroku, AWS S3

IntimeGDT

Web-based monitoring and observability platform, built using Hugo, Tailwind CSS, and Alpine.js. It provides real-time insights into IT infrastructure, applications, and systems, allowing users to monitor performance, errors, and logs. The platform features a modern, responsive interface designed with Tailwind CSS, offering an intuitive user experience across all devices. With the help of Alpine.js, Elite Sentry includes dynamic, interactive components for smooth front-end interactivity. It supports customizable dashboards for visualizing critical data metrics.

project 1

AlpineJS, TailwindCSS, Hugo, Netlify

CarShare

Carshare is a model of car rental where people rent cars for short periods of time, often by the hour. It differs from traditional car rental in that the owners of the cars are often private individuals themselves, and the car sharing facilitator is generally distinct from the car owner. Car sharing is part of a larger trend of shared mobility.

project 1

Next.js, React, Typescript, TailwindCSS, Ruby on Rails, Sendgrid, Stripe Payments

Frontend

Next.js, React, TailwindCSS, Javascript, Axios, Chart.js, Cropperjs, Flatpickr, react-share, react-google-recaptcha, react-image-gallery, react-infinite-scroll-component, react-loader-spinner, react-loading-skeleton, react-phone-number-input, formik, react-query

Backend

Stripe Checkout, Stripe Customers, Stripe Products, Devise, Pendit, Pg-search, Simple_form, Omniauth-facebook, Gibbon, Faker, Sendgrid-ruby, Sentry-rails, Sidekiq, Activejobs, ActiveStorage, Kaminari, Heroku, AWS S3

Diamond Chauffeur Limousine

project 1

HTML, CSS, Javascript

Description goes here




Contact Me

https://www.linkedin.com/in/qasim-ali-zahid/https://www.linkedin.com/in/qasim-ali-zahid/ https://stackoverflow.com/users/19468404/qasim-ali https://medium.com/@qasimali7566675 codingphase



πŸ˜† Fun





with by [Qasim Ali Zahid] Girl in a jacket

Pinned Loading

  1. Safely_inspect_nested_objects_with_R... Safely_inspect_nested_objects_with_Reduce.js
    1
    var luke = {
    2
      name: "luke skywalker",
    3
      jedi: true,
    4
      parents: {
    5
        father: {
  2. qr_code_helper.rb qr_code_helper.rb
    1
    module QrCodeHelper
    2
      def qr_code_as_svg(uri)
    3
        RQRCode::QRCode.new(uri).as_svg(
    4
            offset: 0,
    5
            color: '000',
  3. flatten_with_reduce.js flatten_with_reduce.js
    1
    var data = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];
    2
    var flattenedData = data.reduce(function(acc, value) {
    3
      return acc.concat(value);
    4
    }, []);
    5
    
                  
  4. 12-facade_pattern.rb 12-facade_pattern.rb
    1
    class Order
    2
      attr_accessor :address, :food, :payment
    3
    
                  
    4
      def initialize(food)
    5
        @food = food
  5. miazzle_tailwind_css_email_templates miazzle_tailwind_css_email_templates Public

    HTML

  6. ruby_exercises ruby_exercises Public

    Ruby