Skip to content

Instantly share code, notes, and snippets.

View paulk-asert's full-sized avatar

Paul King paulk-asert

  • Brisbane, Australia
  • 15:16 (UTC +10:00)
View GitHub Profile
import java.util.List;
sealed interface ListState {}
interface Empty extends ListState { }
interface NonEmpty extends ListState { }
class MyList<ListStatus,E> {
public List<E> getDelegate() {
return delegate;
}
@paulk-asert
paulk-asert / README.md
Created June 21, 2024 10:15 — forked from yaph/README.md
Map of GitHub Commits

README

A geographic map that displays GitHub commits by countries. To view the map and information on how it was created see this article.

You can also view this gist at bl.ocks.org. If you fork it and apply changes you can see them live at bl.ocks.org/YOUR_GIST_ID.