Skip to content
View fasilofficial's full-sized avatar
🎯
Focus
🎯
Focus
Block or Report

Block or report fasilofficial

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

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: "muhammedfasilofficial@gmail.com",
    portfolio: "https://fasils.vercel.app",
    links: {
      linkedin: "https://www.linkedin.com/in/fasilofficial",
      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}`);
});

Pinned

  1. filmpire filmpire Public

    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…

    JavaScript 15 2

  2. phanox phanox Public

    An E-Commerce web application developed using Next JS and Sanity content management system. All the basic things you can do on a shopping page like adding multiple products to cart are possible her…

    JavaScript 1

  3. golds-gym golds-gym Public

    A modern fitness application developed using React JS

    JavaScript 7 1

  4. lyriks lyriks Public

    Lyriks is a ad free music player developed using React JS and it uses the Shazam Core music API for getting the songs.

    JavaScript 3

  5. fash-on fash-on Public

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

    EJS

  6. vibe vibe Public

    A MERN stack social media application

    JavaScript