Skip to content

Commit

Permalink
Updated projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Dwain-Anderson committed Jun 2, 2024
1 parent 73623b8 commit 0c607f6
Showing 1 changed file with 39 additions and 3 deletions.
42 changes: 39 additions & 3 deletions components/PortfolioDeckOfCards.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,56 @@ const placeholder = '/images/question-mark.png';
const projects = {
1: {
projectTitle: 'Cornell University: Prelim Planner',
projectDescription: 'A Python Flask + React web app for students to find and add their exams to Google Calendar.',
projectDescription: 'A Python Django web app for students to find and add their exams to Google Calendar.',
projectImageUrl: placeholder,
hasProjectLink: true,
projectLink: 'project1link'
},
2: {
projectTitle: 'Project 2 Title',
projectDescription: 'Project 2 Description',
projectTitle: 'Sound Waves Analysis with Fourier Transforms',
projectDescription: 'Web app enabling users to upload audio files, apply filters, and view plots. Built with React, Next.js, Flask, SciPy, and NumPy.',
projectImageUrl: placeholder,
hasProjectLink: false,
projectLink: ''
},
3: {
projectTitle: 'Image Selection Processor',
projectDescription: 'Java Swing app for image selection with Dijkstra’s algorithm, min-heaps, and multi-threading. GUI features live wire contouring and edge detection.',
projectImageUrl: placeholder,
hasProjectLink: false,
projectLink: ''
},
4: {
projectTitle: 'Cornell AppDev Hackathon: Bookkeeper',
projectDescription: 'SQL database with user login/logout, password hashing, and sessions. Implemented K-Nearest Neighbors recommendation algorithm. Developed RESTful API with Flask.',
projectImageUrl: placeholder,
hasProjectLink: false,
projectLink: ''
},
5: {
projectTitle: 'Connect-N',
projectDescription: 'Python game using MVC pattern and PyGame for GUI. AI player logic with iterative backtracking algorithms and memoization approaches.',
projectImageUrl: placeholder,
hasProjectLink: false,
projectLink: ''
},
6: {
projectTitle: 'Spreadsheet Formula Evaluation',
projectDescription: 'Java batch app to evaluate CSV spreadsheets with interactive calculator and formula evaluator. Utilized tree data structures.',
projectImageUrl: placeholder,
hasProjectLink: false,
projectLink: ''
},
7: {
projectTitle: 'Merging Spreadsheets',
projectDescription: 'Java batch app to perform Left Inner Join on CSV files. Implemented linked-list data structure and binary search tree.',
projectImageUrl: placeholder,
hasProjectLink: false,
projectLink: ''
}
};


function PortfolioDeckOfCards() {
return (
<>
Expand Down

0 comments on commit 0c607f6

Please sign in to comment.