Skip to content
View nicomaag's full-sized avatar
  • Stuttgart

Block or report nicomaag

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.

Content in all repositories owned by your account will be closed.
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
nicomaag/README.md

Header

<Nico.code />

Turning Coffee into Automation since 1997 ☕️

Portfolio GitHub

🚀 Vue Component Showcase

<!-- Developer.vue -->
<template>
  <div class="developer-card">
    <ProfileHeader
      :name="profile.name"
      :title="profile.title"
      :years-of-experience="10+"
    />
    <SkillMatrix :skills="profile.skills" />
    <CurrentProject
      v-for="project in activeProjects"
      :key="project.id"
      :name="project.name"
      :stack="project.stack"
      @deploy="handleDeploy"
    />
  </div>
</template>

<script setup>
const profile = {
  name: 'Nico',
  title: 'Automation Wizard',
  skills: ['Vue.js', 'C#', 'JavaScript', 'HTML', 'CSS'],
  motto: 'If it can be automated, it will be automated'
}

const activeProjects = [
  { id: 1, name: 'OutfitPicker', stack: ['Vue.js', 'Node.js'] },
  { id: 2, name: 'nicoma-therapy', stack: ['JavaScript', 'Vue.js'] },
  { id: 3, name: 'rexx', stack: ['Node.js', 'Puppeteer'] }
]

const handleDeploy = (projectId) => {
  console.log('🚀 Deploying project:', projectId)
}
</script>

<style scoped>
.developer-card {
  border-radius: 8px;
  background: linear-gradient(135deg, #42b883 0%, #34d058 100%);
}
</style>

🎯 Projects in Production

Project Status Tech Stack
🎨 OutfitPicker yarn dev Vue.js Node.js
🤖 rexx docker run Node.js Docker
📦 nicoma-node private Node.js
🍎 nicoma-macos private macOS

💻 Tech Stack

<template>
  <TechStack>
    <StackCategory name="Frontend">
      <Skill name="Vue.js" level="Expert" icon="🚀" />
      <Skill name="JavaScript" level="Expert" icon="💫" />
      <Skill name="HTML/CSS" level="Advanced" icon="🎨" />
    </StackCategory>
    
    <StackCategory name="Backend">
      <Skill name="C#" level="Expert" icon="⚡️" />
      <Skill name="Node.js" level="Advanced" icon="🛠" />
    </StackCategory>
    
    <StackCategory name="DevOps">
      <Skill name="Docker" level="Advanced" icon="🐳" />
      <Skill name="Automation" level="Wizard" icon="🤖" />
    </StackCategory>
  </TechStack>
</template>

📊 GitHub Stats

🎵 Current Status

When I'm... I'm Probably...
🎨 Coding Building in Vue.js
🤖 Automating Making life easier
📚 Learning Exploring new tech
🎮 Gaming When tests pass ✅

<🎲 Fun Facts />

const nico = {
  favoriteEmoji: "🚀",
  dailyMood: "Let's automate it!",
  superPower: "Turning coffee into code",
  hobbies: [
    "Creating helpful tools",
    "Learning new tech",
    "Solving puzzles"
  ]
}

return "Thanks for visiting! 👋"

Profile views

Footer

Popular repositories Loading

  1. awesome-aerospike awesome-aerospike Public

    A curated list of clients, tools, connectors and learning material for the Aerospike database

    1

  2. rexx rexx Public

    Puppeteer script to automatically checkin into rexx,

    JavaScript

  3. nicomaag nicomaag Public

  4. gold-trading-platform gold-trading-platform Public

    Python

  5. awesome-mongodb awesome-mongodb Public

    Forked from ramnes/awesome-mongodb

    🍃 A curated list of awesome MongoDB resources, libraries, tools and applications

  6. awesome-postgres awesome-postgres Public

    Forked from dhamaniasad/awesome-postgres

    A curated list of awesome PostgreSQL software, libraries, tools and resources, inspired by awesome-mysql