Skip to content
View geekelo's full-sized avatar
👩‍💻
Embracing the potential for new opportunities
👩‍💻
Embracing the potential for new opportunities

Highlights

  • Pro
Block or Report

Block or report geekelo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
geekelo/README.md

Hi there 👋

logo

Hi 👋, I'm Eloghene Otiede

🔥A passionate Software Engineer and Full Stack Web developer 🔥

Hello, I'm Eloghene Otiede, a result-oriented software engineer and full-stack developer with over five years of experience designing and developing responsive and functional web applications. I am driven by client satisfaction and delivering exceptional projects. I constantly strive for continuous improvement and aim to add significant value to any organization I join.

Additionally, I have undergone advanced training at institutions like ALX Africa and Microverse. They are remote software development programs that use pair programming and project building to teach development. Having worked remotely and collaboratively across different time zones, I am well-versed in asynchronous communication.

Vetted and Certified by:

Skills


🔸HTML
🔸CSS
🔸JAVASCRIPT
🔸ES6
🔸REACT


🔸PYTHON
🔸C Programming
🔸Node
🔸Express
🔸Ruby On Rails


🔸Communication
🔸Pair programming
🔸Problem-solving
🔸Adaptability

[Eloghene's github stats

[Top Langs

Quick Links

Articles

🚀 Hey Dev, Exciting news! Discover the Data Structures & Algorithm Community – a welcoming space for enthusiasts at all levels. Join us to explore coding concepts, share insights, and connect with fellow learners. Embrace the opportunity to learn and grow together in a supportive environment. Your presence would be a valuable addition to our coding journey! 🌟 Don't miss out! Join our community now: http://tinyurl.com/geekspecials Looking forward to seeing you there! Best, Eloghene Otiede (Geekelo)


signature

Project Catalogue

Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card Readme Card

Pinned

  1. Jaden Casing Strings Jaden Casing Strings
    1
    QUESTION:
    2
    Jaden Smith, the son of Will Smith, is the star of films such as The Karate Kid (2010) and After Earth (2013). Jaden is also known for some of his philosophy that he delivers via Twitter. When writing on Twitter, he is known for almost always capitalizing every word. For simplicity, you’ll have to capitalize each word, check out how contractions are expected to be in the example below.
    3
    
                  
    4
    Your task is to convert strings to how they would be written by Jaden Smith. The strings are actual quotes from Jaden Smith, but they are not capitalized in the same way he originally typed them.
    5
    
                  
  2. Styling Checkboxes Styling Checkboxes
    1
    input[type=checkbox] {
    2
      position: relative;
    3
      border: 2px solid #000;
    4
    	border-radius: 2px;
    5
    	background: none;
  3. Animated Gradient Animated Gradient
    1
    .gradient-background {
    2
      background: linear-gradient(67deg,#d2ffda,#94c894,#174217);
    3
      background-size: 180% 180%;
    4
      animation: gradient-animation 12s ease infinite;
    5
    }
  4. Date Formatter Date Formatter
    1
    function formatDate(inputDate) {
    2
      const months = [
    3
        'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
    4
        'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
    5
      ];
  5. Load More | Load Less Algorithm (Rea... Load More | Load Less Algorithm (React.js)
    1
    const personnels = useSelector((state) => state.display_personnel.value);
    2
    const [itemsToShow, setItemsToShow] = useState(12);
    3
    
                  
    4
     // HANDLE PAGINATION
    5
      const handleLoadMore = (e) => {