Skip to content
View gabrielSantoc's full-sized avatar

Block or report gabrielSantoc

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
gabrielSantoc/README.md

💻 About Me

interface Developer {
  name: string;
  role: string[];
  email: string;
  phone?: string;
  location?: string;
  experience?: number;
}

const developer: Developer = {
  name: "Gabriel Santoc",
  role: "Flutter Developer", "Backend Developer", "Safe Lane", 
  email: "gabrielsantoc05@gmail.com",
};


// Work Experience
// Work Experience
interface Job {
  company: string;
  position: string;
  duration: string;
  tech: string[];
}

const experience: Job[] = [
  {
    company: "EMS. Group Inc.",
    position: "Software Developer Intern",
    duration: "Feb - Mar 2025",
    tech: ["HTML", "CSS", "Javascript", "TypeScript", "Node.js", "Express", "Langchain", "FAISS", "mySQL", "CentOS"]
  },
];

// Featured Projects
// Featured Projects
interface Project {
  name: string;
  description: string;
  tech: string[];
  github?: string;
  demo?: string;
}

const projects: Project[] = [
  {
    name: "myEUC",
    description: "AI Powered student handbook mobile application",
    tech: ["Flutter", "Dart", "Supabase", "Express.js", "Langchian", "FAISS"],
    github: "https://github.com/gabrielSantoc/myEUC-x-Supabase",
  },
  {
    name: "Scheduled Push Notification API",
    description: "A RESTful API that automatically sends push notifications for upcoming events in the myEUC app.", 
    tech: ["Node.js", "Express.js", "Javascript", "Docker", "Supabase"],
    github: "https://github.com/gabrielSantoc/Push-Notification-Service-API"
  },
  {
    name: "EUScheduler",
    description: "An offline class schedule viewer mobile application designed for university students.",
    tech: ["Flutter", "Dart", "SQLite", "Supabase"],
    github: "https://github.com/gabrielSantoc/EUCcheduler",
  }
];

// Education
// Education
interface Education {
  degree: string;
  school: string;
  startYear: number;
  endYear: number;
}

const education: Education = {
  degree: "Bachelor of Science in Computer Science",
  school: "Manuel S. Enverga University",
  startYear: 2021,
  endYear: 2025,
};

// Contact Information
// Contact Information
const contact = {
  email: developer.email,
  linkedin: "https://www.linkedin.com/in/gabriel-santoc-827307281",
  github: "https://github.com/gabrielSantoc",
  portfolio: "https://gabrielsantoc.vercel.app"
};

// Current Status
// Current Status
const status = {
  seekingOpportunities: true,
  availableForRemote: true,
  preferredRole: ["Backend Dev", "Flutter Dev", "Any"],
  startDate: "Immediately"
};

console.log(`📧 Contact me at: ${contact.email}`);

Pinned Loading

  1. myEUC-x-Supabase myEUC-x-Supabase Public

    Dart

  2. Push-Notification-Service-API Push-Notification-Service-API Public

    RESTful API that powers the myEUC, sending timely notification for school events and annoucements

    JavaScript

  3. EUCcheduler EUCcheduler Public

    Class schedule viewer

    Dart 1

  4. EUCcheduler-Teacher- EUCcheduler-Teacher- Public

    Class schedule manager for EUCcheduler

    Dart 1

  5. Butterfly Butterfly Public

    Forked from LinwoodDev/Butterfly

    🎨 Powerful, minimalistic, cross-platform, opensource note-taking app

    Dart

  6. gwa-calculatorrr gwa-calculatorrr Public

    GWA calculator for my classmates

    CSS 1 1