FileEditViewNavigateCodeRunToolsHelp
portfolio
โއ main
๐Ÿ”
โ–ถ
๐Ÿ›
โš™
๐Ÿ“
๐Ÿ”€
๐Ÿ—
๐Ÿ”–
โš 
๐Ÿ’ป
โ–ถ
๐ŸŒฟ
โ˜• Home.java
โ˜• About.java
๐Ÿ”ถ Projects.xml
๐ŸŸฃ Experience.kt
๐Ÿ”ธ contact.yaml
@SpringBootApplication
public class MuttahirIslam {
 
    @Value("name")
    private String name = "Muttahir Islam";
 
    @Value("role")
    private String role = "Software Engineer";
 
    @Value("specialization")
    private List<String> stack = List.of(
        "Spring Boot", "Java", "Vue.js",
        "Quasar", "React", "AI Integrations"
    );
 
    @Bean
    public String bio() {
        return "Building enterprise-grade cloud-friendly"
            + "software with 20+ production-ready features"
            + "in compliance with security & privacy standards.";
    }
 
    public static void main(String[] args) {
        SpringApplication.run(MuttahirIslam.class, args);
    }
}
 
// ๐Ÿš€ Server started on port 8080
// โœ… All beans initialized successfully
// ๐Ÿ’ผ Ready to accept opportunities
Muttahir Islam
Muttahir Islam
โ˜• Software Engineer
Specializing in Java, Spring Boot, Vue.js, Quasar, React & AI integrations. Building enterprise-level cloud-friendly software with 20+ production-ready features.
@Component
public class About implements Developer {
 
    // โ”€โ”€ Education โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
    private final Education education = Education.builder()
        .degree("BSc Information Technology")
        .university("Punjab University (PUCIT)")
        .cgpa(3.54)
        .build();
 
    // โ”€โ”€ Certifications โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
    private final List<Certification> certs = List.of(
        new Certification("Cloud Fundamentals", "Coursera"),
        new Certification("Introduction to AWS", "Coursera")
    );
 
    // โ”€โ”€ Skills โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
    @Override
    public SkillSet getSkills() {
        return SkillSet.builder()
            .languages("Java", "JavaScript", ".NET", "HTML", "CSS")
            .frameworks("Spring Boot", "Vue.js", "Quasar", "React")
            .tools("Docker", "Kubernetes", "AWS", "Keycloak")
            .build();
    }
}
BSc Information Technology
Punjab University College of IT (PUCIT)
CGPA: 3.54 / 4.00
โ˜ Cloud Fundamentals
Coursera Certificate โ†—
โ˜ Introduction to AWS
Coursera Certificate โ†—
โ˜•
Java
๐ŸŸจ
JavaScript
๐Ÿ”ท
.NET
๐ŸŒ
HTML
๐ŸŽจ
CSS
๐Ÿƒ
Spring Boot
๐Ÿ’š
Vue.js
โšก
Quasar
โš›๏ธ
React
๐Ÿค–
AI Integrations
๐Ÿณ
Docker
โ˜ธ๏ธ
Kubernetes
โ˜๏ธ
AWS
๐Ÿ”
Keycloak
๐ŸฆŠ
GitLab
๐Ÿ“ฎ
Postman
๐ŸชŸ
IntelliJ
๐Ÿ“‹
Jira
๐Ÿ—‚
Sourcetree
๐Ÿ’ฌ
Slack
๐Ÿ’™
Mattermost
๐Ÿ“ง
Freescout
<!-- Projects.xml -->
<projects xmlns="muttahir.portfolio">
 
  <project type="professional" status="production">
    <name>OrderLab</name>
    <period>Oct 2023 โ€“ May 2025</period>
    <role>Full Stack Developer</role>
    <stack>
      <tech>Spring Boot</tech>
      <tech>Vue.js</tech>
      <tech>Keycloak</tech>
    </stack>
  </project>
 
  <project type="professional" status="active">
    <name>Munasib</name>
    <period>Oct 2025 โ€“ Present</period>
    <role>Full Stack Developer</role>
    <stack>
      <tech>Spring Boot</tech>
      <tech>Vue.js</tech>
      <tech>AI</tech>
    </stack>
  </project>
 
  <project type="academic" status="complete">
    <name>Asaan Rasta</name>
    <period>Final Year Project</period>
    <stack>
      <tech>.NET</tech>
      <tech>React</tech>
    </stack>
  </project>
 
</projects>
OrderLab
Oct 2023 โ€“ May 2025 ยท Full Stack Developer
Co-developed a B2B platform to optimize and automate supply chain & procurement for a 5-person team, deployed to production with agile practices.
Spring Boot Vue.js Keycloak Microservices Docker
Munasib
Oct 2025 โ€“ Present ยท Full Stack Developer
AI-driven e-commerce platform with intelligent pricing negotiation and enhanced buyerโ€“seller engagement for dynamic online transactions at scale.
Spring Boot Vue.js AI Integration Microservices
Asaan Rasta
Final Year Project ยท Academic
Route finder app providing best local transport routes for students and office workers โ€” an affordable alternative to ride-hailing services.
.NET React Maps API Route Optimization
// Experience.kt
data class Experience(
    val company: String,
    val role: String,
    val period: String,
    val highlights: List<String>
)
 
val career = listOf(
 
  Experience(
    company = "Redmath",
    role = "Software Engineer",
    period = "Aug 2023 โ€“ May 2025",
    location = "Lahore, PK",
    highlights = listOf(
      "Reduced API response times by 40%",
      "Reduced login support tickets by 60%",
      "Led Kafka, Feign, Apache Ignite integrations"
    )
  ),
 
  Experience(
    company = "Punjab University (PUCIT)",
    role = "Teaching Assistant",
    period = "Sep 2021 โ€“ Apr 2022",
  ),
 
  Experience(
    company = "Devsinc",
    role = "Campus Ambassador",
    period = "Oct 2022 โ€“ Jul 2023",
  )
)
Redmath
Software Engineer
Aug 2023 โ€“ May 2025 ยท Lahore, Pakistan
Translated complex business requirements into scalable technical solutions, directly contributing to faster release cycles.
Designed high-performance REST APIs with Spring Boot, reducing API response times by 40% and improving service stability.
Led PoC efforts across distributed systems using Kafka, Feign, Apache Ignite, and MySQL for real-time data flow.
Upgraded & customized Keycloak auth layer, reducing login-related support tickets by 60%.
Devsinc
Campus Ambassador
Oct 2022 โ€“ Jul 2023 ยท Lahore, Pakistan
Bridged the gap between industry and academia by organizing bootcamps and student events across campus.
Punjab University (PUCIT)
Teaching Assistant
Sep 2021 โ€“ Apr 2022 ยท Lahore, Pakistan
Supported students in labs, strengthened programming concepts and boosted overall academic performance.
contact.yaml
Feel free to reach out. I'm always open to new opportunities and collaborations.
socials:
linkedin: muttahirislam
location: Lahore, Pakistan
available: true
โއ main
โ˜• Java 21
โœ“ 0 errors
1:1 UTF-8 LF IntelliJ IDEA