Skip to content

Instantly share code, notes, and snippets.

View fabzer0's full-sized avatar
💀
Broadening now...

fabzer0

💀
Broadening now...
  • Andela
  • Nairobi
View GitHub Profile
@fabzer0
fabzer0 / resume.md
Last active April 21, 2020 09:42
my resume

Name: Fabish Olasi

  • A full-stack software engineer with 2-years of experience in web development.
  • I am passionate about enhancing human potential by helping people and companies grow, and leaving a lasting positive impact on people's lives.

Contact Info

  1. Location: Nairobi, Kenya;
  2. Contact: +254703341751;
  3. Email: fabischapeli97@gmail.com
@fabzer0
fabzer0 / scripts.js
Created August 17, 2017 09:46 — forked from michaelrkn/scripts.js
JavaScript for Pig Dice
var Player = {
setNumber: function(number) {
this.number = number;
},
addPoints: function(points) {
this.score += points;
},
score: 0
};