Skip to content
View olayemii's full-sized avatar
🐼
Working from home
🐼
Working from home

Highlights

  • Pro
Block or Report

Block or report olayemii

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
olayemii/README.md

Hello There πŸ‘‹

My name is Olayemii Garuba and I'm a software developer from Lagos, Nigeria πŸ‡³πŸ‡¬. You can find me on Twitter, or on LinkedIn.

✍ Blog & Tutorials

Apart from coding, I also maintain a dev.to page - you can find my articles on Dev.to. You can also watch tutorial videos I share on Youtube.

πŸ”§ Technologies & Tools

πŸ“ˆ GitHub Stats

Olayemii's GitHub Stats

🀝 Contact Me

Β  Β Β 

> You are watching a master at work._

Pinned

  1. flutter-ui-kits flutter-ui-kits Public

    Free Flutter UI Kits developed by Olayemi Garuba

    Dart 1.3k 417

  2. uberr-ui uberr-ui Public

    Flutter UI design for a car booking application

    Dart 380 112

  3. chyker-foods chyker-foods Public

    A food ordering app built with flutter and firebase

    Dart 259 66

  4. codeigniter-3-vue-cli-3 codeigniter-3-vue-cli-3 Public

    Example project using Vue CLI 3 with CodeIgniter

    HTML 15 17

  5. A simple helper function for getting... A simple helper function for getting deeply nested object property
    1
    const getObjectProperty = (obj, path, defaultValue="", returnUndefined=true) => {
    2
      const checkForDefaultValue = value =>
    3
        value !== undefined ? value : undefined;
    4
    
                  
    5
      if (path === undefined) {
  6. useDebounce - A hook to debounce a f... useDebounce - A hook to debounce a function
    1
    import { useEffect, useCallback } from "react";
    2
    
                  
    3
    let debounceTimeout;
    4
    const useDebounce = (delay = 1000) => {
    5
      const debounceRequest = useCallback(