Language: Java Platform: Android Phone
Calorie is the first Android App that I've ever made. This app is intended to give users a easy way to track their daily nutrition intake and provide meal recommendations accordingly. In order to use this app, users just need to input their body parameters to build their personal models and add foods to the system. After that, our app will monitor the status of protein, carbs, fat, and calorie and alert users while any one of them passes the corresponding limit. Meanwhile, our app will pop up a weight log screen once a day to let users update their weights. All weights will be stored online and presented with a plot of the weight trend on the Calender page.
We used Edamam and Spoonacular as our food databases and use Okhttp to interact with these two APIs so that users search and add whatever they would like to eat. Our app use Bmob as our online date storage and most of data will be stored in Bmob. For some light-weight data (like users' body parameters), we use Shared Preference and store them locally.
Language: C++ Library: OpenGL Platform: PC
This project is intended to demonstrate how sorting algorithms work and make abstract algorithms easy to understand. There are many similar projects online and they all look pretty cool. Hence, I made a version of mine. I reviewed some classic sorting algorithms during the implementation. Even though OpenGL is just a role player in this project, I still learned some fundemental techniques of OpenGL like creating and destroying a window.
Language: C++ Platform: PC
Code base: Nori
This project uses Surface Area Heuristic to determine whether splitting a bounding box or not and using KD-tree to store every bounding box. This is the final project of my CS 112 (Computer Graphics). Me and my teammates spent approximately two weeks to finish this project.
Our project has two test:
Language: Python Platform: PC
Monster Sudoku (or Mega Sudoku) is a puzzle that follows the rules of Sudoku and is played on a NxN grid, N being any positive integer including N > 9. The numbers that fill each square are selected from the first N positive integers. For display purposes, they are shown as 1, 2, ..., 9, A, B, ..., Z so that each token takes up exactly one column when printed.
Four Parameters:
Difficulty
This project is done by me and my friend. We implemented Minimum Remaining Value with Degree heuristic as a tie-breaker (MAD), Least Constraining Value (LCV) that has a specific tie-breaking mechanism and two consistency checks, Forward Checking and Norvig's Check.