Skip to content

Instantly share code, notes, and snippets.

View carlwhittick's full-sized avatar

Carl Whittick carlwhittick

View GitHub Profile
include /nix/store/9h9hqgk17203mlz9zwdm9akzpyf1gfvr-sway-c072ada/catppuccin-mocha
font pango:monospace 8.000000
floating_modifier Mod4
default_border pixel 4
default_floating_border normal 2
hide_edge_borders none
focus_wrapping no
focus_follows_mouse yes
focus_on_window_activation smart
@carlwhittick
carlwhittick / uk-number-plate-validation.md
Last active April 28, 2024 01:55 — forked from danielrbradley/uk-number-plate-validation.md
Regular Expression to Validate UK Number Plates

Regular Expression to Validate UK Number Plates

Regular Expression

(?<Prefix>^[A-Z][0-9]{1,3}[A-Z]{3}$)|
(?<Suffix>^[A-Z]{3}[0-9]{1,3}[A-Z]$)|
(?<DatelessLongNumberPrefix>^[0-9]{1,4}[A-Z]{1,2}$)|
(?<DatelessShortNumberPrefix>^[0-9]{1,3}[A-Z]{1,3}$)|
(?^[A-Z]{1,2}[0-9]{1,4}$)|
# ============================================================
# PluginName v0.0.0
# http://URL
# ============================================================
# Copyright 2012 The Beans Group
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#