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);
}
🐒
Monkey business...
-
Self employed (Feel free to reach out!)
Popular repositories Loading
-
-
-
SwitchThemeInjector
SwitchThemeInjector PublicForked from exelix11/SwitchThemeInjector
Create custom themes for the nintendo switch !
C
-
workspace
workspace PublicForked 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
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.