public class Phil{
private final String name, pronouns, email, LinkedIn, BuyMeCoffee;
private double caffeineLevel;
/**
*Default constructor for a software engineering student
*/
public Phil(){
this.name = "Phil Ganem";
this.pronouns = "He/Him";
this.email = "[email protected]";
this.LinkedIn = "https://www.linkedin.com/in/phil-ganem/";
this.BuyMeCoffee = "https://www.buymeacoffee.com/swift"
this.caffeineLevel = 0.0;
}
/**
*ingest caffeine
*/
public void drinkCoffee(){
//Overdose
if(caffeineLevel == 20.0){
System.exit(-1);
}
caffeineLevel += 1.0;
}
}
My name's Phil and I'm software engineering undergraduate at 🐯RIT🐯. Welcome to my GitHub!
- I am current in my fifth year of college
- Currently, I'm looking for a neat open source project to support with my time and skills.
- I am a huge fan of free educational resources for current and to-be programmers and would love to work on a related project
- Always down to collaborate on a project, feel free to shoot me an email to express intrest in working with me.