Spring 2024 EL/R Project Offerings

New Projects

Systems Research Validation - Haonan Lu

Openings (6)

Description

For the first semester, the students are expected to understand the evaluation process of systems research, be able to re-create the evaluation experiments of one simple system prototype, and reproduce its evaluation results. To understand the process of systems evaluation, the students will read multiple research papers while focusing on their evaluation sections and read articles on a variety of issues (open questions) related to systems evaluation. To re-create simple experiments (and reproduce their results), the students will receive training on using cloud testbeds such as CloudLab and ChameleonCloud and gain experience in designing, setting up, and running systems experiments on real, physical machines on these testbeds.

The long-term goal of this project is to re-create evaluation experiments of a variety of classic and well-known systems using the general automated evaluation framework we will be designing (a project on which I advise two PhDs and a MS student). This project is to improve the fairness and completeness of systems evaluation which is a critical component of systems research, making it easier to cross compare systems work and improving reproducibility and replicability. Proposals that improve reproducibility and replicability of systems research are a rising trend in the systems community. This framework can also be used as part of the course projects for CSE486/586 Distributed Systems, allowing students to better understand different systems designs and gain handson experience with systems implementations. The part of the work assigned to the EL/R project is suitable in terms of the scope and feasibility. The undergrads can possibly (if they want) receive help/guidance from the Ph.D. and MS students in the evaluation framework project, and participate in designing the framework if they are interested and when they are ready.

Skills

C++, Java, or Go

Material Microstructure - Olga Wodo

Openings (6)

Description

Over the ages, new materials have driven innovation and shaped our civilization. The names of the main prehistoric phases of human history, e.g., the Stone Age, Bronze Age, Iron Age, etc., are the testimony to this statement. The progress has been paralleled by a better understanding of the relationship between (micro)structure and material properties that led to the plethora of materials (e.g., reinforced concrete, LEDs, graphene, organic semiconductors). In recent years, progress in materials research has been fueled by machine learning (ML) and artificial intelligence (AI). To streamline the transition, the information about the materials' structure needs to be converted into an ML-readable format. GraSPI is a software developed at UB that featurizes the micrographs into an array of physically meaningful descriptors that can be directly used in ML pipeline.

In this project, students will enhance an existing GraSPI project. GraSPI uses a graph/network as a data structure to efficiently calculate descriptors from materials micrographs. The project's current version is coded in C/C++ using the boost library. This project aims to translate the current implementation to be python-native (e.g., using NetworkX) or use a boost.Python library. Part of the project will be: - to identify the best strategy for the needed translation (research solution, plan and execute the basic tests with classic graph-based algorithms, and make the suggestion); - plan the translation between two packages - implement the Python packages (core functionality, documentation, example notebooks)

Skills

Python programming experience and modern development tools (such as GitHub and Linux).

Fresumes AI Mass Messaging - Matt Morgan

Openings (6)

Description

AI mass messaging/robo recruiter.

We have employers paying monthly subscriptions to send automated messages to job seekers. We want AI to improve this feature by:

Identifying talent to contact Writing customized messages Interviewing talent (text message interviews to start & video interviews with ai avatar if we have enough time to build)

Encrypted Storage Resistant to Compromise - Marina Blanton

Openings (3)

Description

The core of the project will be developing a system for encrypted storage where the decryption key is split among multiple devices and compromise of a device with a partial key does not lead to disclosure of the encrypted content. The cryptographic component will be written in Rust and thus the project involves learning Rust programming.

The long-term goal includes developing user interfaces for major operating systems and major types of mobile devices to permit a user to store partial keys on different devices. Additional features will include provisions for re-keying in the event of a device compromise as well as key backup and recovery.

As this involves development of security software, the project will follow best security development practices with code review and security-related testing.

Skills:

Exposure to security concepts and/or cryptographic libraries is a plus.

Find a Mechanic - Josh Khreis

Openings (4)

Description

Find a mechanic of FAM for short is a service based webpage and app with the goal of becoming a doordash and/or instacart of trades and services. As of right now we’re focusing on the mechanics trade due to it being the largest and having year round work.

This software has 3 core portions. A marketplace webpage for a shop to administer and delegate time, work, and resources internal to customer issues and communicate and do the entire workflow process with customers. The other two portions are an app that has two uses. 1st use is for a worker of the shop to have work delegated to them from the shop webpage that allows them to update on progress of a vehicle and a user facing app that allows them to find a shop of their desired niche by reviews. The user can interact with the shop from start to finish from the app.

As of right now FAM is nearly finished as its most basic core tenets. It still needs more features and some things built into it listed below.

  • Changes/builds depending on customer feedback
  • UI improvements (consider using UI library)
  • Build/expand database (better reporting and analytics)
  • Add to the calendar
  • bug/glitch fixing
  • Securing and consolidation of the code
  • potentially adding payment system

This is what we’re planning on for the foreseeable future as we attempt to start demoing with various shops and students to test out. As more issues trickle in we believe those will help build a better process.

