Migrate to jekyll for static gen

This commit is contained in:
Andrew Tomaka 2023-02-05 21:07:24 -05:00
parent 8280d4fcab
commit 0cc7d7fe42
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
27 changed files with 1424 additions and 100 deletions

View file

@ -0,0 +1,14 @@
---
layout: post
title: Serious Regular Expressions
tag:
- humor
---
```
$n = '[0-9]';
$reg = '/^[AZ]'.$n.$n.$n.$n.$n.$n.$n.$n.'$/';
if(preg_match($reg, $id)) {
// ...
}
```