Skip to content
View Aiche-H's full-sized avatar
🤍
learning
🤍
learning
  • Taitotalo
  • Helsinki

Block or report Aiche-H

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
Aiche-H/README.md

Henrikki Gren

Web Development Maverick From Finland

Expand to see how i make a project awesome
class HenrikkiGren {
  constructor() {
    this.skills = {
      javascript: 'Crafting interactive experiences',
      html: 'Building the foundation',
      css: 'Styling with flair',
      sql: 'Querying the data'
    }
  }

  makeProjectAwesome(project) {
    project.isAwesome = true;
    console.log(`With my skills, I'm making ${project.name} an awesome project!`);
  }
}

class Project {
  constructor(name) {
    this.name = name;
    this.isAwesome = false;
  }

  addContributor(contributor) {
    if (contributor instanceof HenrikkiGren) {
      contributor.makeProjectAwesome(this);
    }
  }

  getStatus() {
    console.log(`${this.name} is ${this.isAwesome ? 'now an awesome' : 'still not an awesome'} project.`);
  }
}

const myProject = new Project('the Project');
const henrikki = new HenrikkiGren();
myProject.addContributor(henrikki);
myProject.getStatus();

Projects:

Portfolio:

  • Witness my web magic: Here

Contact:

  • Ignite the collaboration spark: Reach out via my portfolio!

Github Stats

Aiche-H's GitHub stats

Top Langs

Pinned Loading

  1. Portfolio Portfolio Public

    this is my portfolio

    HTML 1

  2. WEB_15_group_3_project WEB_15_group_3_project Public

    This repository contains the source code for our school group project a web application developed using Scrum methodology and HTML, CSS, and JavaScript. The project aimed to create a functional and…

    HTML 1

  3. Temporary-File-Cleaner Temporary-File-Cleaner Public

    This C++ application is a beginner's project designed to clean up temporary files on a system. It's a simple manual tool that allows users to quickly and safely delete unnecessary files, freeing up…

    C++ 1

  4. dynamic-text-input-canvas dynamic-text-input-canvas Public

    JavaScript canvas dynamic text Input field

    JavaScript 1