Our tech stack as of right now is AWS, React Native, PHP, MySQL,CSS3, and Expo.

We have a small team willing to help and guide in all aspects. We’re willing to help on all aspects including making sure our team is taken care of. We are also willing to consider all ideas that can potentially fix or better the software.

Spreadsheet Evolved - Oliver Kennedy

Openings (4)

Description

Spreadsheets are really powerful programming tools. There is a lot you can do with them. But... they're also kinda stale. It's hard to make a spreadsheet "look good", and there's a lot of ways in which an infinite grid of cells is just painful to work with. There is a better way! Apple's Numbers takes the basic spreadsheet formula and revisits a lot of assumptions: Instead of a grid of cells, you get tables, you get UI widgets... you have an entire blank canvas on which to create actual interfaces. You get a formula entry tool that gives you human-readable formulas. Unfortunately, there's only one place you can get Numbers, and it's getting harder and harder each year to be a Mac user.

The goal of this project is to design and build an open-source adaptation of Apple Numbers, and eventually to extend it into something even more powerful and scalable.

Semester 1 goals:

  • Select a programming platform (Rust, Scala, or Ocaml preferred; Something that allows common front/back-end code ideal)
  • Design and implement a data model for spreadsheet 'tables' and spreadsheets (e.g., a CRDT or log-based view)
  • Implement a front-end canvas, data table widgets, and tabs in a reactive web programming environment
  • Time permitting: Implement a websocket server to replicate the frontend data model to/from the server.

Existing/Continuing Projects

pgAQP Plugin - Zhuoyue Zhao

Openings (6)

Description

The overall goal of the project is to create an open-source experimental PostgreSQL plugin called pgAQP for approximate query processing in hybrid transactional/analytical processing systems. Approximate query processing is a new database query processing technology that allows one to query a large database with significantly lower latency with a small trade-off in query answer accuracy. The plugin will be used for research, evaluation and education purposes, and will enable any existing PostgreSQL database to add approximate query processing support.

The immediate goal of Spring 2023 is to migrate a special database index module, which is currently a research prototype built inside PostgreSQL 13.1, into a standalone library, so that this index can be used in newer versions of PostgreSQL system in the future. The code migration effort has been partially completed by a departing student in our lab. The EL/R students will learn the necessary background knowledge, read the code base, write API wrappers, and write test cases.

Skills

SQL GoogleTest framework

Autolab - Jesse Hartloff

Openings (10)

Description

Students can join the ongoing DevU project which has the goal of replacing AutoLab. DevU will be built from the ground up here at UB with extensibility as a core design philosophy. The app will also have a full featured API allowing instructors and student to write their own software that will interact with DevU whenever they want a feature that has not been implemented in the project itself.

Short-term (1-semester) goals include building the autograding pipeline, maintaining the gradebook for each course, and building out the front end.

Indoor Wireless Localization - Roshan Ayyalasomayajula

Openings (6)

Description

Indoor Wireless Localization (specifically Wi-Fi) has become quite widespread, there is an active Task Group 802.11bf as well to bring this into standards and there are many learning based solutions to bring localization accuracy to sub-meter level. While, this is great news for indoor automation, there are deployability concerns in terms of generalizability and privacy concerns surrounding it. While, the most popular approach is to use data based ML-models to provide sub-meter accurate localization algorithms, there are still requirements for generalization to different environments and better accuracy.

During the first semester, the students will develop a web-app to get data from Wi-Fi routers for a given smartphone. The data is then to be processed online to pass through an ML-model. While, there is a baseline ML-model, they should develop and improve the generalizability and accuracy of the localization algorithm (which would be almost similar to object detection problems). The next stage of the project would be to develop quantifiable differential privacy for these learning models, by adding quantifiable noise to the input images.

Skills

Web App Development Online Data streaming Cloud Data Storage Online Processing Machine Learning Differential Privacy (in the long run) Signal Processing Android/iOS App Development

Choreographic Programming - Luke Ziarek and Andrew Hirsch

Openings (4)

Description

Choreographic programming aims to simplify distributed systems / concurrent systems programming by allowing a programmer to specify the system in its entirety - participants, their computations, and communication patterns. From this high level choreographic program, we can synthesize concrete implementations for each node in the distributed system or each thread in the concurrent system.

The team will be responsible for expanding the capabilities of our compiler for a choreographic language. Students will start by learning choreographic programming and write test cases and sample programs in the language. Students will then build in syntax highlighting for both emacs and visual studio. Students will also have the ability to work on the back end, creating compilation support targeting LLVM, C, and/or native code.

Teamwork Tool Development - Matthew Hertz

Openings (4)

Description

Enhance the current UI/UX of the teamwork tool (https://cse.buffalo.edu/teamwork) which allows instructors to create and administer peer and team feedback for a variety of course needs. This will also include several feature enhancements to allow the tool to be used across more courses. Skills Web Development