GithubHelp home page GithubHelp logo

Hi , I'm Spoony!

  public class Spoony extends Human implements Gamer, Developer {

	@Override
	public String getName() {
		return "Zaki";
	}
	
	@Override
	public List<String> getAliases() {
		return Arrays.asList("Spoony", "My Name");
	}

        public Spoony() {
        super("Spoony", "Earth");

        this.addLanguage("Java", "Python", "Javascript", "Kotlin");
        this.addExperience("2 Years+(java)", "3months+(python)", "1week+(kotlin)", "3months+(js)", "Total 2 years+");
     }
   }

	@Override
	public String aboutme() {
		return "I like to learn new things" +
		"\n" + "I like to code Java";
	}
    
	@Override
	public void codingStuff() {
		String[] learning = ["Java", "HTML", "CSS"];
		String tryingTo = "Make good software applications & websites";
	}
	
} 


public abstract class Human {

  @Getter private final String username;
  @Getter private final String country;

  private Set<String> languages = new HashSet<>();
  private Set<String> experiences = new HashSet<>();

  public Human(String username, String placeilive) {
      this.name = username;
      this.country = placeilive;
  }

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

Spoony's GitHub stats My most used languages

Profile Visits

Visitors

My github activity graph

Spoony's Projects

bmi-calculator icon bmi-calculator

Student Project, I got from some open source site, edited most of the functions coded in C#

loli icon loli

if you fork this you can say you forked a loli

minecraft-clients icon minecraft-clients

Some Clients I made when I was a java noob feel free to download/use them even tho they are bad.

potato icon potato

If you fork this then you can say you forked a potato.

register icon register

Grab your own sweet-looking '.is-a.dev' subdomain

servermappings icon servermappings

Public mapping of Minecraft server IPs <-> a pretty display name

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.