
Matt Jones
Full Stack Developer
Calgary Alberta, Canada
I'm a full stack developer who loves building innovative, high-impact applications that solve real-world problems. Whether it's streamlining financial workflows or crafting interactive data tools, I thrive at the intersection of tech and creativity.
interface Developer {
name: string;
skills: string[];
interests: string[];
};
interface TechStack {
devOps: string[];
backend: string[];
frontend: string[];
};
type ContactType = 'github' | 'linkedIn' | 'email';
const techStack: TechStack = {
devOps: [
'Git',
'GitLab CI/CD',
'Jenkins',
'Docker',
'AWS (S3, Lambda)',
'Jira',
'Confluence'
],
frontend: [
'JavaScript',
'TypeScript',
'React',
'Angular',
'SCSS',
'TailwindCSS'
],
backend: [
'Java',
'Spring Boot',
'Spring MVC',
'Hibernate',
'Go',
'Pocketbase',
'Python',
'Node.js',
'Kafka',
'PostgreSQL',
'MySQL',
'Oracle',
'MongoDB'
]
};
// Developer profile
const me: Developer = {
name: 'Matt Jones',
skills: [
...techStack.devOps,
...techStack.backend,
...techStack.frontend
],
interests: [
'Open Source',
'Security',
'Performance',
'Distributed Systems',
'Real-time Data',
'System Design'
]
};
// Contact function
const contact = (type: ContactType): string => {
switch (type) {
case 'github':
return 'https://github.com/Code-Jones';
case 'linkedIn':
return 'https://www.linkedin.com/in/matt-jones-developer/';
case 'email':
return 'hi@codejones.personal@gmail.com';
default:
return 'Send telegram.';
}
};
Tattoo Booking & Artist Platform
A modern platform for tattoo artists to streamline bookings, showcase portfolios, and manage client deposits. Focused on user experience and reducing admin overhead for independent artists.
Coming SoonGenerative AI Data Visualization Tool
Built during a Morgan Stanley hackathon, this tool used natural language prompts to dynamically visualize database insights. Integrated LangChain, React, and Oracle SQL to let users generate graphs and reports through a custom UI.
Time-A-Lines (Time-Based Business Automation)
As co-founder, I architected the Go backend for a startup focused on optimizing workflows through time-based automation. Built secure auth, REST APIs, business logic, and a cloud queue system to drive scalable task automation.
3D Fracking Charting System
Independently developed a 3D web-based visualization system for analyzing frac hits using real-time well data. Used Three.js and Angular to deliver interactive subsurface maps that empowered engineers to make faster decisions.
Read Blog