GithubHelp home page GithubHelp logo

Hey 👋, I'm Fasil

DEVELOPER. PHOTOGRAPHER. CINEPHILE.

About Me

import express, { Express, Request, Response, NextFunction } from "express";
import cors from "cors";

const PORT = 3000;

const app: Express = express();

app.use(cors());
app.use(express.json());

app.get("/about", (req: Request, res: Response) => {
  res.status(200).json({
    fullName: "Muhammed Fasil K",
    interests: [
      "coding 💻",
      "movie 🎬",
      "music 🎧",
      "photography 📷",
      "travel 🧳",
      "coffee ☕",
    ],
    askMeAbout: ["web dev", "mobile dev", "movies"],
    technologies: {
      programmingLanguages: [
        "C",
        "C++",
        "Java",
        "Python",
        "PHP",
        "Ruby",
        "Bash",
        "TypeScript",
      ],
      frontEnd: ["HTML", "CSS", "JavaScript", "ReactJS", "Next.js"],
      backEnd: ["Node.js", "Express.js", "NestJS"],
      databases: ["MongoDB", "MySQL", "PostgreSQL"],
      testing: ["Jest"],
      animationLibraries: ["Framer Motion", "GSAP", "AOS"],
      apiTechnologies: ["REST", "GraphQL"],
      otherLibraries: [
        "Redux Toolkit",
        "Tailwind CSS",
        "Bootstrap",
        "Figma",
        "Pug",
        "EJS",
        "JSON",
        "Data Structures and Algorithms",
        "Zod",
      ],
    },
  });
});

app.get("/contact", (req: Request, res: Response) => {
  res.status(200).json({
    email: "[email protected]",
    portfolio: "https://fasils.vercel.app",
    links: {
      linkedin: "https://www.linkedin.com/in/mfasilofficial",
      leetcode: "https://leetcode.com/fasilofficial",
      medium: "https://medium.com/@mfasilofficial",
    },
  });
});

app.use((req: Request, res: Response, next: NextFunction) => {
  res.status(404).json({ message: "Oops! Route not found" });
});

app.use((err: any, req: Request, res: Response, next: NextFunction) => {
  console.error(err.stack);
  res.status(500).json({ message: "Internal Server Error" });
});

app.listen(PORT, () => {
  console.log(`Server is running on http://localhost:${PORT}`);
});

Muhammed Fasil K's Projects

50-python-programs icon 50-python-programs

This repository contains 50 absolutely simple and beginner friendly python programs. This repository gives you an idea about the basics of python language and libraries like math, random, tkinter, etc..

aora icon aora

A modern React Native social media app to share AI generated images with the community.

apple-page-clone icon apple-page-clone

Clone page of Apple iPhone 15 pro page with complex animations using GSAP and 3D model view of the product using Threejs

awesome-python icon awesome-python

A curated list of awesome Python frameworks, libraries, software and resources

beginner-projects icon beginner-projects

This repository is a collection of basic HTML, CSS, and JavaScript projects designed to assist beginner developers in starting their journey with web development.

codex icon codex

This is a ChatGPT clone developed using vanilla JavaScript with help of OpenAPI's 'natural language to code' API. This AI application can answer any type of questions and doubts for you especially programming based questions.

cowsay icon cowsay

'Cowsay' CLI application's clone with multiple figures

deeperjs icon deeperjs

A versatile npm package providing a powerful deep cloning function for JavaScript objects.

dsa icon dsa

This repository contains Dart and JavaScript implementations of various data structures and algorithms.

dynamic-programming icon dynamic-programming

A simple repository to learn and understand the concept of Dynamic Programming with the help of various problems.

emoji-search icon emoji-search

A simple React project where you can search for emojis and copy them. Thanks @ahfarmer for this project idea.

fash-on icon fash-on

Fash-on is a e-commerce web application developed using Node.js, Express.js, and MongoDB

fasils icon fasils

A modern portfolio web application developed using React JS. This application uses Sanity content management system for storing data

figma-clone icon figma-clone

A minimal Figma clone using Fabric.js and LiveBlocks for real-time collaboration.

filmpire icon filmpire

A modern movie application developed using React JS with features like pagination, searching, filtering and many more features. Filmpire uses Alan AI for making the application more interactive and simple to use by the users.

gericht icon gericht

A modern restaurant landing page developed using ReactJS.

golds-gym icon golds-gym

A modern fitness application developed using React JS

graphql-library-api icon graphql-library-api

A simple GraphQL library management system API designed to manage books and authors.

greet-page icon greet-page

You can use this simple webpage as a home page or a specific page that you can load when the browser starts.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.