Recursion Power Sum

def powerSum(X, N, num=1): power = num ** N⛶if power > X: return 0 # too big, can't continue elif power == X: return 1 # exact match found else: # either include this number or ...
0 Read More

AI Runner: now with Pygame support

AI Runner is a versatile tool. It doubles as both a GUI and a python library and now it can be used to power content generation for games made with Pygame.Instructions on how to accomplish this can be...
0 Read More

Django 2FA With Google Authenticator

Django 2FA With Google Authenticator
Django Django Djnago Djonga Djingo!!!I have been on a mission to build things around Django for more than half a decade now, you won't say it? Congratulations to me!!!Back to business, Aren't you skep...
0 Read More