poetry migration and general server cleanup
This commit is contained in:
@@ -5,24 +5,21 @@ CREATE TABLE `self` (
|
||||
`email` VARCHAR(255) NOT NULL,
|
||||
`bio` TEXT NOT NULL,
|
||||
`github` VARCHAR(255) NOT NULL,
|
||||
`auth0_sub` VARCHAR(255) NOT NULL,
|
||||
`test_sub` VARCHAR(255) NOT NULL
|
||||
`gitea` VARCHAR(255) NOT NULL
|
||||
);
|
||||
INSERT INTO `self` (
|
||||
`name`,
|
||||
`email`,
|
||||
`bio`,
|
||||
`github`,
|
||||
`auth0_sub`,
|
||||
`test_sub`
|
||||
`gitea`
|
||||
)
|
||||
VALUES (
|
||||
'Lucas Jensen',
|
||||
'lucas.p.jensen10@gmail.com',
|
||||
"I am a recent graduate from Oregon State University with a Bachelor's degree in Computer Science, driven by a passion for solving complex problems through technology. During my academic journey, I honed my skills and practical knowledge, setting a strong foundation for my career. My enthusiasm led me to a Software Engineering internship at Cvent, where I focused on Service Level Indicators (SLIs) and TypeScript. This experience allowed me to dive deep into the intricacies of backend development, gaining hands-on expertise in Python, FastAPI, Flask, Bash scripting, Linux, Nginx, and Systemd.\nMy commitment to delivering robust solutions is reflected in my proficiency in writing unit tests, ensuring the reliability and stability of the software I develop. I thrive in collaborative environments and have successfully contributed to team projects, understanding the importance of effective communication and cooperation. As I embark on my professional journey, I am excited to leverage my diverse skill set to tackle new challenges and make meaningful contributions to the field of computer science. Explore my portfolio to witness the intersection of my academic background and practical experiences that shape my identity as a dedicated and skilled computer scientist.",
|
||||
'lucas@lucasjensen.me',
|
||||
"I'm a software engineer working for the University of Oregon and an alum from Oregon State University with a B.S. in Computer Science. I'm passionate about open source software and self hosting anything and everything. Most of my projects, including this gitea instance, are hosted either on a Raspberry Pi or an Ubuntu server with Linode.\nMuch of what you see here is a WIP and will likely remain so for the foreseeable future. All the projects listed here are passion projects which are tended to in my spare time.",
|
||||
'https://github.com/ljensen505',
|
||||
'google-oauth2|103593642272149633528',
|
||||
'FZdDeArr7QuX8qVmbKD2ggdLvlJZKEjE@clients'
|
||||
'https://gitea.lucasjensen.me/lucasjensen'
|
||||
);
|
||||
DROP TABLE IF EXISTS `projects`;
|
||||
CREATE TABLE `projects` (
|
||||
@@ -43,22 +40,22 @@ INSERT INTO `projects` (
|
||||
VALUES (
|
||||
'The Grapefruits Duo',
|
||||
'An artist website for a local chamber music duo. Built with MySQL, FastAPI, and React with TypeScript.',
|
||||
'https://github.com/ljensen505/TheGrapefruitsDuo',
|
||||
'https://gitea.lucasjensen.me/lucasjensen/TheGrapefruitsDuo',
|
||||
'https://thegrapefruitsduo.com/',
|
||||
TRUE
|
||||
),
|
||||
(
|
||||
'Portfolio Backend',
|
||||
'A RESTful API for my portfolio website. Consumed by the portfolio frontend. Built with FastAPI and MySQL. Hosted on a Raspberry Pi in my living room.',
|
||||
'https://github.com/ljensen505/portfolio-back',
|
||||
'https://api.lucasjensen.me/',
|
||||
'Portfolio Homepage',
|
||||
'This very website!',
|
||||
'https://gitea.lucasjensen.me/lucasjensen/LucasJensen',
|
||||
'https://lucasjensen.me/',
|
||||
TRUE
|
||||
),
|
||||
(
|
||||
'Portfolio Frontend',
|
||||
'The frontend for my portfolio website (this very site!). Consumes the portfolio backend. Built with React and Typescript. Hosted on a Raspberry Pi in my living room.',
|
||||
'https://github.com/ljensen505/portfolio-front',
|
||||
'https://lucasjensen.me/',
|
||||
'Megan Johns Portfilo Website',
|
||||
'A comprehensive portfolio for local Eugene musician and artist, Megan Johns.',
|
||||
'https://gitea.lucasjensen.me/lucasjensen/MeganJohns',
|
||||
'https://mj.lucasjensen.me/',
|
||||
TRUE
|
||||
),
|
||||
(
|
||||
@@ -74,18 +71,4 @@ VALUES (
|
||||
NULL,
|
||||
'https://efdl.lucasjensen.me/',
|
||||
TRUE
|
||||
),
|
||||
(
|
||||
'Chess API',
|
||||
'A RESTful API for playing chess online. Consumed by the Chess GUI.',
|
||||
'https://github.com/ljensen505/chess-back',
|
||||
'https://api.chess.v2.lucasjensen.me/',
|
||||
TRUE
|
||||
),
|
||||
(
|
||||
'Chess',
|
||||
'A webapp for playing chess online against a friend. Consumes the Chess API.',
|
||||
'https://github.com/ljensen505/chess-front',
|
||||
'https://chess.lucasjensen.me/',
|
||||
FALSE
|
||||
)
|
||||
Reference in New Issue
Block a user