New blog post 2024-07-01

This commit is contained in:
KyleDOT 2024-07-01 16:42:44 +09:30
parent f81e6bb031
commit 75b1548122
4 changed files with 2372 additions and 2 deletions

View File

@ -0,0 +1,57 @@
<!DOCTYPE html>
<html>
<head>
<title>Kyle's Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="blog_head">
<h1>Niche Number Plates</h1>
<h3>2024-07-01</h3>
</div>
<div class="blog_body">
<p>I never really took note of vehicle number plates until I started driving and I started at an interesting time, just as the local government ran out of their old pattern going from 000-000 to 999-999, with a new pattern starting CA-00-AA, next would be AB, AC, etc up to ZZ, then 01-AA, my first car was issued CA-25-EV, my second car was CF-07-KR but have changed to a personalised plate SUBUWU. People that I've talked to find the large number of personalised number plates interesting, highlights I've personally seen are 3-14R8 (Pirate), OISEAU, and 404FUEL on an electric car.</p>
<p>Here I have a niche of a niche, with people replacing numbers and letters to make personalised plates I wondered if one could have a 'hidden' personalisation, one that looks like a normal issued plate but forms a word. I quickly discovered that all plates from CA-00-AA to CZ-99-ZZ are unsurprisingly already reserved, this only pivioted my idea to just seeing what was possible.</p>
<p>First step was to get a list of all 6 letter words begining with C, easily done with a quick search thanks to scrabble and crossword solvers, which gave me 1756 words. Next I split out the two middle letters and converted them to numbers as per the chart I came up with based off typical '1337 speak'</p>
<ul>
<li>A to 4</li>
<li>B to 8</li>
<li>E to 3</li>
<li>G to 6</li>
<li>H to 4</li>
<li>I to 1</li>
<li>J to 1</li>
<li>L to 1</li>
<li>O to 0</li>
<li>S to 5</li>
<li>T to 7</li>
<li>Z to 2</li>
</ul>
<p>Thankfully the first word in my dictionary works, Caaing, a Scots word for a Pilot Whale. Using the conversion we get CA-41-NG, I run this conversion for all 1756 words converting any non-matching letter to number conversions into nothing and filter out any results that are shorter than 6 characters long. This comes out to 519 converted words, lots like Caaing aren't very interesting, unless of course you're a Scotish marine biologist who wants a remote Australian personalised number plate disguised as a standard issue plate. So with that I'll give you a send off with my personal picks and a link to the full list.</p>
<ul>
<li>CA-88-IE (Cabbie. <i>Informal,</i> a taxi driver)</li>
<li>CA-35-AR (Caesar. a title used by Roman emperors)</li>
<li>CA-57-LE (Castle. a large building, typically of the medieval period, fortified against attack with thick walls, battlements, towers, and in many cases a moat)</li>
<li>CE-51-UM (Cesium. chemical element of atomic number 55)</li>
<li>CH-45-ED (Chased. <i>Past-tense,</i> pursue in order to catch or catch up with)</li>
<li>CH-45-ER (Chaser. a person or thing that pursues someone or something)</li>
<li>CH-45-ES (Chases. <i>Plural,</i> pursue in order to catch or catch up with)</li>
<li>CL-45-SY (Classy. stylish and sophisticated)</li>
<li>CO-45-TS (Coasts. <i>Plural,</i> the part of the land adjoining or near the sea)</li>
<li>CO-17-US (Coitus. sexual intercourse)</li>
<li>CR-34-KY (Creaky. making or liable to make a creaking sound when being moved or when pressure is applied)</li>
<li>CR-33-PY (Creepy. causing an unpleasant feeling of fear or unease)</li>
<li>CU-57-OM (Custom. made or done to order; custom-made)</li>
<li>CU-70-FF (Cutoff. an act of stopping or interrupting the supply of something)</li>
<li>CY-80-RG (Cyborg. a fictional or hypothetical person whose physical abilities are extended beyond normal human limitations by mechanical elements built into the body)</li>
</ul>
<p><a href="https://kyledot.net/blog/2024-07-01_Plates_list">Full lists</a></p>
<p>Sorry after going through again I couldn't stay away and bring it back to why I delved into making the list, as of writing the newest plate I have seen started with CF-71 which is getting close to the first CG plates and means 110 of the 519 words in my list are out in the wild.
</div>
</div>
<footer>
<p><a href="https://kyledot.net/blog/home">Return to blog home</a></p>
<p>Made by Kyle - Last updated: 2024-07-01</p>
</footer>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -10,6 +10,7 @@
<div class="blogs_date">
<h2>By Date</h2>
<p><a href="https://kyledot.net/blog/2024-06-07_MFA-i">2024-06-07 MFA & Randomness - Part I</a></p>
<p><a href="https://kyledot.net/blog/2024-07-01_Plates">2024-07-01 Niche Number Plates</a></p>
</div>
<div class="blogs_theme">
<h2>By Category</h2>
@ -17,11 +18,12 @@
<p><a href="https://kyledot.net/blog/2024-06-07_MFA-i">2024-06-07 MFA & Randomness - Part I</a></p>
<h3>Life</h3>
<h3>Other</h3>
<p><a href="https://kyledot.net/blog/2024-07-01_Plates">2024-07-01 Niche Number Plates</a></p>
</div>
</div>
<footer>
<p><a href="https://kyledot.net">Return to home</a></p>
<p>Made by Kyle - Last updated: 2024-06-16</p>
<p>Made by Kyle - Last updated: 2024-07-01</p>
</footer>
</body>
</html>

View File

@ -13,6 +13,8 @@ a {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: center;}
p {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: left;padding-left: 100px;}
h2 {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: left;padding-left: 100px}
h3 {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: left;padding-left: 100px}
ul {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: left;padding-left: 100px}
ol {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: left;padding-left: 100px}
}
.blog_date { grid-area: blog_date; }
.blog_theme { grid-area: blog_theme; }
@ -22,9 +24,11 @@ a {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: center;}
}
.blog_body {
p {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: left;padding-left: 20%;padding-right: 20%;}
ul {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: left;padding-left: 20%;padding-right: 20%;}
ol {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: left;padding-left: 20%;padding-right: 20%;}
}
.img_center {
display: block;
margin-left: auto;
margin-right: auto;
}
}