Skip to content
View OkayJosh's full-sized avatar
:octocat:
Focusing
:octocat:
Focusing

Organizations

@django-africa @DependlyHQ
Block or Report

Block or report OkayJosh

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

Profile Image

Introduction

Hi, I'm Joshua Olatunji, a seasoned Software Architect and Technical Lead. With a wealth of experience in the field, I am passionate about architecting robust software solutions and leading teams to deliver high-quality results. My expertise lies in Python, Django, and a range of technologies that drive innovation in the software development landscape.

Connect with Me

To learn more about my professional journey and explore potential collaborations, check out my LinkedIn profile.

LinkedIn Badge Email

Pinned

  1. inject.js inject.js
    1
    'use strict'
    2
    var gulp = require('gulp');
    3
    var injectPartials = require('gulp-inject-partials');
    4
    var inject = require('gulp-inject');
    5
    var rename = require('gulp-rename');
  2. Ballot with time limit Ballot with time limit
    1
    // SPDX-License-Identifier: GPL-3.0
    2
    
                  
    3
    pragma solidity >=0.7.0 <0.9.0;
    4
    
                  
    5
    /** 
  3. Celery Task runner Celery Task runner
    1
    from celery.utils.log import get_logger
    2
    from django.conf import settings
    3
    logger = get_logger(__name__)
    4
    
                  
    5
    
                  
  4. Kalman Filter in Python Kalman Filter in Python
    1
    class Kalman:
    2
    	"""
    3
    	USAGE:
    4
    	
    5
    	# e.g., tracking an (x,y) point over time
  5. Velocity9 Velocity9 Public

    The Velocity9 commandline Application

    Python 3

  6. A basic alembic context manager for ... A basic alembic context manager for fastapi, create a drop test database with ease
    1
    import logging
    2
    import os
    3
    from pathlib import Path
    4
    
                  
    5
    from sqlalchemy import create_engine