Skip to content

Instantly share code, notes, and snippets.

View kikinewton's full-sized avatar

Derrick Agyemang kikinewton

  • Estonia
View GitHub Profile
@kikinewton
kikinewton / TDA_resources.md
Created September 30, 2024 21:27 — forked from calstad/TDA_resources.md
List of resources for TDA

Quick List of Resources for Topological Data Analysis with Emphasis on Machine Learning

This is just a quick list of resourses on TDA that I put together for @rickasaurus after he was asking for links to papers, books, etc on Twitter and is by no means an exhaustive list.

Survey Papers

Both Carlsson's and Ghrist's survey papers offer a very good introduction to the subject

Other Papers and Web Resources

@kikinewton
kikinewton / AbstractJdbcRepository.java
Created April 5, 2022 17:25 — forked from criminy/AbstractJdbcRepository.java
Implementation of PagingAndSortingRepository using JdbcTemplate
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;