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

Organizations

@django-africa @DependlyHQ

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
okayjosh/README.md

Joshua Olatunji (@okayjosh)

Fintech Infrastructure Architect & Engineering Leader

WebsiteLinkedInEmail


I am a Software Architect and Founder of Dependly. With over 10 years of experience, I build distributed payment systems, cloud-native backend infrastructure, and event-driven transactional platforms. I specialize in orchestrating systems that support massive concurrency, multi-provider payment orchestration, and complex data ingestion.

🛠️ Core Technologies

📈 GitHub Stats

Joshua's GitHub Metrics


🚀 Featured Ventures & Projects

  • Dependly: Contract infrastructure and milestone-based transaction platform focused on verified financial disbursement workflows and settlement orchestration.
  • Trafficboss: Host your own LinkedIn content automation and scheduling engine.
  • Watchman: Watches files and records, or triggers actions, when they change.
  • App: A complete re-imagination of financial collaboration, centered around chat.

🌟 Open Source Contributions

  • Django: Contributor to The Web framework for perfectionists with deadlines.

🛠️ Infrastructure & Developer Tools

  • Self-hosted-ai-starter-kit: An open-source template that quickly sets up a local AI environment.
  • Django-helm-chart: Django Helm Chart with Celery, Celery-Beat, Flower, and Redis.
  • Deploy-django: A bash script to deploy a Django project for production sites.
  • Ratelimit: Go/gRPC service designed to enable generic rate limit scenarios.
📚 Pinned Forks & Study Repositories

Pinned Loading

  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