const pagination = new Pagination(ALL_PROJECTS);
pagination.setPage(1);

// Tag filter
const filterBy = ;
if(filterBy != "None") {
pagination.filterTag(filterBy);
}

const page = pagination.getPage();
display(page);
No alt text provided
Chess V2

An updated version of my chess AI. Includes an opening book, improved evaluation, parallel processing. The user interface has been cleaned up and multiple new features have been added.


Tags:
5/3/2022
No alt text provided
Chess V1

This was my Sophomore year AP Computer Science Principals final project and my first foray into the world of chess programming. It features a simple board representation, a rendering system using the JS


Tags:
3/12/2022
1