Skip to content

Instantly share code, notes, and snippets.

View prettyirrelevant's full-sized avatar
💭
???

Isaac Adewumi prettyirrelevant

💭
???
View GitHub Profile

Keybase proof

I hereby claim:

  • I am prettyirrelevant on github.
  • I am isaacadewumi (https://keybase.io/isaacadewumi) on keybase.
  • I have a public key ASDGsfNVXfD7VEWRblNosg34ofocJlNHQKv8wgwe3zwNHQo

To claim this, I am signing this object:

import math
from pathlib import Path
import numpy as np
from PIL import Image
import imageio.v3 as iio
from pillow_heif import register_heif_opener
register_heif_opener()
@prettyirrelevant
prettyirrelevant / kuda.py
Last active April 9, 2024 07:42
Python module to extra information from Kuda's bank statement
import pandas as pd
from decimal import Decimal
def clean_currency(value):
"""Removes currency symbol and commas, then converts to `Decimal`."""
if isinstance(value, Decimal):
return value
value = value.replace("₦", "").replace(",", "")
@prettyirrelevant
prettyirrelevant / inec_scraper.py
Last active November 9, 2022 14:38
Scrapes INEC's website to retrieve all polling units in the country.
import asyncio
import json
from typing import Any, Dict, List, Tuple
import aiohttp
from bs4 import BeautifulSoup
async def main() -> None:
async with aiohttp.ClientSession(connector=aiohttp.TCPConnector(ssl=False)) as session:

Keybase proof

I hereby claim:

  • I am prettyirrelevant on github.
  • I am prettirrelevant (https://keybase.io/prettirrelevant) on keybase.
  • I have a public key ASABEQnY-rA-tXEkTvlki_bT2lTZhfZ9eYKktDeA4z8m4Ao

To claim this, I am signing this object:

package main
import (
"errors"
"fmt"
)
type KeyValueSlice map[string]float64
func main() {
@prettyirrelevant
prettyirrelevant / contracts...BallotWithModifier.sol
Created March 1, 2022 13:11
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.26+commit.4563c3fc.js&optimize=false&runs=200&gist=
pragma solidity ^0.4.0;
contract Ballot {
struct Voter {
uint weight;
bool voted;
uint8 vote;
address delegate;
}
def save_image_from_b64(b64_image):
file_name = secrets.token_hex(6)
file_data = b64_image.split(",")[-1].encode()
file_type = b64_image.split(",")[0].split(";")[0].split("/")[-1] or "png"
with open("{}/{}.{}".format(app.config["UPLOAD_FOLDER"], file_name, file_type), "wb") as f:
f.write(base64.decodebytes(file_data))
return "{}.{}".format(file_name, file_type)
@prettyirrelevant
prettyirrelevant / app.py
Last active December 6, 2024 02:55
Using Huey with Flask using application factory. For configuration, follow the djhuey format
# Due to the flexible nature of Flask. This might be __init__.py
from .extensions import huey
def create_app():
app = Flask(__name__)
# add your configurations
# app.config.from_object("settings.local")
huey.init_app(app)
@prettyirrelevant
prettyirrelevant / logger.ts
Created March 18, 2021 01:23
Express JS Logging Boilerplate
import morgan, { StreamOptions } from "morgan";
import winston from "winston";
const levels = {
error: 0,
warn: 1,
info: 2,
debug: 3,
};