Skip to content

Instantly share code, notes, and snippets.

View craigary's full-sized avatar
🧊
ICE ICE ICE ICE...

Craig Hart craigary

🧊
ICE ICE ICE ICE...
View GitHub Profile
@hinsxd
hinsxd / usePagination.ts
Last active September 6, 2023 14:51
Pagination hook
import { useMemo } from "react";
type PaginationProps = {
onPageChange: (page: number) => void;
totalCount: number;
siblingCount?: number;
currentPage: number;
@JanTvrdik
JanTvrdik / Caddyfile
Last active January 3, 2020 09:47
Caddy server configuration for PHP, Nette and h5ai
localhost:80, localhost:443 {
root C:\Projects
log C:\Web\Soft\Caddy\access.log
errors C:\Web\Soft\Caddy\errors.log
tls {
# see https://gist.github.com/JanTvrdik/d22f53604f3bfd78df3863cf1ad87b8a
load C:\Web\Soft\Caddy\certificates
}