var web_root = '../../../'; function strArchiveNormalizeString(string) { // Replace multiple blanks by one blank // Replace single blank by - // Eat any special HTML characters return string.toLowerCase().replace(/ +/g," ").replace(/ /g,"-").replace(/\./g,"-").replace(/&.*;/g,""); } function WebSite(year, semester) { this.year = year; this.semester = semester; } WebSite.prototype.SpringOrFall = function() { return this.semester == 1 ? "Spring" : "Fall"; } WebSite.prototype.HomePagePath = function() { return WebSiteHomePagePath(this.year, this.semester); } WebSite.prototype.Bookmark = function() { // deprecated return this.year + '_0' + this.semester; } WebSite.prototype.NormalizeName = function() { return this.year + '_0' + this.semester; } function WebSiteHomePagePath(year, semester) { var web_site_home_page_path; if (year < 2010) web_site_home_page_path = web_root + year + '_0' + semester + '/web'; else web_site_home_page_path = web_root + year + '-0' + semester + '/home'; return web_site_home_page_path; } var web_sites = [ new WebSite(2004, 8), new WebSite(2005, 1), new WebSite(2005, 8), new WebSite(2006, 1), new WebSite(2006, 8), new WebSite(2007, 1), new WebSite(2007, 8), new WebSite(2008, 1), new WebSite(2008, 8), new WebSite(2009, 1), new WebSite(2009, 8), new WebSite(2010, 1), new WebSite(2010, 8), new WebSite(2011, 1), new WebSite(2011, 8), new WebSite(2012, 1), new WebSite(2012, 8), new WebSite(2013, 1), new WebSite(2013, 8), new WebSite(2014, 1), new WebSite(2014, 8), new WebSite(2015, 1), new WebSite(2015, 8), new WebSite(2016, 1), new WebSite(2016, 8), new WebSite(2017, 1), new WebSite(2017, 8), new WebSite(2018, 1), new WebSite(2018, 8), new WebSite(2019, 1), new WebSite(2019, 8), new WebSite(2020, 1), new WebSite(2020, 8), new WebSite(2021, 1), new WebSite(2021, 8), new WebSite(2022, 1), new WebSite(2022, 8), new WebSite(2023, 1), new WebSite(2023, 8), new WebSite(2024, 1), new WebSite(2024, 8), new WebSite(2025, 1), new WebSite(2025, 8) ]; function TeamMember(name, hometown) { this.name = name; this.hometown = hometown; } function Project(year, semester, title, sponsor_division, project_location, team_members, href, sponsor_logo_img_width = 150) { this.sponsor = null; this.year = year; this.semester = semester; if (title == '') title = 'Project Title Under Construction'; this.title = title; this.sponsor_division = sponsor_division; // this is appended to the sponsor name to get the team name Training for United Airlinews this.project_location = project_location; // as a hack this is sometimes used for a longer sponsor division like Training, Safety and Tooling for United Airlines this.team_members = team_members; // array of TeamMembers this.href = href; // link to project video or project page this.sponsor_logo_img_width = sponsor_logo_img_width; } Project.prototype.SpringOrFall = function () { return this.semester == 1 ? "Spring" : "Fall"; } Project.prototype.semesterToString = function () { return this.semester == 1 ? "Spring" : "Fall"; } Project.prototype.teamName = function () { var sponsor_name = this.sponsor.name; var return_team_name; if (this.sponsor_division == '') { return_team_name = sponsor_name; } else if (!this.sponsor_division.includes('--')) { return_team_name = sponsor_name + ' ' + this.sponsor_division; } else { const sponsor_division_parts = this.sponsor_division.split('--'); return_team_name = sponsor_name + ' ' + sponsor_division_parts[1]; } return return_team_name; } Project.prototype.normalizedTeamName = function () { return strArchiveNormalizeString(this.teamName()); } Project.prototype.sponsorDivision = function () { var return_sponsor_division; if (this.sponsor_division == '') { return_sponsor_division = ''; } else if (!this.sponsor_division.includes('--')) { return_sponsor_division = this.sponsor_division; } else { const sponsor_division_parts = this.sponsor_division.split('--'); return_sponsor_division = sponsor_division_parts[0]; } return return_sponsor_division; } Project.prototype.projectSponsorLocation = function() { if (this.project_location == "") return this.sponsor.location; else return this.project_location + '
' + this.sponsor.location; } Project.prototype.divisionProjectSponsorLocation = function() { var sponsor_division = this.sponsorDivision(); if (sponsor_division == '') return this.projectSponsorLocation(); else return sponsor_division + '
' + this.projectSponsorLocation(); } Project.prototype.allTeamMembers = function (left_to_right) { var team_member; var all_team_members; if ((left_to_right.length == 0) || (this.team_members.length == 0)) all_team_members = '
Players to be named later...'; else { team_member = this.team_members[left_to_right[0]]; all_team_members = team_member.name + ', ' + team_member.hometown; for (var tm = 1; tm < this.team_members.length; tm++) { team_member = this.team_members[left_to_right[tm]]; all_team_members = all_team_members + '
' + team_member.name + ', ' + team_member.hometown; } } return all_team_members; } Project.prototype.allTeamMembersForSlideGallery = function (left_to_right) { var team_member; var all_team_members; if (left_to_right.length == 0) all_team_members = '
Players to be named later...'; else { team_member = this.team_members[left_to_right[0]]; all_team_members = team_member.name; for (var tm = 1; tm < this.team_members.length; tm++) { team_member = this.team_members[left_to_right[tm]]; all_team_members = all_team_members + ', ' + team_member.name; } } return all_team_members; } Project.prototype.allTeamMembersForDesignDayBooklet = function (left_to_right) { var team_member; var all_team_members; if (left_to_right.length == 0) all_team_members = '
Players to be named later...'; else { team_member = this.team_members[left_to_right[0]]; all_team_members = team_member.name + '
' + team_member.hometown; for (var tm = 1; tm < this.team_members.length; tm++) { team_member = this.team_members[left_to_right[tm]]; all_team_members = all_team_members + '
' + team_member.name + '
' + team_member.hometown; } } return all_team_members; } Project.prototype.Location = function() { var location; if (this.project_location == "") location = this.sponsor.location; else location = this.project_location + '
' + this.sponsor.location; return location; } Project.prototype.NormalizeSponsorName = function() { var sponsor_name; sponsor_name = this.sponsor.name; if (this.sponsor_division !== "") sponsor_name = sponsor_name + '-' + this.sponsor_division; return strArchiveNormalizeString(sponsor_name); } function Sponsor(name, location, home_page, projects) { this.name = name; this.location = location; this.home_page = home_page; this.projects = projects; // array of Projects } Sponsor.prototype.Bookmark = function () { return strArchiveNormalizeString(this.name); } Sponsor.prototype.NormalizeName = function () { return strArchiveNormalizeString(this.name); } function findSponsor(sponsors, sponsor_name) { var foundSponsor = null; for (var sp = 0; sp < sponsors.length; sp++) { if (sponsors[sp].name == sponsor_name) { foundSponsor = sponsors[sp]; break; } } return foundSponsor ; } function projectSponsorLocation(sponsor, project) { var project_sponsor_location; if (project.project_location == "") project_sponsor_location = sponsor.location; else project_sponsor_location = project.project_location + '
' + sponsor.location; return project_sponsor_location; } function findProject(sponsor, year, semester, sponsor_division) { var foundProject = null; var project; // Most often looking for the most recent project so start at the end if (sponsor_division == "") { for (var pr = sponsor.projects.length - 1; pr > -1; pr--) { project = sponsor.projects[pr]; if (project.year == year && project.semester == semester ) { foundProject = project; break; } else if (project.year < year) break; } } else { for (var pr = sponsor.projects.length - 1; pr > -1; pr--) { project = sponsor.projects[pr]; if (project.year == year && project.semester == semester && project.sponsor_division == sponsor_division) { foundProject = project; break; } else if (project.year < year) break; } } return foundProject; } function findProjectInOrder(sponsor, year, semester, sponsor_division) { var foundProject = null; var project; if (sponsor_division == "") { for (var pr = 0; pr < sponsor.projects.length; pr++) { project = sponsor.projects[pr]; if (project.year == year && project.semester == semester ) { foundProject = project; break; } else if (project.year < year) break; } } else { for (var pr = 0; pr < sponsor.projects.length; pr++) { project = sponsor.projects[pr]; if (project.year == year && project.semester == semester && project.sponsor_division == sponsor_division) { foundProject = project; break; } else if (project.year < year) break; } } return foundProject; } function projectSponsorLocationJUNK(sponsor, project) { var project_sponsor_location="test"; console.log("testing this.project_location = " + this.project_location); console.log("this.sponsor.location = " + this.sponsor.location); if (this.project_location == "") project_sponsor_location = this.sponsor.location; else project_sponsor_location = this.project_location; return project_sponsor_location; } var sponsors = [ new Sponsor("AbbVie","North Chicago, Illinois","https://www.abbvie.com/", [ new Project(2024, 8, "Image Analysis Tool for Biphasic Solutions","","",[],"2024-08/projects/abbvie",200) ] ), new Sponsor("Accenture","Chicago, Illinois","http://www.accenture.com/", [ new Project(2018, 1, "AMAP: Automated Malware Analysis Platform","","",[],"2018-01/projects/accenture"), new Project(2019, 8, "Email Classification Using Machine Learning","","",[],"2019-08/projects/accenture") ] ), new Sponsor("Accident Fund","Lansing, Michigan","http://accidentfund.com/", [ new Project(2007, 1, "Service Oriented Architecture Web Portal for a SmartPhone","","",[],"2007_01/clientProjects/team_01_AccidentFund/Team01AccidentFundProjectVideo.wmv") ] ), new Sponsor("Ally","Detroit, Michigan
Charlotte, North Carolina","https://www.ally.com", [ new Project(2021, 8, "Digital Avatar Assistant","","",[],"2021-08/projects/ally",125), new Project(2022, 1, "Ally P2P Lending Platform","","",[],"2022-01/projects/ally",100), new Project(2022, 8, "Ally Employee Recognition Platform","","",[],"2022-08/projects/ally",100), new Project(2023, 1, "Ally Offers Ecosystem","","",[],"2023-01/projects/ally",100), new Project(2023, 8, "Money Moves: Ally Financial Education Platform","","",[],"2023-08/projects/ally",100), new Project(2024, 1, "Shareholder Engagement Chatbot","","",[],"2024-01/projects/ally",100), new Project(2024, 8, "Agentic Collaborator","","",[],"2024-08/projects/ally",100), new Project(2025, 1, "AI System Testing Framework","","",[],"2025-01/projects/ally",100), new Project(2025, 8, "Data Consistency and Reconciliation Tool","","", [ new TeamMember("Venkata Mannava", "Troy, Michigan"), new TeamMember("Linh Nguyen", "Haiphong, Haiphong, Vietnam"), new TeamMember("Abishek Pemmada", "South Lyon, Michigan"), new TeamMember("Tinku Sharma", "Aurangabad, Maharashtra, India"), new TeamMember("Julia Sznitka", "Sterling Heights, Michigan"), new TeamMember("Jordan Tansingco", "Troy, Michigan") ], "2025-08/projects/ally", 100 ) ] ), new Sponsor("Altair Engineering","Troy, Michigan","http://www.altair.com/", [ new Project(2009, 1, "3D Object Rendering Java Applet","","",[],"2009_01/web/archives/pages/2009_01/2009_01_team_01_Altair.htm") ] ), new Sponsor("Amazon","Seattle, Washington","http://amazon.com/", [ new Project(2014, 8, "Twitter Trending Effects on Amazon Sellers","","Detroit, Michigan",[],"2014-08/projects/amazon"), new Project(2015, 1, "SIFT: Seller-Forums Information Filtering Tool","","Detroit, Michigan",[],"2015-01/projects/amazon"), new Project(2015, 8, "Seller Forums Echo Companion","","Detroit, Michigan",[],"2015-08/projects/amazon"), new Project(2016, 1, "Twitch.tv Comment Ranking and Smart Advertisements","","Detroit, Michigan",[],"2016-01/projects/amazon"), new Project(2016, 8, "Asa: Your Amazon Shopping Assistant","","Detroit, Michigan",[],"2016-08/projects/amazon"), new Project(2017, 1, "ACRA: Amazon Customer Review Analyzer","","Seattle, Washington
Detroit, Michigan",[],"2017-01/projects/amazon"), new Project(2017, 8, "Faia: Fashion Artificial Intelligence Assistant","","Seattle, Washington
Detroit, Michigan",[],"2017-08/projects/amazon"), new Project(2018, 1, "AMPED: Amazon Marketplace Podcast Earnings Detection","","Seattle, Washington
Detroit, Michigan",[],"2018-01/projects/amazon"), new Project(2018, 8, "AVAST: Amazon Video And Shopping Technology","","Seattle, Washington
Detroit, Michigan",[],"2018-08/projects/amazon"), new Project(2019, 1, "Browser Sharing for Customer Support","","Detroit, Michigan",[],"2019-01/projects/amazon"), new Project(2019, 8, "SPARTI: Selling Partner Application Ready to Integrate","","Detroit, Michigan",[],"2019-08/projects/amazon"), new Project(2020, 1, "Amazon Data Hub","","Detroit, Michigan",[],"2020-01/projects/amazon"), new Project(2020, 8, "Maestro","","Detroit, Michigan",[],"2020-08/projects/amazon"), new Project(2021, 1, "Sentinel","","Detroit, Michigan",[],"2021-01/projects/amazon",150), new Project(2021, 8, "Amazon Web Services: AWSome Availability Zones","","Detroit, Michigan",[],"2021-08/projects/amazon",150), new Project(2022, 1, "Amazon Shop Smart: Web Extension for Shopping","","Detroit, Michigan",[],"2022-01/projects/amazon",150), new Project(2022, 8, "Amazon Review Confidence Tool","","Detroit, Michigan",[],"2022-08/projects/amazon",150), new Project(2023, 1, "Amazon Group Buying Tool","","Detroit, Michigan",[],"2023-01/projects/amazon",150), new Project(2023, 8, "Email Improvement Tool","","Detroit, Michigan",[],"2023-08/projects/amazon",150), new Project(2024, 1, "Employee Badge Image Validation Tool","","Detroit, Michigan",[],"2024-01/projects/amazon",150), new Project(2024, 8, "Remediating AWS Security Gaps Using Generative AI","","Detroit, Michigan",[],"2024-08/projects/amazon",150), new Project(2025, 1, "Semantic Search for Code and Architecture Assets","","",[],"2025-01/projects/amazon",150), new Project(2025, 8, "Seller Agent Management Platform","","", [ new TeamMember("Ziad Bakki", "Amman, Amman, Jordan"), new TeamMember("Daniel Berezovsky", "West Bloomfield, Michigan"), new TeamMember("Jiwoo Jeong", "Seongnam-si, Gyeongji-do, South Korea"), new TeamMember("Tyler Nguyen", "Sterling Heights, Michigan"), new TeamMember("Meet Patel", "Troy, Michigan"), new TeamMember("Ethan Tunney", "Novi, Michigan") ], "2025-08/projects/amazon", 150 ) ] ), new Sponsor("Anthropocene Institute","Palo Alto, California","http://www.anthropoceneinstitute.com/", [ new Project(2021, 1, "Siting of Water Turbines for Power Generation","","",[],"2021-01/projects/anthropocene-institute",225), new Project(2021, 8, "Air Pollution Health Outcomes Forecasting Tool","1","",[],"2021-08/projects/anthropocene-institute-1",225), new Project(2021, 8, "Electricity Grid Planning Tool","2","",[],"2021-08/projects/anthropocene-institute-2",225), new Project(2022, 1, "Wildfire Risks Forecasting Tool","","",[],"2022-01/projects/anthropocene-institute",225), new Project(2022, 8, "Public Opinions on Nuclear Energy from Social Media","","",[],"2022-08/projects/anthropocene-institute",200), new Project(2023, 1, "Machine Learning for Numeracy Training","","",[],"2023-01/projects/anthropocene-institute",200), new Project(2023, 8, "Machine Learning for Optimization of Carbon Removal","","",[],"2023-08/projects/anthropocene-institute",200), new Project(2024, 1, "Vessel Classifier for Marine Monitor (M2)","","",[],"2024-01/projects/anthropocene-institute",225), new Project(2024, 8, "Ocean Carbon Pollution Cleanup","","",[],"2024-08/projects/anthropocene-institute",225), new Project(2025, 1, "Balancing the Power Grid with Nuclear Power","","",[],"2025-01/projects/anthropocene-institute",225), new Project(2025, 8, "Modeling Michigan’s Energy Future","","", [ new TeamMember("Navya Bhardwaj", "Jalandhar, Punjab, India"), new TeamMember("Quinn Fransen", "Midland, Michigan"), new TeamMember("Chad Hildwein", "North Muskegon, Michigan"), new TeamMember("Raama Katragadda", "Novi, Michigan"), new TeamMember("Tommy Maceri", "New Baltimore, Michigan"), new TeamMember("Ishraj Yadav", "Gurgaon, Haryana, India") ], "2025-08/projects/anthropocene-institute", 225 ) ] ), new Sponsor("AppDynamics","San Jose, California","http://www.appdynamics.com/", [ new Project(2019, 8, "BizIQ Flow Map Using Sequential Analytics Data","","Southfield, Michigan",[],"2019-08/projects/appdynamics"), new Project(2020, 1, "Segmented Data Anomaly Detection","","Southfield, Michigan",[],"2020-01/projects/appdynamics"), new Project(2020, 8, "Insider Threat Detection","","Southfield, Michigan",[],"2020-08/projects/appdynamics") ] ), new Sponsor("Aptiv","Troy, Michigan","http://www.aptiv.com/", [ new Project(2018, 1, "CMS: Cybersecurity Management System","","",[],"2018-01/projects/aptiv"), new Project(2018, 8, "Autonomous Vehicle Fleet Connectivity Apps","","",[],"2018-08/projects/aptiv"), new Project(2019, 1, "Analysis of Autonomous Vehicle Testing Video","","",[],"2019-01/projects/aptiv") ] ), new Sponsor("Atomic Object","Grand Rapids, Michigan","https://www.atomicobject.com/", [ new Project(2020, 8, "PlanIt Capacity Tracking Tool","","Ann Arbor, Michigan",[],"2020-08/projects/atomic-object",200), new Project(2021, 8, "Stroodle: Learning Management System","","Ann Arbor, Michigan",[],"2021-08/projects/atomic-object",200), new Project(2022, 8, "Custom Data Visualization Dashboard","","Ann Arbor, Michigan",[],"2022-08/projects/atomic-object",200) ] ), new Sponsor("Authoritek","Hudsonville, Michigan","https://www.authoritek.com/", [ new Project(2021, 1, "Crisis911 Emergency Communication","","",[],"2021-01/projects/authoritek",225) ] ), new Sponsor("Auto-Owners","Lansing, Michigan","http://www.auto-owners.com/", [ new Project(2005, 1, "Project Tracking System","","",[],"2005_01/clientProjects/Team%2002%20Auto-Owners%20Insurance/Final%20Presentation/CSE498Team2.htm"), new Project(2005, 8, "Web-Based Bond Quote Tool","","",[],"2005_08/clientProjects/team_01_AutoOwners/ProjectMovie.wmv"), new Project(2006, 1, "Java-Based System for Settlement Options for Annuities","","",[],"2006_01/clientProjects/team_01_AutoOwners/Team%2001%20Auto%20Owners%20Insurance.wmv"), new Project(2006, 8, "Web-Based Java System for Material Tracking","","",[],"2006_08/clientProjects/team_01_AutoOwners/Auto%20Owners%20Project%20Demo.wmv"), new Project(2007, 1, "Education and Training Web Portal via Web Services","","",[],"2007_01/clientProjects/team_02_AutoOwners/Team2_Final.wmv"), new Project(2007, 8, "Vendor Management System","","",[],"2007_08/web/archives/pages/2007_08/2007_08_team_01_AutoOwners.htm"), new Project(2008, 1, "Vendor Tracking System","","",[],"2008_01/web/archives/pages/2008_01/2008_01_team_01_AutoOwners.htm"), new Project(2008, 8, "Recruiting Contacts and Events System","","",[],"2008_08/web/archives/pages/2008_08/2008_08_team_01_AutoOwners.htm"), new Project(2009, 1, "Telephone Log Self-Service Dashboard","","",[],"2009_01/web/archives/pages/2009_01/2009_01_team_02_AutoOwners.htm"), new Project(2009, 8, "Applications for Mobile Devices","","",[],"2009_08/web/archives/pages/2009_08/2009_08_team_01_AutoOwners.htm"), new Project(2010, 1, "Weather Incident Verification System","","",[],"2010-01/projects/auto-owners"), new Project(2010, 8, "Agent Multimedia Ad Builder","","",[],"2010-08/projects/auto-owners"), new Project(2011, 1, "Agent Multimedia Advertisement Builder","","",[],"2011-01/projects/auto-owners"), new Project(2011, 8, "24-Hour Road Service Mobile Apps","","",[],"2011-08/projects/auto-owners"), new Project(2012, 1, "Enterprise Learning Management System","","",[],"2012-01/projects/auto-owners"), new Project(2012, 8, "Pig &ldquoE” Bank","","",[],"2012-08/projects/auto-owners"), new Project(2013, 1, "Event Planning Web App","","",[],"2013-01/projects/auto-owners"), new Project(2013, 8, "Catastrophe Insurance Adjuster App","","",[],"2013-08/projects/auto-owners"), new Project(2014, 1, "Mobile Audit Itinerary and Worksheet","","",[],"2014-01/projects/auto-owners"), new Project(2014, 8, "Navigation Assistant and Accident History App","","",[],"2014-08/projects/auto-owners"), new Project(2015, 1, "Claims First Notice of Loss Application","","",[],"2015-01/projects/auto-owners"), new Project(2015, 8, "HR Recruiting System","","",[],"2015-08/projects/auto-owners"), new Project(2016, 1, "Catastrophic Claims Unit Mobilization","","",[],"2016-01/projects/auto-owners"), new Project(2016, 8, "Mobile Event App","","",[],"2016-08/projects/auto-owners"), new Project(2017, 1, "Location-Based Services Mobile App","","",[],"2017-01/projects/auto-owners"), new Project(2017, 8, "House of Hazards","","",[],"2017-08/projects/auto-owners"), new Project(2018, 1, "IMAGINE: IMAGe INtake Experience","","",[],"2018-01/projects/auto-owners"), new Project(2018, 8, "Jeffrey: Virtual Insurance Claim Advisor","","",[],"2018-08/projects/auto-owners"), new Project(2019, 1, "Secretary of State (SoS) Software Robot","","",[],"2019-01/projects/auto-owners"), new Project(2019, 8, "“Danger Diner” VR Training","","",[],"2019-08/projects/auto-owners"), new Project(2020, 1, "Phish Phinder","","",[],"2020-01/projects/auto-owners"), new Project(2020, 8, "Coverage Crisis: Covering Your Assets","","",[],"2020-08/projects/auto-owners"), new Project(2021, 1, "AO Sidekick","","",[],"2021-01/projects/auto-owners",200), new Project(2021, 8, "Yard Wars: Weathering the Storm","","",[],"2021-08/projects/auto-owners",200), new Project(2022, 1, "RecruiTrack","","",[],"2022-01/projects/auto-owners",200), new Project(2022, 8, "A-O Merch Search","","",[],"2022-08/projects/auto-owners",200), new Project(2023, 1, "The Summarizer","","",[],"2023-01/projects/auto-owners",200), new Project(2023, 8, "Help Me See!","","",[],"2023-08/projects/auto-owners",200), new Project(2024, 1, "Policyholder’s Interactive Guide (PIG)","","",[],"2024-01/projects/auto-owners",200), new Project(2024, 8, "From the Ground Up VR","","",[],"2024-08/projects/auto-owners",200), new Project(2025, 1, "Next Step Insight","","",[],"2025-01/projects/auto-owners",200), new Project(2025, 8, "AO Quick Capture","","", [ new TeamMember("John Cvetkovski", "Macomb, Michigan"), new TeamMember("Kevin Lin", "Marshall, Michigan"), new TeamMember("Zhi Lin", "Okemos, Michigan"), new TeamMember("Yaotong Lu", "Duyun, Guizhou, China"), new TeamMember("Reed Miller", "Brighton, Michigan"), new TeamMember("Luis Sanchez Perez", "Caracas, Distrito Capital, Venezuela") ], "2025-08/projects/auto-owners", 200 ) ] ), new Sponsor("Avata","Venice, California","http://www.avataai.com/", [ new Project(2016, 8, "Security Analytics Suite: Dataset Merger Tool","","",[],"2016-08/projects/avata"), new Project(2017, 8, "Security Analytics Suite: Configuration Setup Tool","","",[],"2017-08/projects/avata") ] ), new Sponsor("Bedrock Detroit","Detroit, Michigan","https://www.bedrockdetroit.com/", [ new Project(2020, 8, "Shared Parking Access","","",[],"2020-08/projects/bedrock-detroit") ] ), new Sponsor("Boeing","St. Louis, Missouri","http://www.boeing.com/", [ new Project(2004, 8, "F/A-18 Flight Visualization","","",[],"2004_08/web/team_projects.htm"), new Project(2005, 1, "Blue Angels Performance Visualization","","",[],"2005_01/clientProjects/Team%2003%20Boeing/Boeing%20Project.wmv"), new Project(2006, 8, "Viz Sim Tool 2006","","",[],"2006_08/clientProjects/team_02_Boeing/BoeingFlightViz2006_highres.wmv"), new Project(2007, 1, "Viz Sim Tool 2007","","",[],"2007_01/clientProjects/team_03_Boeing/finalvideo.wmv"), new Project(2008, 1, "Poseidon Executor 2008","","",[],"2008_01/web/archives/pages/2008_01/2008_01_team_02_Boeing.htm"), new Project(2008, 8, "KML Urban Scene Builder 2008","","",[],"2008_08/web/archives/pages/2008_08/2008_08_team_02_Boeing.htm"), new Project(2009, 1, "KML Urban Scene Builder 2009","","",[],"2009_01/web/archives/pages/2009_01/2009_01_team_03_Boeing.htm"), new Project(2009, 8, "Sparse Virtual Texturing","","",[],"2009_08/web/archives/pages/2009_08/2009_08_team_02_Boeing.htm"), new Project(2010, 1, "XML Texture Composition","","",[],"2010-01/projects/boeing"), new Project(2010, 8, "O-Show for Simulation Software","","",[],"2010-08/projects/boeing"), new Project(2011, 1, "BAPS: Battle Aircraft Position Share","","",[],"2011-01/projects/boeing"), new Project(2011, 8, "BAPS 2: Battle Aircraft Position Share 2","","",[],"2011-08/projects/boeing"), new Project(2012, 1, "Design, Fly and Compete Flight Simulator","","",[],"2012-01/projects/boeing"), new Project(2012, 8, "Design, Fly and Compete Sim Suite V2.0","","",[],"2012-08/projects/boeing"), new Project(2013, 1, "Paper Airplane Building Game Simulator","","",[],"2013-01/projects/boeing"), new Project(2013, 8, "Aircraft Assembly Line Simulator","","",[],"2013-08/projects/boeing"), new Project(2014, 1, "Flight Simulator Suite","","",[],"2014-01/projects/boeing"), new Project(2015, 1, "Business Developer's Electronic Sales Bag","","",[],"2015-01/projects/boeing") ] ), new Sponsor("Bosch","Farmington Hills, Michigan","http://www.bosch.us/", [ new Project(2014, 8, "Mobile App for XCP Measurement and Calibration","","Plymouth, Michigan",[],"2014-08/projects/bosch"), new Project(2019, 8, "Integration and Testing Suite for ADAS Radar Sensors","","Plymouth, Michigan",[],"2019-08/projects/bosch"), new Project(2020, 1, "Classifying Target Vehicles for Adaptive Cruise Control","","Plymouth, Michigan",[],"2020-01/projects/bosch"), new Project(2020, 8, "Automated Retrieval of ADAS Driving Environments","","Plymouth, Michigan",[],"2020-08/projects/bosch"), new Project(2021, 1, "Real-Time ADAS Endurance Run Data Validation","","Plymouth, Michigan",[],"2021-01/projects/bosch",175), new Project(2021, 8, "Hardware in the Loop (HIL) Vehicle Simulator","","Plymouth, Michigan",[],"2021-08/projects/bosch",175), new Project(2023, 1, "Web Interface for CarMaker Simulation Tool","","Plymouth, Michigan",[],"2023-01/projects/bosch",175), new Project(2023, 8, "Trailering Safety Tool Using Computer Vision","","Plymouth, Michigan",[],"2023-08/projects/bosch",200) ] ), new Sponsor("Caxy Interactive","Chicago, Illinois","https://www.caxy.com/", [ new Project(2022, 1, "Remote Energy Distribution Payment Platform","","",[],"2022-01/projects/caxy-interactive",150) ] ), new Sponsor("Chrysler","Auburn Hills, Michigan","http://www.chrysler.com/", [ new Project(2004, 8, "Blackberry Vehicle Delivery Report System","","",[],"2004_08/web/team_projects.htm"), new Project(2004, 8, "Chrysler Trucking Fleet Communication via GSM/GPRS","","",[],"2004_08/web/team_projects.htm"), new Project(2005, 8, "CFD Mesh Generater GUI/Interface","","",[],"2005_08/clientProjects/team_03_DaimlerChrysler/csd498moovie.wmv"), new Project(2007, 1, "GPS/Cellular-Based Chrysler Transport Driver Performance System","","",[],"2007_01/clientProjects/team_04_DaimlerChrysler/final.mpg"), new Project(2008, 8, "Performance Feedback System Dashboard","","",[],"2008_08/web/archives/pages/2008_08/2008_08_team_03_Chrysler.htm"), new Project(2010, 1, "Manufacturing Dashboard Migration","","",[],"2010-01/projects/chrysler"), new Project(2011, 1, "Fleet Auction Distribution and Sale Optimizer","","",[],"2011-01/projects/chrysler") ] ), new Sponsor("Consumers Energy","Jackson, Michigan","https://www.consumersenergy.com/", [ new Project(2019, 1, "New Customer Service Channel","","",[],"2019-01/projects/consumers-energy") ] ), new Sponsor("Corewell Health","Grand Rapids, Michigan","https://corewellhealth.org/", [ new Project(2025, 1, "AI for Med Students Learning About Basket Management","","",[],"2025-01/projects/corewell-health",250), new Project(2025, 8, "An AI Tool to Learn Management of Patient Messages","","", [ new TeamMember("Noah Austad", "Walled Lake, Michigan"), new TeamMember("Chase Grove", "Westland, Michigan"), new TeamMember("Tri Khuc", "Hanoi, Hanoi, Vietnam"), new TeamMember("Sabrina Lee", "Rochester, Michigan"), new TeamMember("Graham Parker", "Ypsilanti, Michigan"), new TeamMember("Toan Pham", "Hanoi, Dong Da, Vietnam") ], "2025-08/projects/corewell-health", 250 ) ] ), new Sponsor("CSAA Insurance","Walnut Creek, California","http://www.csaa-insurance.aaa.com/", [ new Project(2021, 1, "Insurance Coverage Wizard","Customer Experience","",[],"2021-01/projects/csaa-insurance-customer-experience",125), new Project(2021, 1, "Eye in the Sky: Intelligent Drone Video Processing","Innovation","",[],"2021-01/projects/csaa-insurance-innovation",125), new Project(2022, 1, "3D Scene Reconstruction of Vehicle Accidents","Innovation","",[],"2022-01/projects/csaa-insurance-innovation",125), new Project(2022, 8, "Synthetic Image Generation via Random Noise","","",[],"2022-08/projects/csaa-insurance",125) ] ), new Sponsor("Delta Dental","Okemos, Michigan","http://www.deltadentalmi.com/", [ new Project(2021, 1, "Smart Dental Benefit Recommendation Engine","Data Science","",[],"2021-01/projects/delta-dental-data-science",225), new Project(2021, 1, "Rule Engine Command Line Interface","Knowledge Science","",[],"2021-01/projects/delta-dental-knowledge-science",225), new Project(2021, 8, "Smart Benefit Plan Recommender Engine","Data Science","",[],"2021-08/projects/delta-dental-data-science",225), new Project(2021, 8, "Microsoft Excel Data Extractor/Modeler","Knowledge Science","",[],"2021-08/projects/delta-dental-knowledge-science",225), new Project(2022, 1, "General RAte Calculation Environment IDE","Knowledge Science 1","",[],"2022-01/projects/delta-dental-knowledge-science-1",225), new Project(2022, 1, "General RAte Calculation Environment Shell","Knowledge Science 2","",[],"2022-01/projects/delta-dental-knowledge-science-2",225), new Project(2025, 1, "3D Analysis of Dental Patient History","Knowledge Science--3DADPH","",[],"2025-01/projects/delta-dental-3dadph",225), new Project(2025, 1, "DSL Tooling Ecosystem (dSLATE)","Knowledge Science--dSLATE","",[],"2025-01/projects/delta-dental-dslate",225), new Project(2025, 8, "AI Rule Metadata Generator","--AIRMG","", [ new TeamMember("Aditya Aggarwal", "Pitampura, New Delhi, India"), new TeamMember("Sricharan Devarapalli", "Northville, Michigan"), new TeamMember("Akilesh Dhileepan", "Farmington Hills, Michigan"), new TeamMember("Sainatha Paamujula", "Troy, Michigan"), new TeamMember("Alex Simon", "Troy, Michigan"), new TeamMember("Sit Soe", "Battle Creek, Michigan") ], "2025-08/projects/delta-dental-airmg", 225 ), new Project(2025, 8, "Insurance Quoting Assistant","--IQA","", [ new TeamMember("Ronnit Chopra", "New Delhi, Delhi, India"), new TeamMember("Hunter Haack", "Southlake, Texas"), new TeamMember("Raduan Moustafhim", "North Barrington, Illinois"), new TeamMember("Nam Nguyen", "Hanoi, Hanoi, Vietnam"), new TeamMember("Patrick Oleksik", "Sterling Heights, Michigan"), new TeamMember("Charles Selipsky", "St. Louis, Missouri") ], "2025-08/projects/delta-dental-iqa", 225 ) ] ), new Sponsor("Dow","Midland, Michigan","http://www.dow.com/", [ new Project(2011, 1, "Business Approval System","","",[],"2011-01/projects/dow"), new Project(2012, 1, "Global Water Dashboard","","",[],"2012-01/projects/dow"), new Project(2013, 1, "Personalized Intranet Portal","","",[],"2013-01/projects/dow"), new Project(2018, 1, "Virtual Reality Simulation for Railcar Loading","","",[],"2018-01/projects/dow"), new Project(2018, 8, "IT Assistant","","",[],"2018-08/projects/dow"), new Project(2019, 1, "VR Model Management Platform","","",[],"2019-01/projects/dow"), new Project(2019, 8, "3D Product Showcase Application","","",[],"2019-08/projects/dow"), new Project(2020, 1, "MAPT: Manufacturing Avatar Plant Twin","","",[],"2020-01/projects/dow"), new Project(2020, 8, "Artificial Intelligence Project Matcher","","",[],"2020-08/projects/dow"), new Project(2021, 1, "Improving the Performance of the Corporate Computer","","",[],"2021-01/projects/dow",180), new Project(2021, 8, "Virtual Computer Service Enhancements","","",[],"2021-08/projects/dow",180) ] ), new Sponsor("DRIVEN-4","St. Joseph, Michigan","http://www.driven-4.com/", [ new Project(2018, 1, "2020 Business in a Box","","",[],"2018-01/projects/driven-4"), new Project(2019, 1, "Product Development Portfolio and Planning","","",[],"2019-01/projects/driven-4"), new Project(2023, 1, "Driven Connect Application, Server, and Backend","","",[],"2023-01/projects/driven-4",160), new Project(2023, 8, "DRIVEN-4 Connect Update and Upgrade","","",[],"2023-08/projects/driven-4",160), new Project(2024, 1, "DRIVEN-4 Connect Application, Server and Backend","","",[],"2024-01/projects/driven-4",160), new Project(2024, 8, "DRIVEN-4 Connect Application","","",[],"2024-08/projects/driven-4",160) ] ), new Sponsor("Elektrobit","Erlangen-Tennenlohe, Germany","https://www.elektrobit.com/", [ new Project(2024, 1, "Automotive Software Integration In Virtual 3D","","Farmington Hills, Michigan",[],"2024-01/projects/elektrobit",200) ] ), new Sponsor("EA","Redwood City, California","http://www.ea.com/", [ new Project(2013, 1, "Streaming Android Emulator for EA Games","","",[],"2013-01/projects/ea") ] ), new Sponsor("Evolutio","Chicago, Illinois","http://www.evolutiops.com/", [ new Project(2019, 1, "AppDynamics Platform Configuration Tool","","",[],"2019-01/projects/evolutio"), new Project(2019, 8, "ERP Air Force: Drone Elephant Recognition and Tracking","","",[],"2019-08/projects/evolutio"), new Project(2020, 1, "ERP Air Force: Conservation Threat Detection","","",[],"2020-01/projects/evolutio"), new Project(2020, 8, "#BIKES4ERP Tracking Initiative","","",[],"2020-08/projects/evolutio"), new Project(2021, 8, "ERP Kids: Wildlife Conservation","","",[],"2021-08/projects/evolutio",175), new Project(2022, 1, "ERP Reserve Preservation Platform","","",[],"2022-01/projects/evolutio",175), new Project(2023, 1, "#BIKES4ERP Tracking","","",[],"2023-01/projects/evolutio",175), new Project(2023, 8, "Evo Observability Platform","","",[],"2023-08/projects/evolutio",175), new Project(2024, 1, "Evo Project Reporting Tool","","",[],"2024-01/projects/evolutio",175) ] ), new Sponsor("Ford","Dearborn, Michigan","http://www.ford.com/", [ new Project(2005, 8, "Integrated Automotive Interface","","",[],"2005_08/clientProjects/team_04_Ford/Team%2004%20-%20Team%20Ford%20Project%20Video.wmv"), new Project(2006, 1, "Vehicle-Based Social Network","","",[],"2006_01/clientProjects/team_03_Ford/Team%2003%20Ford.wmv"), new Project(2006, 8, "Ford Buzz Index: Mining Blogs for Market Intelligence","","",[],"2006_08/clientProjects/team_03_Ford/blogbuzz.wmv"), new Project(2007, 1, "Automotive Web Services On-the-Go","","",[],"2007_01/clientProjects/team_05_Ford/FinalProjectVideo.wmv"), new Project(2007, 8, "Safety Index: Automotive Warning System","","",[],"2007_08/web/archives/pages/2007_08/2007_08_team_02_Ford.htm"), new Project(2008, 1, "Ford Sensor Showroom","","",[],"2008_01/web/archives/pages/2008_01/2008_01_team_03_Ford.htm"), new Project(2008, 8, "Ford Test Drive","","",[],"2008_08/web/archives/pages/2008_08/2008_08_team_04_Ford.htm"), new Project(2009, 1, "Ford Conference Room","","",[],"2009_01/web/archives/pages/2009_01/2009_01_team_04_Ford.htm"), new Project(2010, 8, "Ford Idea Place Mobile Edition","","",[],"2010-08/projects/ford"), new Project(2011, 8, "Ford Qwikboard","","",[],"2011-08/projects/ford"), new Project(2012, 8, "MyKey Report Card","","",[],"2012-08/projects/ford"), new Project(2014, 1, "Mobile Approver","","",[],"2014-01/projects/ford"), new Project(2014, 8, "Vehicle Audit Analytics","","",[],"2014-08/projects/ford"), new Project(2015, 1, "Electric Vehicle Charging Station App","","",[],"2015-01/projects/ford"), new Project(2015, 8, "Connected Vehicle Protocol Test Harness","","",[],"2015-08/projects/ford"), new Project(2016, 8, "SYNC Calendar","","",[],"2016-08/projects/ford"), new Project(2017, 8, "Ford Smart Parking","","",[],"2017-08/projects/ford"), new Project(2018, 8, "Ford Customer App Review Dashboard","","",[],"2018-08/projects/ford"), new Project(2019, 1, "Greenfield Labs SHARED Locker System","","",[],"2019-01/projects/ford"), new Project(2019, 8, "Ford Mobility Product Metrics","","",[],"2019-08/projects/ford"), new Project(2020, 1, "Ford Augmented Reality Owners Manual","","",[],"2020-01/projects/ford"), new Project(2020, 8, "Ford Accelerate Monitor","","",[],"2020-08/projects/ford"), new Project(2021, 1, "Ford Team View","","",[],"2021-01/projects/ford",175), new Project(2021, 8, "Crowd-Sourced EV Emergency Recharge","","",[],"2021-08/projects/ford",175), new Project(2024, 1, "Dealer Experience Dashboard","","",[],"2024-01/projects/ford",175) ] ), new Sponsor("GE","Fairfield, Connecticut","http://www.ge.com/", [ new Project(2016, 1, "Cloud Management Portal","","Milwaukee, Wisconsin
Detroit, Michigan",[],"2016-01/projects/ge"), new Project(2017, 1, "PETT: Predix-Enabled Toy Train","","Detroit, Michigan",[],"2017-01/projects/ge") ] ), new Sponsor("GE Aviation","Grand Rapids, Michigan","http://www.geae.com/", [ new Project(2009, 1, "Flight Management System Voice Interface","","",[],"2009_01/web/archives/pages/2009_01/2009_01_team_05_GEAviation.htm"), new Project(2009, 8, "Synthetic Vision Display","","",[],"2009_08/web/archives/pages/2009_08/2009_08_team_03_GEAviation.htm"), new Project(2010, 1, "Flight Deck Lateral Map Display","","",[],"2010-01/projects/ge-aviation"), new Project(2010, 8, "Super Synoptics","","",[],"2010-08/projects/ge-aviation"), new Project(2011, 1, "MSU Next Generation Flight Deck","","",[],"2011-01/projects/ge-aviation"), new Project(2011, 8, "NextGen Aircraft Taxi Assistance","","",[],"2011-08/projects/ge-aviation"), new Project(2012, 1, "Mobile Avionics Weather","","",[],"2012-01/projects/ge-aviation"), new Project(2012, 8, "Mobile Avionics Satellite Imagery","","",[],"2012-08/projects/ge-aviation") ] ), new Sponsor("GM","Detroit, Michigan","http://www.gm.com/", [ new Project(2006, 1, "Web-Based Data Entry Tool","","",[],"2006_01/clientProjects/team_02_ChannelVantage/Team%2002%20ChannelVantage.wmv"), new Project(2007, 1, "Next Gen People Finder","","",[],"2007_01/clientProjects/team_06_GeneralMotors/cse498_1024x768.wmv"), new Project(2013, 1, "My Conference Room","","",[],"2013-01/projects/gm"), new Project(2013, 8, "Augmented Reality Auto Mobile Guide App","","",[],"2013-08/projects/gm"), new Project(2014, 1, "The Matrix: Vehicle Simulator System","","",[],"2014-01/projects/gm"), new Project(2014, 8, "Productivity Toolbar (aka Fast App Launcher)","","",[],"2014-08/projects/gm"), new Project(2015, 1, "Employee Companion Mobile Application","","",[],"2015-01/projects/gm"), new Project(2015, 8, "Global Service Desk Mobile App","","",[],"2015-08/projects/gm"), new Project(2016, 1, "IT Advocate Live Help","","",[],"2016-01/projects/gm"), new Project(2016, 8, "Gemini: Predictive Rich Cards","","",[],"2016-08/projects/gm"), new Project(2017, 1, "GM Transportation Experience App","","",[],"2017-01/projects/gm"), new Project(2017, 8, "Automated Video Workplace Safety System","","",[],"2017-08/projects/gm"), new Project(2018, 1, "Plato: DevBot for Microsoft Teams","","",[],"2018-01/projects/gm"), new Project(2019, 8, "Profiling Manufacturing Plant Computer Network Traffic","","",[],"2019-08/projects/gm"), new Project(2020, 1, "Open Source Intel","","",[],"2020-01/projects/gm"), new Project(2020, 8, "Automotive Specific Dark Web Threat Intelligence","","",[],"2020-08/projects/gm"), new Project(2021, 1, "Malware Reverse Engineering Platform","","",[],"2021-01/projects/gm",75), new Project(2021, 8, "Enhanced MISP User Interface","","",[],"2021-08/projects/gm",75), new Project(2022, 1, "High Frequency Data Ingestion","","",[],"2022-01/projects/gm",75), new Project(2022, 8, "Augmented Reality Utilizing IoT Technology","","",[],"2022-08/projects/gm",80), new Project(2023, 1, "Virtual Reality Network Monitoring","1","",[],"2023-01/projects/gm-1",80), new Project(2023, 1, "Application Lifecycle Framework","2","",[],"2023-01/projects/gm-2",80), new Project(2023, 8, "Application Lifecycle Framework 2.0","","",[],"2023-08/projects/gm",80), new Project(2024, 1, "Recovery of Lost and Stolen IT Assets","","",[],"2024-01/projects/gm",80), new Project(2024, 8, "Recycling Identification System","--RIS","",[],"2024-08/projects/gm-ris",80), new Project(2024, 8, "Remote Wildlife Habitat Monitoring System","--WHMS","",[],"2024-08/projects/gm-whms",80), new Project(2025, 1, "Global Waste Management System","","",[],"2025-01/projects/gm",80), new Project(2025, 8, "Habitat Identification Using Drone Imaging","","", [ new TeamMember("Shane Carr", "Sterling Heights, Michigan"), new TeamMember("Yigit Gunduc", "Ankara, Ankara, Turkey"), new TeamMember("Sungu Han", "Novi, Michigan"), new TeamMember("Noah Homyak", "Ann Arbor, Michigan"), new TeamMember("Ryan Meitzner", "Troy, Michigan"), new TeamMember("Tanner Shirel", "Lansing, Michigan") ], "2025-08/projects/gm", 80 ) ] ), new Sponsor("Google","Mountain View, California","http://www.google.com/about/company/", [ new Project(2012, 8, "Indexing System Mobile Dashboard","","",[],"2012-08/projects/google"), new Project(2014, 1, "Change Management Software","","",[],"2014-01/projects/google"), new Project(2019, 1, "Kubernetes Cluster Inspection Tool","","Kirkland, Washington",[],"2019-01/projects/google"), new Project(2020, 8, "Self-Service Support Chatbot for Google Cloud","","Kirkland, Washington",[],"2020-08/projects/google"), new Project(2022, 8, "Android Exploit Fuzzing Analysis","","Kirkland, Washington",[],"2022-08/projects/google",150), new Project(2024, 1, "Android Vulnerability Database","","",[],"2024-01/projects/google",150) ] ), new Sponsor("HAP","Detroit, Michigan","https://www.hap.org/", [ new Project(2023, 8, "Leveraging OpenAI for Business Analytics","","",[],"2023-08/projects/hap",125), new Project(2024, 1, "Artificial Intelligence (AI) Training Course","","",[],"2024-01/projects/hap",150), new Project(2024,8, "Healthcare Payer Price Transparency","","",[],"2024-08/projects/hap",150), new Project(2025, 1, "Customer Intent Engine and Training Tool","","",[],"2025-01/projects/hap",150), new Project(2025, 8, "Prompt Assistant: Mastering the Art of Prompt Engineering","","", [ new TeamMember("Snigdha Akula", "Oswego, Illinois"), new TeamMember("James Chen", "Yichang, Hubei, China"), new TeamMember("Anthony Greig", "Lake Orion, Michigan"), new TeamMember("Praseedha Vinukonda", "Canton, Michigan"), new TeamMember("Aditi Viswanatha", "Novi, Michigan"), new TeamMember("De’janae Williams", "Detroit, Michigan") ], "2025-08/projects/hap", 150 ) ] ), new Sponsor("Harvard Law School","Cambridge, Massachusetts","https://hls.harvard.edu/", [ new Project(2019, 8, "“StackLife” Library Search and Display Tool","","",[],"2019-08/projects/harvard-law-school"), new Project(2020, 1, "StackLife 2.0: Library Search and Display Tool","","",[],"2020-01/projects/harvard-law-school") ] ), new Sponsor("Henry Ford Innovations","Detroit, Michigan","https://www.henryford.com//", [ new Project(2024, 8, "Modernizing Robotic Surgery Education","--RSE","",[],"2024-08/projects/henry-ford-innovations-rse",270), new Project(2024, 8, "MSU-HFH Research Synergy Vanguard Portal (RSVP)","--RSVP","",[],"2024-08/projects/henry-ford-innovations-rsvp",270), new Project(2025, 1, "Electronic Laboratory User’s Guide (eLUG)","Department of Pathology--eLUG","",[],"2025-01/projects/henry-ford-innovations-elug",250), new Project(2025, 1, "Modernizing Robotic Surgery Education 2.0","Department of Surgery--RSE","",[],"2025-01/projects/henry-ford-innovations-rse",250), new Project(2025, 1, "MSU-HFH Research Synergy Vanguard Portal (RSVP) 2.0","--RSVP","",[],"2025-01/projects/henry-ford-innovations-rsvp",250), new Project(2025, 8, "Electronic Laboratory User’s Guide (eLUG) 2.0","--eLUG","", [ new TeamMember("Rocco Camilletti", "Novi, Michigan"), new TeamMember("Cole Current", "Coloma, Michigan"), new TeamMember("Ashton Kushner", "Macomb, Michigan"), new TeamMember("Rafid Munjid", "Dhaka, Dhaka, Bangladesh"), new TeamMember("Elijah Porter", "Okemos, Michigan"), new TeamMember("Andrew Roth", "Northville, Michigan") ], "2025-08/projects/henry-ford-innovations-elug", 250 ) ] ), new Sponsor("Herman Miller","Zeeland, Michigan","http://www.hermanmiller.com/", [ new Project(2018, 1, "Adjust: Augmented Reality Chair Adjustment Assistant","","",[],"2018-01/projects/herman-miller"), new Project(2018, 8, "FIBRE: Fabric Identification Based Recommendation Engine","","",[],"2018-08/projects/herman-miller"), new Project(2019, 1, "Office Navigation Using Augmented Reality","","",[],"2019-01/projects/herman-miller"), new Project(2019, 8, "Computer Vision for Furniture Manufacturing","","",[],"2019-08/projects/herman-miller"), new Project(2020, 1, "Measuring Workspace Impact on Employee Experience","","",[],"2020-01/projects/herman-miller"), new Project(2020, 8, "Live Platform Real-Time Occupancy Status ","","",[],"2020-08/projects/herman-miller"), new Project(2021, 1, "Scout 2.0: Dynamic Data Visualization for Dealers","","",[],"2021-01/projects/herman-miller",200), new Project(2021, 8, "Live Platform CAD Ingestion","","",[],"2021-08/projects/herman-miller",200) ] ), new Sponsor("Humana","Louisville, Kentucky","https://www.humana.com//", [ new Project(2017, 1, "Humana Kids","","",[],"2017-01/projects/humana"), new Project(2017, 8, "MyHumanaBot","","",[],"2017-08/projects/humana"), new Project(2019, 1, "Technology Peripheral Inventory Predictor","","",[],"2019-01/projects/humana"), new Project(2020, 8, "Internship Success App","","",[],"2020-08/projects/humana") ] ), new Sponsor("IBM","Rochester, Minnesota","http://www.ibm.com/", [ new Project(2006, 8, "C++ Code Generator for Simics Device Modeling Language","","",[],"2006_08/clientProjects/team_04_IBM/FinalProjectVideo.wmv"), new Project(2007, 1, "An Eclipse/RAD Plug-in for Generating Structure Validation Documents","","",[],"2007_01/clientProjects/team_07_IBM/cse498-team7-ibm-systemplanplugin.wmv"), new Project(2007, 8, "Processor Folding for Linux on POWER","","",[],"2007_08/web/archives/pages/2007_08/2007_08_team_03_IBM.htm"), new Project(2008, 1, "POWER Hypervisor Testing Suite","","",[],"2008_01/web/archives/pages/2008_01/2008_01_team_04_IBM.htm"), new Project(2008, 8, "FixPack Publishing Tool Enhancements","","",[],"2008_08/web/archives/pages/2008_08/2008_08_team_05_IBM.htm"), new Project(2013, 8, "Information Technology Assessment Toolkit","","Armonk, New York",[],"2013-08/projects/ibm") ] ), new Sponsor("Identity Alliance","Fort Wayne, Indiana","http://www.identityalliance.com/", [ new Project(2005, 1, "Smart Card Java Applets for Federal Identification Systems","","",[],"2005_01/clientProjects/Team%2004%20Identity%20Alliance/FinalPresentation.htm"), new Project(2006, 1, "Web Applications for ID2Sure Web-Based Smart Card Framework","","",[],"2006_01/clientProjects/team_04_IdentityAlliance/Team%2004%20Identity%20Alliance.wmv") ] ), new Sponsor("Image Space","Ann Arbor, Michigan","http://www.imagespaceinc.com/", [ new Project(2004, 8, "Camera Improvements for rFactor","","",[],"2004_08/web/team_projects.htm"), new Project(2005, 1, "rFactor Vehicle Maker","","",[],"2005_01/clientProjects/Team%2005%20Image%20Space/ISICE.mov"), new Project(2006, 1, "External Real and/or Post Time Telemetry for rFactor","","",[],"2006_01/clientProjects/team_05_ImageSpace/Team%2005%20Image%20Space.wmv") ] ), new Sponsor("Kellanova","Battle Creek, Michigan","https://www.kellanova.com/", [ new Project(2023, 8, "Global Business Services Process Intelligence","","",[],"2023-08/projects/kellanova",170) ] ), new Sponsor("Kellogg’s","Battle Creek, Michigan","https://www.kelloggs.com/", [ new Project(2022, 1, "Global Business Services Customer Satisfaction","","",[],"2022-01/projects/kelloggs",160), new Project(2022, 8, "Templatize R Development via Design Thinking","","",[],"2022-08/projects/kelloggs",160), new Project(2023, 1, "GHG Scope 3 Automation","","",[],"2023-01/projects/kelloggs",160) ] ), new Sponsor("Kohl’s","Menomonee Falls, Wisconsin","https://www.kohls.com/", [ new Project(2022, 1, "Athenaeum","","",[],"2022-01/projects/kohls",175), new Project(2022, 8, "Backstage’s Back Alright","","",[],"2022-08/projects/kohls",175), new Project(2023, 8, "Infinity Gauntlet","","",[],"2023-08/projects/kohls",200), new Project(2024, 8, "Governance of Expense in Kohl’s Cloud Operations","","",[],"2024-08/projects/kohls",200), new Project(2025, 8, "Kohl’s Cash Hero","","", [ new TeamMember("Arik Hamacher", "Holland, Michigan"), new TeamMember("Travis Ngo", "East Lansing, Michigan, Ingham"), new TeamMember("Zaid Qourah", "Amman, Amman, Jordan"), new TeamMember("Kyle Raeside", "Clinton Township, Michigan"), new TeamMember("Devang Sethi", "New Delhi, Delhi, India"), new TeamMember("Tommy Whaley", "Haslett, Michigan") ], "2025-08/projects/kohls", 200 ) ] ), new Sponsor("Launch","Troy, Michigan","https://launch.nttdata.com/", [ new Project(2024, 8, "Spatial IoT Control using Apple Vision Pro","","",[],"2024-08/projects/launch",175), new Project(2025, 1, "Everyday Agent","","",[],"2025-01/projects/launch",150), new Project(2025, 8, "My VR Language Tutor","","", [ new TeamMember("Anh Dao", "Kim Bang, Ninh Binh, Viet Nam"), new TeamMember("Evan Fioritto", "Livonia, Michigan"), new TeamMember("Caleb Flosky", "Harrison Township, Michigan"), new TeamMember("Nolan Jolley", "Grand Ledge, Michigan"), new TeamMember("Joseph Pacentine", "Darien, Illinois"), new TeamMember("Molly Thornber", "Woodridge, Illinois") ], "2025-08/projects/launch", 150 ) ] ), new Sponsor("Learning A-Z","Ann Arbor, Michigan","http://www.learninga-z.com/", [ new Project(2019, 8, "Robot Builder Word Guessing Game","","",[],"2019-08/projects/learning-a-z"), new Project(2020, 1, "Sandwich Builder Parts of Speech Guessing Game","","",[],"2020-01/projects/learning-a-z"), new Project(2020, 8, "Vocab Slinger Word Definition Game","","",[],"2020-08/projects/learning-a-z"), new Project(2021, 1, "Definition Station Word Matching Game","","",[],"2021-01/projects/learning-a-z",200) ] ), new Sponsor("Lockheed Martin","Littleton, Colorado","https://www.lockheedmartin.com/", [ new Project(2020, 1, "SmartSat Satellite App Store","Space","",[],"2020-01/projects/lockheed-martin-space"), new Project(2020, 8, "SmartSat™ Heterogeneous Computing in Space","Space","",[],"2020-08/projects/lockheed-martin-space"), new Project(2021, 1, "SmartSat™ Heterogenous Computing in Space","Space","",[],"2021-01/projects/lockheed-martin-space",250), new Project(2021, 8, "SmartSat™ Satellite App Store","Space","",[],"2021-08/projects/lockheed-martin-space",250), new Project(2022, 1, "SmartSat™ Satellite App Store","Space","",[],"2022-01/projects/lockheed-martin-space",250), new Project(2022, 8, "LiDAR and Image Fusion for Autonomous Navigation","Space","",[],"2022-08/projects/lockheed-martin-space",210), new Project(2023, 1, "SmartSat™ Software Development Kit & AI Platform","Space","",[],"2023-01/projects/lockheed-martin-space",210), new Project(2023, 8, "SmartSat™ Heterogenous Computing in Space","Space","",[],"2023-08/projects/lockheed-martin-space",210), new Project(2024, 1, "SmartSat™ AI Acceleration in Space","Space","",[],"2024-01/projects/lockheed-martin-space",210) ] ), new Sponsor("Ludus","Holland, Michigan","https://ludus.com/", [ new Project(2024, 1, "Digital Playbill Builder","","",[],"2024-01/projects/ludus",175), new Project(2025, 8, "Web-Based FGL Ticket Emulator & Interpreter","","", [ new TeamMember("Isabella Nelsen", "Hartland, Michigan"), new TeamMember("David Oh", "Farmington Hills, Michigan"), new TeamMember("Abhay Saji", "Windsor, Ontario, Canada"), new TeamMember("Zakariya Sattar", "Chicago, Illinois"), new TeamMember("Nicholas Seals", "Trenton, Michigan"), new TeamMember("Umut Temel", "Ankara, Ankara, Turkey") ], "2025-08/projects/ludus", 175 ) ] ), new Sponsor("Magna","Aurora, Ontario, Canada","https://www.magna.com/", [ new Project(2022, 8, "Dashboard for Data Visualization","","Troy, Michigan",[],"2022-08/projects/magna",200), new Project(2023, 1, "Dashboard for Data Visualization","","Troy, Michigan",[],"2023-01/projects/magna",200), new Project(2023, 8, "Composable 3D Model for a Manufacturing Plant","","Troy, Michigan",[],"2023-08/projects/magna",200), new Project(2024, 1, "3D Model for Factory Digital Twin Using WebGPU","","Troy, Michigan",[],"2024-01/projects/magna",200), new Project(2024, 8, "Offline-Ready Mobile App for Delivery Optimization","--MADO","Troy, Michigan",[],"2024-08/projects/magna-mado",200), new Project(2024, 8, "Test-Driven Development for Embedded Software","--TDD4ES","Troy, Michigan",[],"2024-08/projects/magna-tdd4es",200), new Project(2024, 8, "Visualizing Neural Network Gradients","--VNNG","Troy, Michigan",[],"2024-08/projects/magna-vnng",200), new Project(2024, 8, "World Feature Generation for ADAS Simulation","--WFG4ADAS","Troy, Michigan",[],"2024-08/projects/magna-wfg4adas",200), new Project(2025, 1, "Manufacturing Tracking System","","Troy, Michigan",[],"2025-01/projects/magna",200), new Project(2025, 8, "ML/AI Pipeline for Condition-Based Maintenance","--AI4CBM","Troy, Michigan", [ new TeamMember("Daniel Chen", "Bloomfield Hills, Michigan"), new TeamMember("Hector Dominguez Rojas", "Rochester Hills, Michigan"), new TeamMember("Michael Gryn", "Shelby Township, Michigan"), new TeamMember("Lizabeth Hanks", "Farmington Hills, Michigan"), new TeamMember("Ethan Springer", "Hudsonville, Michigan"), new TeamMember("Athul Syam", "Rochester Hills, Michigan") ], "2025-08/projects/magna-ai4cbm", 200 ), new Project(2025, 8, "LLM 3D Model Interpretation & Decomposition","--LLM3DMID","", [ new TeamMember("Ankit Mudunuri", "Troy, Michigan"), new TeamMember("Achint Nagra", "Novi, Michigan"), new TeamMember("Andrew Nguyen", "Sterling Heights, Michigan"), new TeamMember("Saatvik Palli", "Westmont, Illinois"), new TeamMember("Noah Patenaude", "Novi, Michigan"), new TeamMember("Jathin Sabbineni", "Vijayawada, Andhra Pradesh, India") ], "2025-08/projects/magna-llm3dmid", 200 ), new Project(2025, 8, "VR Human-AI Multimodal Interaction","--VRAI4MI","Troy, Michigan", [ new TeamMember("Mohammed Alanizy", "Tabuk, Saudi Arabia"), new TeamMember("Ryan Bolin", "Lake Orion, Michigan"), new TeamMember("John Hidalgo", "Macomb, Michigan"), new TeamMember("Preston Korytkowski", "Rockford, Michigan"), new TeamMember("Aditya Menon", "Abu Dhabi, Abu Dhabi, United Arab Emirates"), new TeamMember("Ashish Pasula", "Troy, Michigan") ], "2025-08/projects/magna-vrai4mi", 200 ) ] ), new Sponsor("Malleable Minds","Frederick, Maryland","https://malleable-minds.com/", [ new Project(2020, 8, "Review Aggregator for Educational Programs","","",[],"2020-08/projects/malleable-minds"), new Project(2021, 1, "Improving Access to PreK-12 Educational Opportunities","","",[],"2021-01/projects/malleable-minds",200), new Project(2021, 8, "Review Aggregator for Educational Programs","","",[],"2021-08/projects/malleable-minds",200), new Project(2022, 1, "Advancing PreK-12 Educational Opportunities","","",[],"2022-01/projects/malleable-minds",200) ] ), new Sponsor("MaxCogito","Mashpee, Massachusetts","https://maxcogito.com/", [ new Project(2020, 1, "Identity Based Communication and Content Services","","",[],"2020-01/projects/maxcogito"), new Project(2022, 1, "Blockchain Based Vaccine Passport System","","",[],"2022-01/projects/maxcogito",200) ] ), new Sponsor("McKesson","Irving, Texas","https://www.mckesson.com/", [ new Project(2025, 1, "Vulnerability Scan and Detect","","",[],"2025-01/projects/mckesson",200), new Project(2025, 8, "Intelligent Network Security for High-Risk Traffic","","", [ new TeamMember("Aneesh Kapole", "Pune, Maharashtra, India"), new TeamMember("Dev Khakhar", "Rajkot, Gujarat, India"), new TeamMember("Karena Lam", "Novi, Michigan"), new TeamMember("Aisha Latif", "Shelby Township, Michigan"), new TeamMember("Divya Nadella", "Novi, Michigan"), new TeamMember("Conner O’Sullivan", "Alexandria, Virginia") ], "2025-08/projects/mckesson", 200 ) ] ), new Sponsor("Medtronic","Mounds View, Minnesota","http://www.medtronic.com/", [ new Project(2010, 1, "Mobile Health Management System","","",[],"2010-01/projects/medtronic"), new Project(2010, 8, "Medtronic Wellness Portal","","",[],"2010-08/projects/medtronic"), new Project(2011, 1, "Cloud-Based Athletics Operations Center","","",[],"2011-01/projects/medtronic") ] ), new Sponsor("Meijer","Grand Rapids, Michigan","http://www.meijer.com/", [ new Project(2009, 8, "ITS Scoreboard Dashboard","","",[],"2009_08/web/archives/pages/2009_08/2009_08_team_04_Meijer.htm"), new Project(2010, 1, "Chief Information Officer Dashboard","","",[],"2010-01/projects/meijer"), new Project(2010, 8, "ITS Products and Services Request System","","",[],"2010-08/projects/meijer"), new Project(2011, 1, "Consumer Payroll Check Cashing Analytics","","",[],"2011-01/projects/meijer"), new Project(2011, 8, "Tablet-Based Point-of-Sale System","","",[],"2011-08/projects/meijer"), new Project(2012, 1, "Food Safety Audits and Reports","","",[],"2012-01/projects/meijer"), new Project(2012, 8,"IT ePager System","","",[],"2012-08/projects/meijer"), new Project(2013, 1,"IT Metrics Repository","","",[],"2013-01/projects/meijer"), new Project(2013, 8,"Chief Information Officer Dashboard","","",[],"2013-08/projects/meijer"), new Project(2014, 1,"Mobile Customer Satisfaction App","","",[],"2014-01/projects/meijer"), new Project(2014, 8,"Mobile Location-Based Product Promotion","","",[],"2014-08/projects/meijer"), new Project(2015, 1,"Product Availability Check using Glassware","","",[],"2015-01/projects/meijer"), new Project(2015, 8,"In-Store Price Compare","","",[],"2015-08/projects/meijer"), new Project(2016, 8,"Intelligent Shopping List","","",[],"2016-08/projects/meijer"), new Project(2017, 1,"MyMeijer: Crowdsource Shopping","","",[],"2017-01/projects/meijer"), new Project(2017, 8,"Meijer Fresh-ipes","","",[],"2017-08/projects/meijer"), new Project(2018, 1,"Thrifty: Personal Shopping Assistant","","",[],"2018-01/projects/meijer"), new Project(2018, 8,"Meijer Shrink Reduction Using Blockchain","","",[],"2018-08/projects/meijer"), new Project(2019, 1,"aislePerks: Location-Based Personalized Shopping","","",[],"2019-01/projects/meijer"), new Project(2019, 8,"Creating Picking and Fulfillment Efficiency","","",[],"2019-08/projects/meijer"), new Project(2020, 1,"Reducing Shoplifting Using Machine Learning","","",[],"2020-01/projects/meijer"), new Project(2020, 8,"Support Desk Chatbot","","",[],"2020-08/projects/meijer"), new Project(2021, 1,"Meijer Store Wayfinding","","",[],"2021-01/projects/meijer",150), new Project(2021, 8,"mHealthy: Healthy Eating Application","","",[],"2021-08/projects/meijer",150), new Project(2022, 1,"Meijer Smart Shopper","","",[],"2022-01/projects/meijer",150), new Project(2022, 8,"Meijer Simply Give Automation","","",[],"2022-08/projects/meijer",150), new Project(2023, 1,"Organization Efficiencies Utilizing WiFi Locationing","","",[],"2023-01/projects/meijer",150), new Project(2023, 8,"Enhanced Shopping Experience Using AI","","",[],"2023-08/projects/meijer",150), new Project(2024, 1, "Supply Chain Induction Visibility Using Witron","","",[],"2024-01/projects/meijer",150), new Project(2024, 8, "Increasing Awareness of Meijer-Branded Products","","",[],"2024-08/projects/meijer",150), new Project(2025, 1, "Online Customer Experience with Meijer Branded Products","","",[],"2025-01/projects/meijer",150), new Project(2025, 8, "Environmental Awareness with BeBot","","", [ new TeamMember("Marcus Cohen", "Ann Arbor, Michigan"), new TeamMember("Connor Fischetti", "Ypsilanti, Michigan"), new TeamMember("Tess Martin", "Plymouth, Michigan"), new TeamMember("Christian Montgomery", "East Jordan, Michigan"), new TeamMember("Elliott Olivero", "Rochester Hills, Michigan"), new TeamMember("Matthew Willemin", "Grand Rapids, Michigan") ], "2025-08/projects/meijer", 150 ) ] ), new Sponsor("Michael Sadler Foundation","Grand Rapids, Michigan","https://www.michaelsadlerfoundation.org/", [ new Project(2019, 8, "GameChang3rs Learning Management System","","",[],"2019-08/projects/michael-sadler-foundation"), new Project(2020, 1, "Gamifying GameChang3rs","","",[],"2020-01/projects/michael-sadler-foundation") ] ), new Sponsor("Michigan State University","East Lansing, Michigan","http://www.msu.edu/", [ new Project(2004, 8, "American Voices
for MATRIX","","",[],"2004_08/web/team_projects.htm"), new Project(2004, 8, "Real-Time Statics Entry and Analysis
for Men's Basketball","","",[],"2004_08/web/team_projects.htm"), new Project(2005, 1, "STATe: Real-Time Statistics and Video Analysis Tool
for Men's Basketball","","",[],"2005_01/clientProjects/Team%2007%20MSU%20Men%27s%20Basketball/STATe%20Final%20Video.htm"), new Project(2005, 1, "On-Line Publication Editor for MediaMatrix
for MATRIX","","",[],"2005_01/clientProjects/Team%2006%20MATRIX/Final%20Presentation.htm"), new Project(2007, 1, "Tracking System for Biological Samples in Cold Storage
for College of Human Medicine","","",[],"2007_01/clientProjects/team_08_MSU_CHM/Submit.wmv"), new Project(2008, 1, "Distributed Checksum Calculation for KORA
for MATRIX","","",[],"2008_01/web/archives/pages/2008_01/2008_01_team_05_MATRIX.htm"), new Project(2017, 1, "CATAlyst: Mapping CATA Buses in Real-Time","","Information Technology
East Lansing, Michigan",[],"2017-01/projects/michigan-state-university"), new Project(2017, 8, "SEA: Spartan Experience App","","Information Technology
East Lansing, Michigan",[],"2017-08/projects/michigan-state-university"), new Project(2018, 1, "Pulse: Classroom Engagement System","","Information Technology
East Lansing, Michigan",[],"2018-01/projects/michigan-state-university"), new Project(2018, 8, "Navigating MSU’s Campus Using Augmented Reality","","",[],"2018-08/projects/michigan-state-university"), new Project(2019, 1, "Group Project Organization and Scheduling","ITS","Information Technology Services",[],"2019-01/projects/michigan-state-university-its"), new Project(2019, 1, "Simplifying High Performance Computing","HPCC","High Performance Computing Center",[],"2019-01/projects/michigan-state-university-hpcc"), new Project(2019, 8, "Spotlight: Discovering Clubs and Student Organizations","ITS","Information Technology Services",[],"2019-08/projects/michigan-state-university-its"), new Project(2020, 1, "Using Sensors to Study Human Behavior","CSE","Computer Science & Engineering",[],"2020-01/projects/michigan-state-university-cse"), new Project(2020, 1, "Degree Navigator","ITS","Information Technology Services",[],"2020-01/projects/michigan-state-university-its"), new Project(2020, 8, "Explore: Discover Sports on Campus","ITS","Information Technology Services",[],"2020-08/projects/michigan-state-university-its"), new Project(2021, 1, "Pesticide Management for Sustainable Vineyards","Animal Science","",[],"2021-01/projects/michigan-state-university-animal-science",70), new Project(2022, 1, "Data-Driven Mechanic: Applications and Infrastructure","CSE","Computer Science and Engineering",[],"2022-01/projects/michigan-state-university-cse",70), new Project(2022, 1, "On-Premises Automatic Speech Recognition Pipeline","Linguistics","Linguistics, Languages, and Cultures",[],"2022-01/projects/michigan-state-university-linguistics",70), new Project(2022, 8, "Mobile App for Remote Recording","Linguistics","Linguistics, Languages, and Cultures",[],"2022-08/projects/michigan-state-university-linguistics",70), new Project(2023, 1, "Improved Peer Review in CourseLib","CSE","Computer Science and Engineering",[],"2023-01/projects/michigan-state-university-cse",70), new Project(2023, 1, "Build-an-App for Humanities Researchers","Linguistics","Linguistics, Languages, and Cultures",[],"2023-01/projects/michigan-state-university-linguistics",70), new Project(2023, 8, "clUML: A Browser-Based UML Editor","CSE","Computer Science and Engineering",[],"2023-08/projects/michigan-state-university-cse",70), new Project(2024, 1, "clUML: A Browser-Based UML Editor","CSE","",[],"2024-01/projects/michigan-state-university-cse",70), new Project(2024, 1, "Enviroweather Mobile","Enviroweather","",[],"2024-01/projects/michigan-state-university-enviroweather",70), new Project(2024, 8, "Robotic Job Coaching","--CSE","",[],"2024-08/projects/michigan-state-university-cse",70), new Project(2025, 1, "Robotic Job Coaching 2.0","Computer Science and Engineering--CSE RJC","",[],"2025-01/projects/michigan-state-university-cse-rjc",70), new Project(2025, 1, "Test Platforms for Self-Driving Race Cars","Computer Science and Engineering--CSE SDRC","",[],"2025-01/projects/michigan-state-university-cse-sdrc",70), new Project(2025, 1, "Crowd-Sourcing Intuitions of Vowel Classifications","Linguistics, Languages, and Cultures--Linguistics","",[],"2025-01/projects/michigan-state-university-linguistics",70), new Project(2025, 8, "Remote Interface for Small-Scale Autonomous Racecars","Computer Science and Engineering--CSE","", [ new TeamMember("Ali Abboodi", "Baghdad, Baghdad Governorate, Iraq"), new TeamMember("Zach Estepp", "Howell, Michigan"), new TeamMember("Patrick Hogan", "Mclean, Virginia"), new TeamMember("Daphne Martin", "Huntsville, Alabama"), new TeamMember("Skanda Vijaykumar", "Troy, Michigan"), new TeamMember("Christian Wilkins", "Midland, Michigan") ], "2025-08/projects/michigan-state-university-cse", 70 ), new Project(2025, 8, "Citing Slavery Data Presentation","College of Law--Law","", [ new TeamMember("Kadin Eastway", "Mcbain, Michigan"), new TeamMember("Yuxuan Li", "Beijing, Beijing, China"), new TeamMember("Dan Loudon", "Dearborn, Michigan"), new TeamMember("Joshua Patrick", "Livonia, Michigan"), new TeamMember("Ken Pham", "Hanoi, Hanoi, Vietnam"), new TeamMember("Wyat Soule", "Mcbain, Michigan") ], "2025-08/projects/michigan-state-university-law", 70 ) ] ), new Sponsor("Microsoft","Redmond, Washington","http://www.microsoft.com/", [ new Project(2005, 8, "Peer-to-Peer Discovery/Content Sharing","","",[],"2005_08/clientProjects/team_05_Microsoft/cse498T05.wmv"), new Project(2006, 1, "Peer-to-Peer Application Templates and Controls","","",[],"2006_01/clientProjects/team_06_Microsoft/Team%2006%20Microsoft.wmv"), new Project(2007, 1, "Two Power Toys for Peer-to-Peer Applications","","",[],"2007_01/clientProjects/team_09_Microsoft/Final.wmv"), new Project(2008, 1, "MUD: A Web-Based Multi-User Drawing Surface","","",[],"2008_01/web/archives/pages/2008_01/2008_01_team_06_Microsoft.htm"), new Project(2008, 8, "Application Health Monitoring System","","",[],"2008_08/web/archives/pages/2008_08/2008_08_team_06_Microsoft.htm"), new Project(2017, 1, "Intune Company Portal Helper Bot","","",[],"2017-01/projects/microsoft"), new Project(2017, 8, "Enhanced Company Portal with Graph","","",[],"2017-08/projects/microsoft"), new Project(2018, 8, "ITPro Company Portal","","",[],"2018-08/projects/microsoft"), new Project(2019, 8, "ITPro Company Portal","","",[],"2019-08/projects/microsoft"), new Project(2020, 8, "Feedback Analysis Hub for Microsoft Intune","","",[],"2020-08/projects/microsoft",175), new Project(2021, 8, "Feedback Prompt for Ratings in Google Play Store","","",[],"2021-08/projects/microsoft",175), new Project(2022, 8, "Making STEM Papers Accessible to ASL Users","","",[],"2022-08/projects/microsoft",175) ] ), new Sponsor("MillerKnoll","Zeeland, Michigan","Sponsor-URL/", [ new Project(2024, 1, "Product Lifecycle Tracing System","","",[],"2024-01/projects/millerknoll",175) ] ), new Sponsor("Motorola Mobility","Libertyville, Illinois","http://www.motorola.com/", [ new Project(2004, 8, "Client/Server-Based Video Control System (VCS)","","",[],"2004_08/web/team_projects.htm"), new Project(2005, 1, "Resource Identifier for Peer-to-Peer Applications via JXTA","","",[],"2005_01/clientProjects/Team%2008%20Motorola/Team%208%20Motorola.htm"), new Project(2005, 8, "Managing Complex Heterogeneous Devices","","",[],"2005_08/clientProjects/team_06_Motorola/DCSPresentationVideo.htm"), new Project(2006, 1, "Eclipse Plug-In for Advanced UML Code Generation","","",[],"2006_01/clientProjects/team_07_Motorola/Team%2007%20Motorola.wmv"), new Project(2006, 8, "Graphical Modeling Editing Framework","","",[],"2006_08/clientProjects/team_05_Motorola/FinalProj12061011.wmv"), new Project(2007, 1, "Agent Framework for Remote Management of Devices","","",[],"2007_01/clientProjects/team_10_Motorola/Team_10_Motorola_video.wmv"), new Project(2007, 8, "Management Console for the Agent Framework","","",[],"2007_08/web/archives/pages/2007_08/2007_08_team_04_Motorola.htm"), new Project(2008, 1, "Advanced Network Fault Management","","",[],"2008_01/web/archives/pages/2008_01/2008_01_team_07_Motorola.htm"), new Project(2009, 1, "User Generated Video Service for Cable Systems","","",[],"2009_01/web/archives/pages/2009_01/2009_01_team_06_Motorola.htm"), new Project(2009, 8, "User Generated Video Service for the iPhone","","",[],"2009_08/web/archives/pages/2009_08/2009_08_team_05_Motorola.htm"), new Project(2010, 1, "Mobile User Generated Video Service","","",[],"2010-01/projects/motorola"), new Project(2010, 8, "Enhanced Program Guides for Mobile Devices","","",[],"2010-08/projects/motorola"), new Project(2011, 1, "Enhanced Content Authoring Services","","",[],"2011-01/projects/motorola-mobility"), new Project(2011, 8, "Synchronized Program Content Delivery","","",[],"2011-08/projects/motorola-mobility"), new Project(2012, 1, "Context-Driven Content Delivery","","",[],"2012-01/projects/motorola-mobility") ] ), new Sponsor("Moii.AI","Troy, Michigan","https://moiiai.com/", [ new Project(2023, 1, "Image Similarity System","","",[],"2023-01/projects/moii-ai",150), new Project(2023, 8, "Small Object Detection Using CCTV Cameras","","",[],"2023-08/projects/moii-ai",150) ] ), new Sponsor("Mozilla","Mountain View, California","http://www.mozilla.org/", [ new Project(2012, 1, "In-Content Preferences for Firefox","","",[],"2012-01/projects/mozilla"), new Project(2012, 8, "Reader Mode for Desktop Firefox","","",[],"2012-08/projects/mozilla"), new Project(2013, 1, "Multi-Touch Gestures for Firefox","","",[],"2013-01/projects/mozilla"), new Project(2013, 8, "Australis-Styled Widgets for Mozilla Firefox","","",[],"2013-08/projects/mozilla"), new Project(2016, 8, "Improvements to Select Dropdown for Firefox","","",[],"2016-08/projects/mozilla"), new Project(2017, 1, "Improvements to Firefox’s about:preferences","","",[],"2017-01/projects/mozilla"), new Project(2017, 8, "Taking Firefox Screenshots Testing Suite to 11","","",[],"2017-08/projects/mozilla"), new Project(2018, 1, "Dark Theme Darkening","","",[],"2018-01/projects/mozilla"), new Project(2018, 8, "Asynchronize All the (Localization) Things!","","",[],"2018-08/projects/mozilla"), new Project(2019, 1, "Optimizing Firefox Localization","","",[],"2019-01/projects/mozilla"), new Project(2019, 8, "Splitting the Atom. Again.","","",[],"2019-08/projects/mozilla"), new Project(2020, 1, "No More Yellow Screen of Death in Firefox","","",[],"2020-01/projects/mozilla"), new Project(2020, 8, "Making Firefox’s Picture-in-Picture Even More Awesome","","",[],"2020-08/projects/mozilla"), new Project(2021, 1, "Pushing Picture-in-Picture towards Perfection","","",[],"2021-01/projects/mozilla",175), new Project(2021, 8, "Improve High Contrast Mode for Firefox","","",[],"2021-08/projects/mozilla",175), new Project(2022, 1, "Improve Firefox’s Reader View","","",[],"2022-01/projects/mozilla",175) ] ), new Sponsor("MSUFCU","East Lansing, Michigan","http://www.msufcu.org/", [ new Project(2013, 1, "Mobile Information App for Staff","","",[],"2013-01/projects/msufcu"), new Project(2013, 8, "Smart Start Savers","","",[],"2013-08/projects/msufcu"), new Project(2014, 1, "Mobile Financial Education App","","",[],"2014-01/projects/msufcu"), new Project(2014, 8, "Refer A Friend Website and Mobile App","","",[],"2014-08/projects/msufcu"), new Project(2015, 1, "Financial 4.0 Interactive Budgeting Tool","","",[],"2015-01/projects/msufcu"), new Project(2015, 8, "Online Dollar Dog Store","","",[],"2015-08/projects/msufcu"), new Project(2016, 1, "Money Smash Chronicle","","",[],"2016-01/projects/msufcu"), new Project(2016, 8, "Member Ratings and Reviews","","",[],"2016-08/projects/msufcu"), new Project(2017, 1, "Banking with Amazon’s Alexa and Apple’s Siri","","",[],"2017-01/projects/msufcu"), new Project(2017, 8, "Digital Banking with Chatbots","","",[],"2017-08/projects/msufcu"), new Project(2018, 1, "Digital Assistant and Personal Financial Coach","","",[],"2018-01/projects/msufcu"), new Project(2018, 8, "Transaction Anomaly Detection","","",[],"2018-08/projects/msufcu"), new Project(2019, 1, "AutoBudget Chatbot","","",[],"2019-01/projects/msufcu"), new Project(2019, 8, "Building Hopes and Dreams Together","","",[],"2019-08/projects/msufcu"), new Project(2020, 1, "Achieve It","","",[],"2020-01/projects/msufcu"), new Project(2020, 8, "Member Digital Help Center","","",[],"2020-08/projects/msufcu"), new Project(2021, 1, "Augmented Reality Financial Education","","",[],"2021-01/projects/msufcu",170), new Project(2021, 8, "Spaving: Giving Based on Spending Habits","","",[],"2021-08/projects/msufcu",170), new Project(2022, 1, "Ever Green 3C: Financial Education Content Library","","",[],"2022-01/projects/msufcu",170), new Project(2022, 8, "Digital Transformation of Member Data","","",[],"2022-08/projects/msufcu",170), new Project(2023, 1, "Predictive Chatbot Experience","","",[],"2023-01/projects/msufcu",170), new Project(2023, 8, "Digital Banking Car App","","",[],"2023-08/projects/msufcu",170), new Project(2024, 1, "Personalized Augmented Reality Experience","","",[],"2024-01/projects/msufcu",170), new Project(2024, 8, "Branch Pickup Lockers","","",[],"2024-08/projects/msufcu",170), new Project(2025, 1, "Logged-In Branch Experience","","",[],"2025-01/projects/msufcu",170), new Project(2025, 8, "AI-Powered Financial Wellness Coach","","", [ new TeamMember("Rion Ando", "Mitaka, Tokyo, Japan"), new TeamMember("Ronith Arum", "Farmington Hills, Michigan"), new TeamMember("Bruno Budelmann", "Grand Rapids, Michigan"), new TeamMember("Alexander Goluska", "Okemos, Michigan"), new TeamMember("Anuj Jadhav", "Mumbai, Maharashtra, India"), new TeamMember("Grant Perlmuter", "West Bloomfield, Michigan") ], "2025-08/projects/msufcu", 170 ) ] ), new Sponsor("NetJets","Columbus, Ohio","https://netjets.com/", [ new Project(2025, 1, "Airport Capacity and Ground Space Management","","",[],"2025-01/projects/netjets",200), new Project(2025, 8, "Weather Monitoring and Impact Assessment","","", [ new TeamMember("Omar Almazrouei", "Abudhabi, Abudhabi, United Arab Emirates"), new TeamMember("Raj Ambekar", "Okemos, Michigan"), new TeamMember("Jeet Jhaveri", "Westland, Michigan"), new TeamMember("Sai Morusupalli", "Hyderabad, Telangana, India"), new TeamMember("Imad Nasser", "Dearborn, Michigan"), new TeamMember("Joseph Robertson", "Grand Rapids, Michigan") ], "2025-08/projects/netjets", 200 ) ] ), new Sponsor("PACE","Detroit, Michigan","https://www.pacemichigan.com/", [ new Project(2025, 8, "AI Services & Vendor Navigator","","", [ new TeamMember("Ryan Aljaari", "East Lansing, Michigan"), new TeamMember("Serena Brown", "Lansing, Michigan"), new TeamMember("Arnav Deol", "Troy, Michigan"), new TeamMember("Shuja Husain", "Nagpur, Maharashtra, India"), new TeamMember("Kunal Kale", "Plymouth, Michigan"), new TeamMember("Ivy Nguyen", "Macomb, Michigan") ], "2025-08/projects/pace", 75 ) ] ), new Sponsor("Phoenix Group","O'Fallon, Missouri","https://tpgpos.com/", [ new Project(2017, 8, "OPEN v2.0: Smart Order Picking","","",[],"2017-08/projects/phoenix-group"), new Project(2018, 1, "Customer Service System with Chatbot","","",[],"2018-01/projects/phoenix-group") ] ), new Sponsor("Place Technology","Austin, Texas","https://www.placetechnology.com/", [ new Project(2020, 1, "Predictive Support Module","","",[],"2020-01/projects/place-technology") ] ), new Sponsor("Plex Systems","Auburn Hills, Michigan","http://plex.com/", [ new Project(2012, 1, "HTML5-Based WYSIWYG Label Designer","","",[],"2012-01/projects/plex-systems") ] ), new Sponsor("Principal","Des Moines, Iowa","http://www.principal.com/", [ new Project(2019, 1, "Integrated Analyst Ratings and Notes","","",[],"2019-01/projects/principal"), new Project(2020, 1, "ARIN Application Launcher","AAL","",[],"2020-01/projects/principal-aal"), new Project(2020, 1, "Investment Portfolio Construction","IPC","",[],"2020-01/projects/principal-ipc") ] ), new Sponsor("Proofpoint","Sunnyvale, California","http://www.proofpoint.com/", [ new Project(2018, 1, "Next Generation Malware Analysis System","","",[],"2018-01/projects/proofpoint"), new Project(2018, 8, "Improved Detonation of Evasive Malware","","",[],"2018-08/projects/proofpoint"), new Project(2019, 1, "Defeating Malware Payload Obfuscation","","",[],"2019-01/projects/proofpoint"), new Project(2019, 8, "Detecting State-Sponsored Cyber Security Threat Actors","","",[],"2019-08/projects/proofpoint"), new Project(2020, 1, "Predictive Engine for Long-Term Malware Detonation","","",[],"2020-01/projects/proofpoint"), new Project(2020, 8, "Leveraging SPAM to Make Bold Societal Predictions","","",[],"2020-08/projects/proofpoint"), new Project(2021, 1, "Predicting the Future through Spam Signal Intelligence","","",[],"2021-01/projects/proofpoint",180) ] ), new Sponsor("PwC","Detroit, Michigan","https://www.pwc.com/", [ new Project(2021, 8, "Collaboration Bot for Microsoft Teams","","",[],"2021-08/projects/pwc",100) ] ), new Sponsor("Quicken Loans","Detroit, Michigan","http://www.quickenloans.com/", [ new Project(2012, 8, "Secure Note Taking and Collaboration Tools","","",[],"2012-08/projects/quicken-loans"), new Project(2013, 8, "Survey and Voting Web Apps","","",[],"2013-08/projects/quicken-loans"), new Project(2014, 1, "Mobile RFID Inventory Tracking System","","",[],"2014-01/projects/quicken-loans"), new Project(2014, 8, "Enterprise Architecture Visualizer","","",[],"2014-08/projects/quicken-loans"), new Project(2015, 1, "Parking Allocation and Expense Reconciliation","","Enterprise Roadmap Tool",[],"2015-01/projects/quicken-loans"), new Project(2015, 8, "Enterprise Roadmap Tool","","",[],"2015-08/projects/quicken-loans"), new Project(2016, 1, "Game of Loans","","",[],"2016-01/projects/quicken-loans"), new Project(2016, 8, "Pharos: Hiring Process Automation","","",[],"2016-08/projects/quicken-loans"), new Project(2018, 1, "Fundamenta: Trust in New Home Construction","","",[],"2018-01/projects/quicken-loans"), new Project(2018, 8, "Walter, You Gotta Go","","",[],"2018-08/projects/quicken-loans"), new Project(2020, 8, "Rally OKR (Objectives and Key Results)","","",[],"2020-08/projects/quicken-loans"), new Project(2021, 1, "Project Relo","","",[],"2021-01/projects/quicken-loans",200) ] ), new Sponsor("Raytheon","Fort Wayne, Indiana","http://www.raytheon.com/", [ new Project(2010, 1, "Camera Control Appliance","","",[],"2010-01/projects/raytheon"), new Project(2011, 1, "Dynamic Spectrum Access for Network Radios","","",[],"2011-01/projects/raytheon"), new Project(2012, 1, "Android VoIP Communications System","","",[],"2012-01/projects/raytheon") ] ), new Sponsor("Rocket Companies","Detroit, Michigan","https://www.rocketcompanies.com/", [ new Project(2021, 8, "ROCKY: Team Challenge Application","","",[],"2021-08/projects/rocket-companies",150), new Project(2022, 1, "Team Member Mapping Application","","",[],"2022-01/projects/rocket-companies",150) ] ), new Sponsor("Rocket Mortgage","Detroit, Michigan","https://www.rocketmortgage.com/", [ new Project(2021, 1, "Rocket DevRel Tracker","","",[],"2021-01/projects/rocket-mortgage",150) ] ), new Sponsor("Rook","Indianapolis, Indiana","http://www.rooksecurity.com/", [ new Project(2016, 8, "Anomaly Detection Suite v2.0","","",[],"2016-08/projects/rook"), new Project(2017, 1, "Force Platform Ingestion Tool (PIT)","","",[],"2017-01/projects/rook"), new Project(2017, 8, "Cloud Security Event Processing and Alerting Platform","","",[],"2017-08/projects/rook"), new Project(2018, 1, "Endpoint Data Monitoring and Analysis Agent","","",[],"2018-01/projects/rook") ] ), new Sponsor("Roosevelt Innovations","Okemos, Michigan","https://www.rooseveltsolutions.com/", [ new Project(2022, 8, "Provider Anomaly Analytics Toolkit","Data Science","",[],"2022-08/projects/roosevelt-innovations-data-science",150), new Project(2022, 8, "DSL IDE Test Harness","Knowledge Science","",[],"2022-08/projects/roosevelt-innovations-knowledge-science",150), new Project(2023, 1, "Provider Analysis Toolkit","Data Science","",[],"2023-01/projects/roosevelt-innovations-data-science",150), new Project(2023, 1, "Model-Driven UI Framework","Knowledge Science","",[],"2023-01/projects/roosevelt-innovations-knowledge-science",150), new Project(2023, 8, "Predictive Claims Scoring","Data Science","",[],"2023-08/projects/roosevelt-innovations-data-science",150), new Project(2023, 8, "Universal Guided Web Editor","Knowledge Science","",[],"2023-08/projects/roosevelt-innovations-knowledge-science",150), new Project(2024, 1, "Microsoft Excel Data Extractor/Modeler","Knowledge Science","",[],"2024-01/projects/roosevelt-innovations-knowledge-science",150), new Project(2024, 8, "Intelligent Benefits Parser and Knowledge Assistant","--Knowledge Science","Intelligent Benefits Parser and Knowledge Assistant",[],"2024-08/projects/roosevelt-innovations-knowledge-science",150) ] ), new Sponsor("RPM","Royal Oak, Michigan","https://www.rpmmoves.com/", [ new Project(2022, 8, "RPM Drive™ Mobile App Extension and Enhancements","","",[],"2022-08/projects/rpm",175), new Project(2023, 1, "Building Shipments using Machine Learning","","",[],"2023-01/projects/rpm",175), new Project(2023, 8, "AI-Based Chat Service","","",[],"2023-08/projects/rpm",225), new Project(2024, 1, "Voice Transcription System","","",[],"2024-01/projects/rpm",225), new Project(2024, 8, "Automated VIN Integration for RPM Logistics","","",[],"2024-08/projects/rpm",225), new Project(2025, 1, "Automated Damage Logging for Truck Drivers","","",[],"2025-01/projects/rpm",225), new Project(2025, 8, "","","", [ ], "2025-08/projects/rpm", 225 ) ] ), new Sponsor("Sircon","Okemos, Michigan","http://www.sircon.com/", [ new Project(2007, 8, "GUI Configuration Tool for Interviews","","",[],"2007_08/web/archives/pages/2007_08/2007_08_team_05_Sircon.htm"), new Project(2008, 1, "Workflow Editor for AutoPilot","","",[],"2008_01/web/archives/pages/2008_01/2008_01_team_08_Sircon.htm") ] ), new Sponsor("Scout","Royal Oak, Michigan","https://www.scoutcms.com/", [ new Project(2022, 1, "Smart Little Hunter of Fakes","","",[],"2022-01/projects/scout",150) ] ), new Sponsor("Sparrow","Lansing, Michigan","http://www.sparrow.org/", [ new Project(2011, 1, "iSupport Center","","",[],"2011-01/projects/sparrow"), new Project(2011, 8, "iSupport Device Management System","","",[],"2011-08/projects/sparrow") ] ), new Sponsor("SpartanNash","Grand Rapids, Michigan","http://www.spartannash.com/", [ new Project(2018, 1, "Volunteer Tracking System","","",[],"2018-01/projects/spartannash") ] ), new Sponsor("Spectrum Health","Grand Rapids, Michigan","http://www.spectrumhealth.org/", [ new Project(2011, 8, "Log Monitoring Compliance","","",[],"2011-08/projects/spectrum-health"), new Project(2012, 1, "Web Applications for Healthier Communities","","",[],"2012-01/projects/spectrum-health"), new Project(2012, 8, "Medication Shortages Dashboard","","",[],"2012-08/projects/spectrum-health"), new Project(2013, 1, "SLA Management and Metric Reporting System","","",[],"2013-01/projects/spectrum-health"), new Project(2013, 8, "Talent Connections Careers Mobile Site","","",[],"2013-08/projects/spectrum-health"), new Project(2014, 1, "Medications Shortages Dashboard","","",[],"2014-01/projects/spectrum-health"), new Project(2014, 8, "Employee Discount Mobile App","","",[],"2014-08/projects/spectrum-health"), new Project(2015, 1, "Mobile Appointment Check-In and Payment","","",[],"2015-01/projects/spectrum-health"), new Project(2015, 8, "Patient Service Delivery Planning","","",[],"2015-08/projects/spectrum-health"), new Project(2016, 1, "Mobile Rounding App","","",[],"2016-01/projects/spectrum-health"), new Project(2016, 8, "Healthier Communities Time Banking","","",[],"2016-08/projects/spectrum-health"), new Project(2016, 8, "Healthier Communities Time Banking","","",[],"2016-08/projects/spectrum-health"), new Project(2017, 1, "Resident Physician Tracking","","",[],"2017-01/projects/spectrum-health"), new Project(2017, 8, "Spectrum Health Symptom Checker","","",[],"2017-08/projects/spectrum-health"), new Project(2018, 1, "Spectrum Health Go","","",[],"2018-01/projects/spectrum-health"), new Project(2018, 8, "Spectrum Health Virtual Reality Experience","","",[],"2018-08/projects/spectrum-health"), new Project(2019, 1, "Patient Training Tool","","",[],"2019-01/projects/spectrum-health") ] ), new Sponsor("Stellantis","Auburn Hills, Michigan","http://stellantis.com/", [ new Project(2021, 8, "Interactive Digital Assistant","","",[],"2021-08/projects/stellantis",200) ] ), new Sponsor("Stryker","Kalamazoo, Michigan","https://www.stryker.com/", [ new Project(2022, 8, "Technology Driven Inventory Optimization","","",[],"2022-08/projects/stryker",170), new Project(2023, 8, "Electronic Data Interchange (EDI) Dashboard","","",[],"2023-08/projects/stryker",170), new Project(2024, 1, "Dynamic Visualization of Architecture Diagrams","","",[],"2024-01/projects/stryker",170), new Project(2024, 8, "Surgical OR Instruments and Needle Tracking","Instruments and Surgical Technologies--IST","Portage, Michigan",[],"2024-08/projects/stryker-ist",170), new Project(2025, 1, "Surgical Needle Tracking","Instruments and Surgical Technologies--IST","Portage, Michigan",[],"2025-01/projects/stryker-ist",170), new Project(2025, 8, "Clean & Sterilized Instrumentation","--IST","", [ new TeamMember("Ismail Abdi", "Dadaab, Garissa, Kenya"), new TeamMember("Suhas Cheeti", "Commerce Township, Michigan"), new TeamMember("Jerry Chen", "Chicago, Illinois"), new TeamMember("Benjamin Eyke", "Williamston, Michigan"), new TeamMember("Lee Sullivan", "Singapore, Singapore, Singapore"), new TeamMember("Noah Vermeulen", "Shelby Township, Michigan") ], "2025-08/projects/stryker-ist", 170 ) ] ), new Sponsor("Surge Solutions","Rochester Hills, Michigan","https://www.workwithsurge.com/", [ new Project(2019, 1, "xOS: Visualization of Automated Underwriting","","",[],"2019-01/projects/surge-solutions") ] ), new Sponsor("Symantec","Mountain View, California","http://www.symantec.com/", [ new Project(2015, 8, "Integrated Silent Authentication via Symantec VIP","","",[],"2015-08/projects/symantec"), new Project(2016, 8, "Web Frameworks for Multi-Factor Authentication","","",[],"2016-08/projects/symantec"), new Project(2017, 8, "Secure Application Layer API Proxy","","",[],"2017-08/projects/symantec"), new Project(2018, 1, "Detecting Security Threats from User Authentications","","",[],"2018-01/projects/symantec") ] ), new Sponsor("Targets’ Tip","Okemos, Michigan","https://www.targetstip.com/", [ new Project(2022, 8, "Sharing Advice on Academic Harassment","","",[],"2022-08/projects/targets-tip",120), new Project(2023, 1, "Documenting Academic Harassment","","",[],"2023-01/projects/targets-tip",150) ] ), new Sponsor("Technology Services Group","Chicago, Illinois","http://www.tsgrp.com/", [ new Project(2019, 1, "Multi-Video Case Management","","",[],"2019-01/projects/technology-services-group"), new Project(2019, 8, "Document Management Using Google Cloud Platform","","",[],"2019-08/projects/technology-services-group"), new Project(2020, 1, "Machine Learning Document Classification and Redaction","","",[],"2020-01/projects/technology-services-group") ] ), new Sponsor("TechSmith","East Lansing, Michigan","http://www.techsmith.com/", [ new Project(2006, 1, "Web-Based Video Editing","","",[],"2006_01/clientProjects/team_08_TechSmith/Team%2008%20TechSmith.mov"), new Project(2006, 8, "TIVO for the PC","","",[],"2006_08/clientProjects/team_06_TechSmith/TIVOforPC.avi"), new Project(2007, 1, "Screen Capture Multi-Image Output Accessory for SnagIt","","",[],"2007_01/clientProjects/team_11_TechSmith/FinalVideo.wmv"), new Project(2007, 8, "Rich Media Collaboration","","",[],"2007_08/web/archives/pages/2007_08/2007_08_team_06_TechSmith.htm"), new Project(2008, 1, "Screen Recorder for Linux","","",[],"2008_01/web/archives/pages/2008_01/2008_01_team_09_TechSmith.htm"), new Project(2008, 8, "Cloud Powered Media Searching","","",[],"2008_08/web/archives/pages/2008_08/2008_08_team_07_TechSmith.htm"), new Project(2009, 1, "Collaborative Video Editing","","",[],"2009_01/web/archives/pages/2009_01/2009_01_team_07_TechSmith.htm"), new Project(2009, 8, "Microsoft Team System Custom Client","","",[],"2009_08/web/archives/pages/2009_08/2009_08_team_06_TechSmith.htm"), new Project(2010, 1, "Facebook Study Group Application","","",[],"2010-01/projects/techsmith"), new Project(2010, 8, "Extending Apps with Cloud Asset Sharing","","",[],"2010-08/projects/techsmith"), new Project(2011, 1, "WhiteCaps: Mobile Whiteboard Capture Solution","","",[],"2011-01/projects/techsmith"), new Project(2011, 8, "Mobile Web Reporter","","",[],"2011-08/projects/techsmith"), new Project(2012, 1, "Mobile Smart Video Player","","",[],"2012-01/projects/techsmith"), new Project(2012, 8, "Snagit Power Tools","","",[],"2012-08/projects/techsmith"), new Project(2013, 1, "American Sign Language Learning App","","",[],"2013-01/projects/techsmith"), new Project(2013, 8, "Learning Activity Capture","","",[],"2013-08/projects/techsmith"), new Project(2014, 1, "ClassView","","",[],"2014-01/projects/techsmith"), new Project(2014, 8, "GroupWork for Google Chrome","","",[],"2014-08/projects/techsmith"), new Project(2015, 1, "Enterprise Learning Activity Capture","","",[],"2015-01/projects/techsmith"), new Project(2015, 8, "Intelligent Real World Text Recognition","","",[],"2015-08/projects/techsmith"), new Project(2016, 1, "Cloud Based Video Face Tracking","","",[],"2016-01/projects/techsmith"), new Project(2016, 8, "Video Sentiment Analysis","","",[],"2016-08/projects/techsmith"), new Project(2017, 1, "Teacher’s Virtual Toolbelt","","",[],"2017-01/projects/techsmith"), new Project(2017, 8, "TechSmith Director","","",[],"2017-08/projects/techsmith"), new Project(2018, 1, "Snagit and Camtasia Output Extensibility","","",[],"2018-01/projects/techsmith"), new Project(2018, 8, "TechSmith Video Review and Slack Integration","","",[],"2018-08/projects/techsmith"), new Project(2019, 1, "Internal Telemetry for TechSmith Products","","",[],"2019-01/projects/techsmith"), new Project(2019, 8, "Smart Automatic Video Creation","","",[],"2019-08/projects/techsmith"), new Project(2020, 1, "Smart Camera","","",[],"2020-01/projects/techsmith"), new Project(2020, 8, "TechSmith Video Summarizer","","",[],"2020-08/projects/techsmith"), new Project(2021, 1, "TechSmith Answers","","",[],"2021-01/projects/techsmith",200), new Project(2021, 8, "Snagit Template Creator","","",[],"2021-08/projects/techsmith",200), new Project(2022, 1, "ViSUI : Video Simplified User Interface","","",[],"2022-01/projects/techsmith",200), new Project(2022, 8, "TARA: TechSmith Asset Recommendation Assistant","","",[],"2022-08/projects/techsmith",200), new Project(2023, 1, "CAVE: Collaborative Audio/Video Editor","","",[],"2023-01/projects/techsmith",200), new Project(2023, 8, "ACE: Automated Content Editor","","",[],"2023-08/projects/techsmith",200), new Project(2024, 1, "Enhanced Video Assistant (EVA)","","",[],"2024-01/projects/techsmith",200), new Project(2024, 8, "Video Insight and Knowledge Interface (VIKI)","","",[],"2024-08/projects/techsmith",200), new Project(2025, 1, "Watcher of Attuned Video Experiences (WAVE)","","",[],"2025-01/projects/techsmith",200), new Project(2025, 8, "Insight Weaver AI (IWAI)","","", [ new TeamMember("Trevor Burkis", "Hilton, New York"), new TeamMember("Naod Ghebredngl", "East Lansing, Michigan"), new TeamMember("Tuan Hua", "Ha Long, Quang Ninh, Vietnam"), new TeamMember("Hama Pashazadeh", "Lansing, Michigan"), new TeamMember("Martin Sattam", "Novi, Michigan"), new TeamMember("Ky Vu", "Hanoi, Thanh Xuan, Vietnam") ], "2025-08/projects/techsmith", 200 ) ] ), new Sponsor("Terex","West Port, Connecticut","http://www.terex.com/", [ new Project(2009, 1, "Terex Project Portfolio Management","","",[],"2009_01/web/archives/pages/2009_01/2009_01_team_08_Terex.htm"), new Project(2010, 1, "Enterprise Features for eCommerce","","",[],"2010-01/projects/terex") ] ), new Sponsor("Toro","Riverside, California","http://www.toro.com/", [ new Project(2008, 1, "WPF-Based Interface for Irritrol","","",[],"2008_01/web/archives/pages/2008_01/2008_01_team_10_Toro.htm"), new Project(2008, 8, "Golf Vision Interface for Turf Guard","","",[],"2008_08/web/archives/pages/2008_08/2008_08_team_08_Toro.htm"), new Project(2009, 1, "Water Smart Irrigation Software","","",[],"2009_01/web/archives/pages/2009_01/2009_01_team_09_Toro.htm"), new Project(2009, 8, "Irrigation Distribution Uniformity Analysis","","",[],"2009_08/web/archives/pages/2009_08/2009_08_team_07_Toro.htm") ] ), new Sponsor("TWO MEN AND A TRUCK","Lansing, Michigan","https://twomenandatruck.com/", [ new Project(2005, 1, "E-Commerce Site for Moving Products","","",[],"2005_01/clientProjects/Team%2010%20TWO%20MEN%20AND%20A%20TRUCK%20II/Cse498Team10.htm"), new Project(2005, 1, "Comprehensive Customer Satisfaction Survey System","","",[],"2005_01/clientProjects/Team%2009%20TWO%20MEN%20AND%20A%20TRUCK%20I/Default.htm"), new Project(2005, 8, "Mystery Shop Program","","",[],"2005_08/clientProjects/team_07_TwoMenAndATruck/Team%2007%20-%20Final%20Video.wmv"), new Project(2006, 1, "Consultation Visit Reporting System","","",[],"2006_01/clientProjects/team_09_TwoMenAndATruck/Team%2009%20Two%20Men%20and%20a%20Truck.wmv"), new Project(2017, 1, "Mobile “Mini Movers Who Care”","","",[],"2017-01/projects/two-men-and-a-truck"), new Project(2017, 8, "Online Moving Estimator","","",[],"2017-08/projects/two-men-and-a-truck") ] ), new Sponsor("Union Pacific","Omaha, Nebraska","http://www.up.com/", [ new Project(2005, 8, "On-Board Locomotive Wireless Network","","",[],"2005_08/clientProjects/team_08_UnionPacificRailroad/Final_Presentation9.wmv"), new Project(2006, 1, "On-Board Locomotive Wireless Network","","",[],"2006_01/clientProjects/team_10_UnionPacificRailroad/Team%2010%20Union%20Pacific.wmv"), new Project(2016, 1, "Oculus Rift Inspection and Training Tool","","",[],"2016-01/projects/union-pacific"), new Project(2017, 1, "Learning New Train Routes","","Omaha, Nebraska
Okemos, Michigan",[],"2017-01/projects/union-pacific"), new Project(2017, 8, "RailBuilder: The Great Race to Promontory","","Omaha, Nebraska
Okemos, Michigan",[],"2017-08/projects/union-pacific"), new Project(2018, 1, "“Alexa, what’s my work schedule look like?”","","Omaha, Nebraska
Okemos, Michigan",[],"2018-01/projects/union-pacific"), new Project(2018, 8, "Augmented Reality Mechanic Training","","Omaha, Nebraska
Okemos, Michigan",[],"2018-08/projects/union-pacific"), new Project(2019, 1, "Railroad Arcade","","Okemos, Michigan",[],"2019-01/projects/union-pacific"), new Project(2019, 8, "Railroad Physics Data Visualization","","Okemos, Michigan",[],"2019-08/projects/union-pacific"), new Project(2022, 1, "Railroad Data Visualization","","Louisville, Colorado",[],"2022-01/projects/union-pacific",125), new Project(2022, 8, "Mobile Train Handling Simulator","","Louisville, Colorado",[],"2022-08/projects/union-pacific",125), new Project(2023, 1, "Switch Alignment Mobile Game","","Louisville, Colorado",[],"2023-01/projects/union-pacific",125), new Project(2023, 8, "Railroad Switch Alignment Training","","Louisville, Colorado",[],"2023-08/projects/union-pacific",125), new Project(2024, 1, "Rules Test Practice Tool","","",[],"2024-01/projects/union-pacific",125), new Project(2024, 8, "Virtual Reality Inspection Training","","",[],"2024-08/projects/union-pacific",125), new Project(2025, 1, "Training Simulator Using GPS-Indexed Video","","",[],"2025-01/projects/union-pacific",125), new Project(2025, 8, "VR Railyard Safety Risk Identification","","", [ new TeamMember("Timothy Alcorn", "Brooklyn, Michigan"), new TeamMember("Antonio Capozzoli", "Northville, Michigan"), new TeamMember("Brayden Goff", "Holly, Michigan"), new TeamMember("Cameron Otten", "Plainwell, Michigan"), new TeamMember("Vivek Revankar", "Rochester, Michigan"), new TeamMember("Will Schmidtfranz", "Owosso, Michigan") ], "2025-08/projects/union-pacific", 125 ) ] ), new Sponsor("United Airlines","Chicago, Illinois","http://www.united.com/", [ new Project(2018, 8, "Toolkit Content Verification System","","",[],"2018-08/projects/united-airlines"), new Project(2019, 1, "Training Scheduling and Optimization System","","",[],"2019-01/projects/united-airlines"), new Project(2019, 8, "Training Scheduling and Optimization System II","","",[],"2019-08/projects/united-airlines"), new Project(2020, 1, "Ground Safety Action Program and QC Audit Center","Airport Operations","Airport Operations Safety and Compliance",[],"2020-01/projects/united-airlines-airport-operations"), new Project(2020, 1, "Virtual Reality Aircraft Walkaround","Safety","Training, Safety and Tooling",[],"2020-01/projects/united-airlines-safety"), new Project(2020, 1, "Training Scheduling and Optimization System III","Training","Training, Safety and Tooling",[],"2020-01/projects/united-airlines-training"), new Project(2020, 8, "Mobile GSAP and QC Audit Center v2.0","Airport Operations","Airport Operations Safety and Compliance",[],"2020-08/projects/united-airlines-airport-operations"), new Project(2020, 8, "Airport Lounge Management System","Digital Technology","Airport Operations Safety and Compliance",[],"2020-08/projects/united-airlines-digital-technology"), new Project(2020, 8, "Tech Ops Training Content Management System","Training","Training, Safety and Tooling",[],"2020-08/projects/united-airlines-training"), new Project(2021, 1, "Turn Management Analyzer","Airport Operations","Airport Operations Safety and Compliance",[],"2021-01/projects/united-airlines-airport-operations",200), new Project(2021, 1, "Training Multimedia Content Management System II","Training","Training, Safety and Tooling",[],"2021-01/projects/united-airlines-training",200), new Project(2021, 8, "Gate Hazard Geo-Mapping","Airport Operations","Airport Operations Safety and Compliance",[],"2021-08/projects/united-airlines-airport-operations",200), new Project(2021, 8, "QA Audit Center","Quality Assurance","Technical Operations and Quality Assurance",[],"2021-08/projects/united-airlines-quality-assurance",200), new Project(2022, 1, "Performance Scorecard Automation","Airport Operations","Airport Operations Safety and Compliance",[],"2022-01/projects/united-airlines-airport-operations",200), new Project(2022, 1, "Audit Management System","Quality Assurance","Technical Operations and Quality Assurance",[],"2022-01/projects/united-airlines-quality-assurance",200), new Project(2022, 1, "Training Forecast Model","Training","Training, Safety and Tooling",[],"2022-01/projects/united-airlines-training",200), new Project(2022, 8, "Data on Demand App","Airport Operations","Airport Operations Safety and Compliance",[],"2022-08/projects/united-airlines-airport-operations",200), new Project(2022, 8, "Audit Management System","Quality Assurance","Technical Operations and Quality Assurance",[],"2022-08/projects/united-airlines-quality-assurance",200), new Project(2022, 8, "Efficacy Testing within United’s Cornerstone LMS","Training","Training, Safety and Tooling",[],"2022-08/projects/united-airlines-training",200), new Project(2023, 1, "Airline Passenger and Baggage Application","Airport Operations","Airport Operations Safety and Compliance",[],"2023-01/projects/united-airlines-airport-operations",200), new Project(2023, 1, "Aircraft Appearance Assessment Tool","Quality Assurance","Technical Operations and Quality Assurance",[],"2023-01/projects/united-airlines-quality-assurance",200), new Project(2023, 1, "Adaptive Assessment Generator for Tech Ops Training","Training","Training, Safety and Tooling",[],"2023-01/projects/united-airlines-training",200), new Project(2023, 8, "Audit Automation Tool","Quality Assurance","Technical Operations and Quality Assurance",[],"2023-08/projects/united-airlines-quality-assurance",200), new Project(2024, 1, "Automated Process for Airworthiness Release","Training","Training, Safety and Tooling",[],"2024-01/projects/united-airlines-training",200) ] ), new Sponsor("Universal Map","Williamston, Michigan","http://www.universalmap.com/", [ new Project(2005, 1, "Visually Impaired Mapping System","","",[],"2005_01/clientProjects/Team%2011%20Universal%20Map/Team11.htm") ] ), new Sponsor("Urban Science","Detroit, Michigan","http://www.urbanscience.com/", [ new Project(2009, 1, "Web-Based Geography Management","","",[],"2009_01/web/archives/pages/2009_01/2009_01_team_10_UrbanScience.htm"), new Project(2009, 8, "Automobile Dealership Dashboard","","",[],"2009_08/web/archives/pages/2009_08/2009_08_team_08_UrbanScience.htm"), new Project(2010, 1, "Automobile Dealer Apps for Mobile Devices","","",[],"2010-01/projects/urban-science"), new Project(2010, 8, "Modern Online Analytical Processing Cube","","",[],"2010-08/projects/urban-science"), new Project(2011, 1, "Bringing LeadVision to the Web","","",[],"2011-01/projects/urban-science"), new Project(2011, 8, "Visual Hierarchy Selection","","",[],"2011-08/projects/urban-science"), new Project(2012, 1, "Infographics Generator","","",[],"2012-01/projects/urban-science"), new Project(2012, 8, "Mobile Geography Management","","",[],"2012-08/projects/urban-science"), new Project(2013, 1, "Dealership Consultant Mobile App","","",[],"2013-01/projects/urban-science"), new Project(2013, 8, "Dealership Consultant Mobile App","","",[],"2013-08/projects/urban-science"), new Project(2014, 1, "Dealer Improvement Recommender System","","",[],"2014-01/projects/urban-science"), new Project(2014, 8, "HR Matters","","",[],"2014-08/projects/urban-science"), new Project(2015, 1, "Global Dealer Census and Market Share Viewer","","",[],"2015-01/projects/urban-science"), new Project(2015, 8, "Visualizing Brand Loyalty","","",[],"2015-08/projects/urban-science"), new Project(2016, 1, "Dealership Inventory Solution","","",[],"2016-01/projects/urban-science"), new Project(2016, 8, "Dealership Simulator 2017","","",[],"2016-08/projects/urban-science"), new Project(2017, 1, "Real-Time Ad Campaign Management","","",[],"2017-01/projects/urban-science"), new Project(2017, 8, "VDA: Virtual Dealership Advisor","","",[],"2017-08/projects/urban-science"), new Project(2018, 1, "Mobile Maestro","","",[],"2018-01/projects/urban-science"), new Project(2018, 8, "VIN-Verse","","",[],"2018-08/projects/urban-science"), new Project(2019, 1, "Dealer4U","","",[],"2019-01/projects/urban-science"), new Project(2019, 8, "AutoHook Creative Tool","","",[],"2019-08/projects/urban-science"), new Project(2020, 1, "AutoHook Mobile Redemption Tool","","",[],"2020-01/projects/urban-science"), new Project(2020, 8, "Purchase Score Application","","",[],"2020-08/projects/urban-science"), new Project(2021, 1, "Service Flash Mobile","","",[],"2021-01/projects/urban-science",225), new Project(2021, 8, "Independent Repair Facility (IRF) Insights","","",[],"2021-08/projects/urban-science",225), new Project(2022, 1, "Customer Insights Dashboard","","",[],"2022-01/projects/urban-science",225), new Project(2022, 8, "Dealership Parts and Service Telematic Insights","","",[],"2022-08/projects/urban-science",225), new Project(2023, 1, "Fostering Office Collaboration in a Hybrid World","","",[],"2023-01/projects/urban-science",225), new Project(2023, 8, "Synthetic Media","","",[],"2023-08/projects/urban-science",225), new Project(2024, 1, "AuditBuddy","","",[],"2024-01/projects/urban-science",225), new Project(2024, 8, "Predicting Automotive Sales Using Generative AI","","",[],"2024-08/projects/urban-science",225), new Project(2025, 1, "Automotive Service Advisor AI Assistant","","",[],"2025-01/projects/urban-science",225), new Project(2025, 8, "Generating Mapping Insights Using AI","","", [ new TeamMember("Abdulrahman Almazrouei", "Abu Dhabi, Abu Dhabi, United Arab Emirates"), new TeamMember("Harjap Khabra", "Canton, Michigan"), new TeamMember("Julia Mawi", "Grand Rapids, Michigan"), new TeamMember("Gabe McGuire", "Midland, Michigan"), new TeamMember("Anas Shaaban", "Mansoura, Mansoura, Egypt"), new TeamMember("Steven Spencer", "Bridgeport, Michigan") ], "2025-08/projects/urban-science", 225 ) ] ), new Sponsor("USAA","San Antonio, Texas","http://www.usaa.com/", [ new Project(2018, 1, "LIMElight: Life Insurance Made Easy","","",[],"2018-01/projects/usaa") ] ), new Sponsor("UWM","Pontiac, Michigan","https://www.uwm.com/", [ new Project(2023, 8, "Change Insights Datamart and Risk Assessment","","",[],"2023-08/projects/uwm",140), new Project(2024, 1, "IT Datamart Microservice for BitBucket","","",[],"2024-01/projects/uwm",140), new Project(2025, 1, "Centralized Comment History Microservice","","",[],"2025-01/projects/uwm",140), new Project(2025, 8, "IT Goals Dashboard","","", [ new TeamMember("Evan Gasper", "Noblesville, Indiana"), new TeamMember("Yevgenia Minchuk", "Minsk, Minsk, Belarus"), new TeamMember("Jon Price", "Clawson, Michigan"), new TeamMember("Prabhaav Ravikumar Pillai", "Rochester Hills, Michigan"), new TeamMember("Nick Vu", "Hanoi, Hanoi, Vietnam") ], "2025-08/projects/uwm", 140 ) ] ), new Sponsor("Vectorform","Troy, Michigan","http://www.vectorform.com/", [ new Project(2019, 8, "Rumble","","",[],"2019-08/projects/vectorform"), new Project(2020, 1, "Rumble Test Suite","","",[],"2020-01/projects/vectorform"), new Project(2020, 8, "Self-Improving Assistant","","",[],"2020-08/projects/vectorform"), new Project(2021, 1, "Remote Teams AR Training","","",[],"2021-01/projects/vectorform",175), new Project(2021, 8, "Smart Auto-Time Logging","","",[],"2021-08/projects/vectorform",175), new Project(2022, 1, "Employee Recognition on Blockchain","","",[],"2022-01/projects/vectorform",175), new Project(2022, 8, "Time Cube","","",[],"2022-08/projects/vectorform",175), new Project(2023, 1, "Flexible VR Training","","",[],"2023-01/projects/vectorform",175) ] ), new Sponsor("Vectra AI","San Jose, California","https://www.vectra.ai/", [ new Project(2023, 1, "Predicting Malware Command and Control Channels","","",[],"2023-01/projects/vectra-ai",175), new Project(2023, 8, "Malware Command and Control Channel Simulator","","",[],"2023-08/projects/vectra-ai",175), new Project(2024, 1, "Hybrid Cyberattack Simulator","","",[],"2024-01/projects/vectra-ai",175), new Project(2024, 8, "AI Cyberattack Early Warning System","","",[],"2024-08/projects/vectra-ai",175), new Project(2025, 8, "Packet Forge: AI Network Protocol Engine","","", [ new TeamMember("Samuel Barnhart", "Northville, Michigan"), new TeamMember("Nihar Bollareddy", "Rajahmundry, Andhra Pradesh, India"), new TeamMember("Sean Finkel", "Northbrook, Illinois"), new TeamMember("Yeji Lee", "West Bloomfield, Michigan"), new TeamMember("Kaajal Shah", "Rochester Hills, Michigan"), new TeamMember("Aanshik Upadhyay", "Noida, Uttar Pradesh, India") ], "2025-08/projects/vectra-ai", 175 ) ] ), new Sponsor("Volkswagen","Auburn Hills, Michigan","http://www.volkswagengroupofamerica.com/", [ new Project(2018, 8, "VW Car-Net Demo App","","",[],"2018-08/projects/volkswagen"), new Project(2019, 1, "Cognitive Enterprise Software Robots","","",[],"2019-01/projects/volkswagen"), new Project(2019, 8, "VW Car-Net Smart Hub Web Apps","","",[],"2019-08/projects/volkswagen"), new Project(2020, 8, "VW Car-Net Electric Vehicle Route Planner","","",[],"2020-08/projects/volkswagen",85), new Project(2021, 8, "Car-Net® DriveView Social Competition App","","",[],"2021-08/projects/volkswagen",85), new Project(2022, 8, "Volkswagen Electric Vehicle Recommender App","","",[],"2022-08/projects/volkswagen",85), new Project(2023, 8, "Volkswagen Shopping App with Augmented Reality","","",[],"2023-08/projects/volkswagen",85), new Project(2024, 8, "Safe Journey AI","","",[],"2024-08/projects/volkswagen",85), new Project(2025, 1, "Safe Journey AI 2.0","","",[],"2025-01/projects/volkswagen",85) ] ), new Sponsor("Whirlpool","Benton Harbor, Michigan","http://www.whirlpool.com/", [ new Project(2012, 8, "Connected Appliances Analytics Dashboard","","",[],"2012-08/projects/whirlpool"), new Project(2013, 1, "Guided Cooking and Recipe App","","",[],"2013-01/projects/whirlpool"), new Project(2013, 8, "Connected Appliance SmartZones App","","",[],"2013-08/projects/whirlpool"), new Project(2014, 1, "Virtual Appliance Simulator","","",[],"2014-01/projects/whirlpool"), new Project(2014, 8, "Windows 8 Apps for Smart Appliances","","",[],"2014-08/projects/whirlpool"), new Project(2015, 1, "Launder: Laundry Room Tablet Payment System","","",[],"2015-01/projects/whirlpool"), new Project(2015, 8, "Whirlpool Indoor Maps","","",[],"2015-08/projects/whirlpool"), new Project(2016, 1, "Mobile Whirlpool Product Catalog","","",[],"2016-01/projects/whirlpool"), new Project(2016, 8, "Mooch","","",[],"2016-08/projects/whirlpool"), new Project(2017, 1, "Commercial Laundry Dashboard","","",[],"2017-01/projects/whirlpool"), new Project(2018, 8, "IRAV: Image Recognition, Annotation and Validation","","",[],"2018-08/projects/whirlpool"), new Project(2021, 8, "AI Recipe Converter","","",[],"2021-08/projects/whirlpool",150), new Project(2022, 1, "Recipe Progression Tracking","","",[],"2022-01/projects/whirlpool",150), new Project(2022, 8, "Guided Recipe Augmentation","","",[],"2022-08/projects/whirlpool",150), new Project(2023, 1, "SmartCook: Smart App for Induction Cooktop Cooking","","",[],"2023-01/projects/whirlpool",150), new Project(2023, 8, "DeepOven: Volume and Quantity Estimation in Cooking","","",[],"2023-08/projects/whirlpool",150), new Project(2024, 1, "Personalizing the Culinary Experience","","",[],"2024-01/projects/whirlpool",150), new Project(2024, 8, "Cooking GPS","","",[],"2024-08/projects/whirlpool",150), new Project(2025, 1, "AI-Powered Precision Cooking with TasteLogic","","",[],"2025-01/projects/whirlpool",150), new Project(2025, 8, "Intelligent Recognition and Inventory System (IRIS)","","", [ new TeamMember("Hamed Alnuaimi", "Al Ain, Abu Dhabi, Uae"), new TeamMember("Christian Anovert", "Rochester Hills, Michigan"), new TeamMember("Kerry Dai", "Troy, Michigan"), new TeamMember("Salma Elsaadany", "Midland, Michigan"), new TeamMember("Sarah Johnson", "Sterling Heights, Michigan"), new TeamMember("Sarah Swann", "Grand Blanc, Michigan") ], "2025-08/projects/whirlpool", 150 ) ] ), new Sponsor("WK Kellogg Co","Battle Creek, Michigan","http://www.wkkellogg.com/", [ new Project(2023, 8, "Global Business Services Process Intelligence","","",[],"2023-08/projects/wk-kellogg-co",200), new Project(2024, 1, "Next Gen Smart Factory","","",[],"2024-01/projects/wk-kellogg-co",200), new Project(2024, 8, "Cereal Industry Analysis Tool using Generative AI","","",[],"2024-08/projects/wk-kellogg-co",200), new Project(2025, 1, "Intelligent Ticketing and Release Management","","",[],"2025-01/projects/wk-kellogg-co",200) ] ), new Sponsor("Yello","Chicago, Illinois","http://www.yello.co/", [ new Project(2016, 1, "Syncing Mobile Data Without Internet Connectivity","","",[],"2016-01/projects/yello"), new Project(2016, 8, "Visualizing Dynamic Data Exploration","","",[],"2016-08/projects/yello"), new Project(2017, 1, "YelloVision: Career Fair Augmented Reality App","","",[],"2017-01/projects/yello"), new Project(2017, 8, "Automatic Resume Verification","","",[],"2017-08/projects/yello"), new Project(2018, 1, "IVAT: Interview Video Analysis Tool","","",[],"2018-01/projects/yello"), new Project(2019, 8, "Intelligent and Adaptive Data Mapping","","",[],"2019-08/projects/yello") ] ) ]; // end of new Sponsors() // Assign project (back) pointers to sponsors for (var sp = 0; sp < sponsors.length; sp++){ //console.log(sponsors[sp].name); for (var pr = 0; pr < sponsors[sp].projects.length; pr++){ //console.log(sponsors[sp].projects[pr].title); sponsors[sp].projects[pr].sponsor = sponsors[sp]; //console.log(sponsors[sp].projects[pr].sponsor.name); } } var root_folder = '../../'; //var year = 2025; // see include.php //var semester = 08; var sponsor = findSponsor(sponsors, ''); var project = findProject(sponsor, year, semester, ''); var team_members_left_to_right = []; // integer permutation of array in alphabetical order var project_video_file_name = ''; var artwork_1_file_name = ''; var artwork_2_file_name = ''; var artwork_3_file_name = ''; var artwork_4_file_name = ''; var artwork_5_file_name = ''; var artwork_6_file_name = ''; var team_photo_file_name = ''; var project_proposal_file_name = ''; var design_day_award_name = ''; var design_day_award_bookmark = ''; var view_the_project_proposal = true; var visit_the_project_sponsor_website = true; function strTeamName (sponsor_name, sponsor_division) { var sponsor_name = sponsor_name; var return_team_name; if (sponsor_division == '') { return_team_name = sponsor_name; } else if (!sponsor_division.includes('--')) { return_team_name = sponsor_name + ' ' + sponsor_division; } else { const sponsor_division_parts = sponsor_division.split('--'); return_team_name = sponsor_name + ' ' + sponsor_division_parts[1]; } return return_team_name; } function WriteWatchTheVideo(project_video_file_name, sponsor) { if (sponsor != null) { document.write(''); } if (project_video_file_name != '') document.write( '

Watch the Video...

' ); else document.write( '

Watch for the Video...

' ); if (sponsor != null) { document.write('
'); } } function WriteLogo(sponsor, logo_img_style) { document.write( '' ); } function WriteProjectHeader(sponsor, project, project_video_file_name, logo_img_style) { WriteLogo(sponsor, logo_img_style); document.write('

Team ' + project.teamName() + '

'); document.write('

' + project.title + '

'); if (design_day_award_name != '') document.write( '

Winner of the Design Day ' + '' + design_day_award_name + '.' + '

' ); WriteWatchTheVideo(project_video_file_name, sponsor); document.write('

'); } function WriteArtwork(sponsor, artwork_file_name, style, width) { var style_tag; if (style == "") style_tag = ' '; else style_tag = ' style="' + style + '" '; if (artwork_file_name != '') document.write( '
' + '' + '' + '' + '
' ); } function WriteUnderConstructionBulletPoints(level_2_max) { var level_1; var level_2; var level_1_labels = ["Functionalities", "Features", "Technologies"] document.write(''); } function WriteTeamPhoto(sponsor, project, team_photo_file_name, project_video_file_name, left_to_right) { var team_photo_href; if (team_photo_file_name != '') { team_photo_href = '"' + "../team-photo/?sponsor-name=" + sponsor.name + "&sponsor-division=" + project.sponsor_division + "&left-to-right=" + team_members_left_to_right + "&design-day-award-name=" + design_day_award_name + '"' document.write( '' + '' + '
' + 'Team Photo' + '

Team ' + project.teamName() + '

' // + // project.title ); // WriteWatchTheVideo(project_video_file_name); document.write( '

MSU Team Members
(Left to Right)

'+ project.allTeamMembers(left_to_right) + '

' + '
' + '' ); /* Prints the names for the Team Members slide for the Slide Gallery. */ /* document.write( '

MSU Team Members for Slide Gallery
'+ project.allTeamMembersForSlideGallery(left_to_right) + '

' ); /**/ /* Prints the NameIndirectionPoint values for the Design Day booklet spreadsheet template generator. */ /* document.write('

MSU Team Members for Design Day Booklet

'); if (left_to_right.length == 0) document.write('Players to be named later...
'); else { for (i = 0; i < left_to_right.length; i++) document.write(left_to_right[i] + '
'); } /**/ } } function WriteReadTheFullProjectProposal(sponsor) { var href; if (view_the_project_proposal) { if (project_proposal_file_name != '') { href = root_folder + project_proposal_file_name; document.write('

Read the full project proposal from ' + sponsor.name + '.

'); } else { document.write('

The project proposal has not been submitted yet by ' + sponsor.name + '.

'); } } } function VisitTheProjectSponsorWebsite(sponsor) { if (visit_the_project_sponsor_website) { document.write('

Check out the project sponsor’s website at ' + sponsor.name + '.

'); } }

CSE498, Collaborative Design, Fall 2025
Computer Science and Engineering
Michigan State University

Design Day Schedule

Friday, December  5, 2025
Michigan State University Engineering Building

Team Project Exhibits

The computer science capstone projects are on exhibit in the Engineering Building. from 8:00 a.m. until noon. The project exhibits are located in the first floor in the hallway parallel to Shaw Lane.

Admission is free and open to the public. Visitors are welcome.

Team Presentations to Judges

Throughout the morning, the capstone teams compete for four prestigious awards. As part of the competition, each capstone team gives a formal presentation to a panel of judges in the Engineering Building on the 3rd floor in Room 3405 .

Visitors, including family members and corporate sponsors, are encouraged to attend. The schedule of presentations is given below.

College Awards Ceremony

The Design Day Awards are presented at the College of Engineering Design Day Awards Ceremony, which is held in Anthony Hall, Room 1281 starting at 1:15 p.m..

Maps and Directions

For driving directions, maps, and parking information see Maps and Directions.

Schedule of Events and Presentations

Design Day Schedule of Events
Time Event Location
8:00 a.m. - Noon Team Presentations to Judges    Engineering Building, Room 3405
8:00 a.m. - Noon Team Project Exhibits Engineering Building, First Floor Hallway
1:15 p.m. - 2:15 p.m. College Awards Ceremony Anthony Hall, Room 1281

Design Day Booklet

A complete list of events, information about the computer science capstone project sponsors, team presentations schedule, projects, and previous award winners are found in the Design Day Booklet.