Skip to content
View Youssef-Azijni's full-sized avatar
🐒
Monkey business...
🐒
Monkey business...
  • Self employed (Feel free to reach out!)

Block or report Youssef-Azijni

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
Youssef-Azijni/README.md
public class Youssef-Azijni extends GitHubUser {

  public YoussefAzijni() {
    super("Youssef-Azijni", "Netherlands");

    this.addTopLanguages("PHP", "Java")
    this.addLanguage("html", "css", "python", "C#");
    this.AddFrameWorks("Laravel", "Kotlin");
  }
}

public abstract class GitHubUser {

  private final String name;
  private final String country;

  private ArrayList<String> topLanguages = new ArrayList<>();
  private ArrayList<String> languages = new ArrayList<>();
  private ArrayList<String> frameWorks = new ArrayList<>();

  public GitHubUser(String name, String country) {
      this.name = name;
      this.country = country;
  }

  public void addTopLanguages(String... topLanguages) {
    this.topLanguages.addAll(topLanguages);
  }

  public void addLanguage(String... language) {
    this.languages.addAll(language);
  }

  public void addFrameWorks(String... frameWorks) {
    this.frameWorks.addAll(frameWorks);
  }

Popular repositories Loading

  1. Youssef-Azijni Youssef-Azijni Public

    Config files for my GitHub profile.

  2. BepInEx BepInEx Public

    Forked from BepInEx/BepInEx

    Unity / XNA game patcher and plugin framework

    C#

  3. SwitchThemeInjector SwitchThemeInjector Public

    Forked from exelix11/SwitchThemeInjector

    Create custom themes for the nintendo switch !

    C

  4. workspace workspace Public

    Forked from media-code/workspace

    Extendible workspace configurator for Laravel to effortlessly keep linters, fixers, static analysis, CI workflows, editor integrations and more in sync across all your teams & projects

    PHP