Hello.

I'm Basit

Mobile App Developer
Got a project? My resume
Profile Picture
HTML5 CSS Javascript Node.js React Git Github

Website Development

App Development

Website Hosting

About me

I started my software journey from photography. Throughout that, I learned to live the process of creating from scratch. Since then, this has led me to software development as it fulfills my love for learning and building things.

0+

Completed Projects

0%

Client Satisfaction

0+

Years of Experience

Projects

Battleship

HTML CSS Javascript

Used components of Javascript to implement basic data structures through the game of Battleship. Used a terminal to display ships and tracked where ships are hit or missed.

View Github View project
class Ship {
  constructor(length) {
    this.length = length;
    this.hits = 0;
    this.sunk = false;
  }
  
  hit() {
    this.hits++;
    if (this.hits >= this.length) {
      this.sunk = true;
    }
  }
}

Movie Titles API

React API CSS

Used a public movie API to build a collection movie list that sorts from A to Z or vice versa. It also counts how many movies in each container.

View Github View project
Movie App

Javascript Calculator

HTML CSS JS

Uses simple algorithm concepts in Javascript to produce an arithmetic result in a terminal.

View Github View project
function calculate(n1, operator, n2) {
  let result = '';
  
  if (operator === 'add') {
    result = parseFloat(n1) + parseFloat(n2);
  } else if (operator === 'subtract') {
    result = parseFloat(n1) - parseFloat(n2);
  }
  
  return result;
}

SaaS Landing Page

HTML CSS

Used HTML concepts such as creating a form and a basic session. It also used components of both the grid and flexbox elements.

View Github View project
SaaS App
Contacts

Have a project?
Let's talk!

```