Posts

React + Redux SoloLearn

Image
 React and Redux Certificate  The course was broken down into three sections Getting started, Intro to React and Intro to Redux. The main objective of the course, was obtaining the skillset to build functional user interfaces. This is the same JavaScript library used by Uber and Facebook.  The course gave great insight into the core concepts of React and Redux.  The course was completed on Sololearn, where I obtained a certificate upon completion. I also uploaded a .jpeg version of the my certificate to my Pinterest .  Getting Started Front-End development  Adding React to a Website Create React App  Course Project Intro to React.js  JSX Virtual DOM  Components  Props State Hooks Into to Redux State Management Core Concepts Actions  Reducers  Redux with React  Contract Manager using Redux  Certificate  Certificate of Completion : React and Redux Course  Conclusion   Overall I really enjoyed learnin...

Largest Palindrome Product

Image
Largest Palindrome Product Challenge 4  (Project Euler) In this challenge, I had to get the largest palindrome product of three digits which ranges from 100 to 999.  This is the fourth challenge that I have solved on Project Euler and as of 1/19/2020, this challenge has been solved by 459006 people.  The steps involved in solving this challenge comprised of multiplying every combination of numbers in the three-digit range. The next step was checking to see if the number was a palindrome number meaning when the number has reversed the sequence of the number remained the same, palindrome numbers include the following 9009, 1111, 3773, and 80008. The final step was checking to see was that the palindrome number is bigger than the previous palindrome number from the past iteration.  Largest Palindrome Product Output  The solution to this challenge can be found on my Github at Largest Palindrome Product . The outpu...

Even Fibonacci Numbers

Image
Even Fibonacci Numbers Challenge 2  (Project Euler) This challenge compresses of displaying even Fibonacci Numbers starting at 2 and going all the up to 63245986. As of 12/23/2019, it has been solved by 721086 and it is a simple challenge to solve and can be found at Project Euler Even Fibonacci Numbers . My solution to this challenge is available on my Github at coding-challenges .  Even Fibonacci Number - Project Euler Output  The steps involved in solving was simply getting the Fibonacci Numbers and then checking each number to see if it is divisible by two and then displaying the output to the console.  " 2, 8, 34, 144, 610, 2584, 10946, 46368, 196418, 832040, 3524578, 14930352, 63245986 "

GitHub-PHP-Repository

Image
 GitHub PHP Repository  I have made a GitHub repository that will contain PHP code on different topics I cover here is a link to my PHP repository fell free to take a look at and see enjoy :) 

Quote "If a standard works don’t change it"

Image
"If a standard works don’t change it" The world would be a better place if people remembered this saying  Source:  Brian O Cnaimhsi Quote

Certified Programmer C#

Image
Certificate In C# After completing my certificate in C# I have learned a lot of new topics that I haven't came across before such as inheritance, abstract class and polymorphism. After completing this I have a good understanding of the C# langues and feel confident to develop and application with it in the near future.  Link To Cert 

Certified Java Programmer

Image
Java Certificate Sololearn I have just completed my course and earned a certificate in Java programming. I have leaned new and interesting topics in Java. The course was comprised of a series of lessons that covered various topics. The topics that was covered in the course was: Basic Concepts - Intro, Hello World, Comments, Printing, Variables and User Input.   Conditionals and  Loops  - Conditional Statements, nested if, else if, logical statements, switch statement, for, do while and while loops.   Arrays - Summing Elements in an array. summing multipliers, geometry code, Enhanced for Loop, Multidimensional Arrays and Matrix.    Classes and Objects   - Object-Oriented Programming (OOP), Methods, Return Types, Creating Classes & Objects, Class Attributes, Access Modifiers, Getters & Setters and Reference types.      More On Classes  - Encapsulation, Inheritance, Polymorphism,  Overriding & Overloading, Abstract...