Skip to content

Instantly share code, notes, and snippets.

View lvl99's full-sized avatar

Matt Scheurich lvl99

View GitHub Profile
@lvl99
lvl99 / 01-tiled-gallery-carousel-image-args.php
Last active July 26, 2017 11:01
Use Fancybox instead of Jetpack's Carousel to display images in a lightbox
@lvl99
lvl99 / woocommerce-eu-vat-rates.csv
Last active November 29, 2023 22:20
A CSV table of the VAT rates for EU members. This was made using the table of Standard Rates from this document: https://ec.europa.eu/taxation_customs/sites/taxation/files/resources/documents/taxation/vat/how_vat_works/rates/vat_rates_en.pdf and the VAT abbreviations here: https://en.wikipedia.org/wiki/European_Union_value_added_tax#VAT_rates
Country Code State Code ZIP/Postcode City Rate % Tax Name Priority Compound Shipping Tax Class
AT * * * 20 USt 1 0 1
BE * * * 21 TVA 1 0 1
BG * * * 20 ДДС 1 0 1
CY * * * 19 ΦΠΑ 1 0 1
CZ * * * 21 DPH 1 0 1
DE * * * 19 MwSt 1 0 1
DK * * * 25 moms 1 0 1
EE * * * 20 km 1 0 1
EL * * * 24 ΦΠΑ 1 0 1
@lvl99
lvl99 / useCallbackRef.test.tsx
Created August 29, 2019 22:58
useCallbackRef - React hook for triggering changes after ref has been received from DOM
import React, { useState, useRef } from "react";
import { render, cleanup } from "react-testing-library";
import useCallbackRef from "./useCallbackRef";
function TestInputRef<T = HTMLInputElement>({
id = "test",
onSet,
onChange
}: {
id?: string;
@lvl99
lvl99 / date-iso-string-without-timezone.js
Created November 19, 2019 10:15
Date ISO string without timezone information
const controlDate = new Date();
controlDate.toString();
// -> "Thu Jun 20 2019 11:16:28 GMT+0200 (Central European Summer Time)"
controlDate.toDateString();
// -> "Thu Jun 20 2019"
controlDate.toUTCString();
// -> "Thu, 20 Jun 2019 09:15:28 GMT"