I started my software journey from photography. Throughout that, I learned to live the process of creating from scratch. Since then, this has led me to software development as it fulfills my love for learning and building things.
Completed Projects
Client Satisfaction
Years of Experience
Used components of Javascript to implement basic data structures through the game of Battleship. Used a terminal to display ships and tracked where ships are hit or missed.
View Github View project
class Ship {
constructor(length) {
this.length = length;
this.hits = 0;
this.sunk = false;
}
hit() {
this.hits++;
if (this.hits >= this.length) {
this.sunk = true;
}
}
}
Used a public movie API to build a collection movie list that sorts from A to Z or vice versa. It also counts how many movies in each container.
View Github View project
Uses simple algorithm concepts in Javascript to produce an arithmetic result in a terminal.
View Github View project
function calculate(n1, operator, n2) {
let result = '';
if (operator === 'add') {
result = parseFloat(n1) + parseFloat(n2);
} else if (operator === 'subtract') {
result = parseFloat(n1) - parseFloat(n2);
}
return result;
}
Used HTML concepts such as creating a form and a basic session. It also used components of both the grid and flexbox elements.
View Github View project