Giter Club home page Giter Club logo

🖮 Coding


🎶 Vibing to

spotify-github-profile

💫 About Me:

<template>
  <div>
    <h1>Hello! I'm {{ name }}.</h1>
    <p>You can also call me {{ pronouns }}.</p>
    <p>Currently, I'm learning {{ currentlyLearning }}.</p>

    <h2>My Skills:</h2>
    <ul>
      <li v-for="skill in skills" :key="skill">{{ skill }}</li>
    </ul>
    <button @click="learnNewSkill('Nuxt.js')">Learn Nuxt.js</button>
  </div>
</template>

<script>
import { ref } from '@nuxtjs/composition-api';

export default {
  setup() {
    const name = ref('Kerim');
    const pronouns = ref('He' || 'Him');
    const currentlyLearning = ref('Nuxt.js');

    const skills = ref([
      'PHP',
      'JavaScript',
      'C#',
      'VB',
      'Git',
      'Linux',
      'Databases',
      'REST APIs',
    ]);

    const introduce = () => {
      alert(`Hello! I'm ${name.value}. You can also call me ${pronouns.value}.`);
    };

    const learnNewSkill = (newSkill) => {
      skills.value.push(newSkill);
      alert(`I'm now learning ${newSkill}!`);
    };

    return {
      name,
      pronouns,
      currentlyLearning,
      skills,
      introduce,
      learnNewSkill,
    };
  },
};
</script>

🌐 Socials:

Discord Instagram LinkedIn Twitch Twitter YouTube

💻 Tech Stack:

C# CSS3 HTML5 JavaScript PHP Lua TypeScript Bootstrap Code-Igniter Flutter jQuery Laravel NPM NodeJS Svelte Vue.js Yarn Webpack Apache Nginx MongoDB MySQL MariaDB SQLite MicrosoftSQLServer Adobe After Effects Adobe Audition Adobe Photoshop LINUX Arduino Postman .Net

📊 GitHub Stats:



🏆 GitHub Trophies

✍️ Random Dev Quote

🔝 Top Contributed Repo

😂 Random Dev Meme


💰 You can help me by Donating

BuyMeACoffee

Kerim TONKAZ's Projects

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.