Skip to main content

About

Docusaurus logo

Hello I'm Christan, I love making things.

Specifically I like to make software applications that solve real world problems.

I've recently built a fintech platform for a commercial bank in the UK to enable them to do their jobs better and make their processes more compliant, we're on track to be enabling the delivery of £1BN of fiancial loans by mid 2021 and £33BN by mid 2022.

Before that I built platforms for Uk PLC energy management departments to help decipher policy and deliver digestable information to businesses.

I've helped create an application to enable many small Uk companies deal with RHI (Renewable heat incentive) issues via experts.

I'm in the process of building a new Blockchain platform for artists and musicians and I'm always doing tutorials and building side projects.

I own a development company called Offkey Limited https://offkey-ltd.com/ which has been operating since 2014.

Favorite component#

Really? You still use AOL for your email?
const aol = () => {
const { Email } = state;
if (Email && Email.toLowerCase().includes("aol.com")) {
return (
<Alert color="danger" className={classes.field}>
<Typography align="center" className={classes.error}>
Really? You still use AOL for your email?
</Typography>
</Alert>
);
} else {
return null;
}
};