Skip to content

Instantly share code, notes, and snippets.

View boxpositron's full-sized avatar
🎯
Focusing

David Ibia boxpositron

🎯
Focusing
View GitHub Profile
@boxpositron
boxpositron / example.py
Created November 16, 2019 12:53
XServer Python Integration
import requests
class LicenseValidationError(Exception):
'''This exception is raised when license validation fails'''
pass
class LicenseActivationError(Exception):
'''This exception is raised when license activation fails'''
@boxpositron
boxpositron / README.md
Last active August 18, 2019 21:40
Team members and roles for the NYSC LMB Application

Team Description

Name: David Ibia Github: boxpositron Roles: [Server Side Lead, Project Code Review]

Name: Adesuyi Adelekan Github: desuyi Roles: [Server Side Development]

@boxpositron
boxpositron / README.md
Last active August 10, 2019 03:36
Documentation for X Serial Server API

Build Status

X Serial Generation API

Requirements

Every API request must have an associated bearer token that will be provided.
Requests made without this authorisation token will return a 403 Status

@boxpositron
boxpositron / comma_seperated_list_tuple.py
Last active December 11, 2018 10:29
Write a program which accepts a sequence of comma-seperated numbers from console and generate a list and a tuple which contains every number
import sys
'''
Write a program which accepts a sequence of comma-seperated
numbers from console and generate a list and a tuple which
contains every number
'''
def create_list(data):