Skip to content
View f-gozie's full-sized avatar
🏠
Working from home
🏠
Working from home
  • Abuja, Nigeria

Organizations

@Techup-NG
Block or Report

Block or report f-gozie

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

Pinned Loading

  1. Python Class Overloader (untested, WIP) Python Class Overloader (untested, WIP)
    1
    _MISSING = object()
    2
    
                  
    3
    def overload(f):
    4
    	f.__overload__ = True
    5
    	return f
  2. skin-color-transfer skin-color-transfer Public

    A python script for transferring average color of one image to that of another image while retaining pixel density.

    Python 1 1

  3. property-scraper property-scraper Public

    Web scraper to pull contents from a website and insert into a local DB

    Python

  4. stutech stutech Public

    API for a school management system built in Jakarta EE 8

    CSS

  5. Pre-commit hook to find stdout state... Pre-commit hook to find stdout statements
    1
    #!/bin/sh
    2
    alias pythonfiles='find . -type f -name "*.py" | xargs git diff --cached --name-only $against'
    3
    if [ -n "$(pythonfiles)" ]; then
    4
        if pythonfiles | xargs grep --color --with-filename -n "print"; then
    5
            echo "Error committing changes. Please remove all print statements before committing"
  6. audiophile audiophile Public

    API service that stores information about audio files, provides access to this information and periodically updates this data with updates from an included deep learning model.

    Python