Skip to content
View xynoipse's full-sized avatar
💻
Coding from home
💻
Coding from home
  • Hooli Software
  • Philippines
  • 03:04 (UTC +08:00)

Block or report xynoipse

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
xynoipse/README.md
interface Profile {
  pronouns: string;
  code: string[];
  technologies: {
    frontend: { [key: string]: string[] };
    backend: { [key: string]: string[] };
    databases: string[];
    serverless: string[];
    misc: string[];
  };
  architecture: string[];
  funFact: string;
}

const jason: Profile = {
  pronouns: 'He' || 'Him',
  code: ['JavaScript', 'Go', 'PHP', 'Python'],
  technologies: {
    frontend: {
      js: ['TypeScript', 'React', 'Redux', 'Redux-Saga'],
      css: ['Tailwind CSS', 'Bootstrap'],
    },
    backend: {
      js: ['Node', 'Express'],
      go: ['Revel'],
      php: ['Laravel'],
      python: ['Flask'],
    },
    databases: ['MySQL', 'MongoDB', 'Amazon DynamoDB'],
    serverless: ['Amazon S3', 'AWS Lambda'],
    misc: ['Docker', 'Vim'],
  },
  architecture: ['MVC', 'REST', 'Single-Page Application'],
  funFact: 'There are two ways to write error-free programs; only the third one works',
};

Popular repositories Loading

  1. tweety tweety Public

    Twitter clone app built with Laravel 7

    PHP 1 1

  2. lvdev lvdev Public

    Full stack Laravel and Vue.js SPA

    PHP

  3. vidxpress-api vidxpress-api Public

    RESTful API for video rental app built with Node, Express and MongoDB

    JavaScript

  4. vidxpress-app vidxpress-app Public

    Vidxpress frontend React web app

    JavaScript

  5. devcamper-api devcamper-api Public

    Devcamper backend REST API

    JavaScript

  6. wp-base wp-base Public

    Composer-ified WordPress base project

    PHP