]> gitweb.michael.orlitzky.com - charm-bypass.git/blobdiff - index.html.in
index.html.in: replace the hint with a link to my introduction
[charm-bypass.git] / index.html.in
index ff398ef97ba5c9266fe0d4a889ac7a9f0fc53fcb..a8bb47dedf0d40c46884887f6c31ac3440975a5a 100644 (file)
@@ -8,7 +8,7 @@
           href="data:image/svg+xml;base64,@FAVICON@" />
 
     <title>
-      CharmBypass: that transit equity y'all
+      CharmBypass: got that transit equity
     </title>
 
     <style>
   <body>
     <div id="menu">
       <h1>CharmBypass</h1>
-      <h2>that transit equity y'all</h2>
+      <p><strong>got that <em>transit equity</em></strong></p>
 
-      <p>
-        <em>Hint:</em> If they start checking it, the daily security
-        code stays the same all day and is the same on a $2 bus ticket
-        as it is on a $9 MARC ticket. It's also the same on every phone.
-      </p>
+      <ol>
+        <li>
+          <a href="https://michael.orlitzky.com/articles/charmbypass_pt._1%3A_introducing_charmbypass.xhtml">
+            Introduction
+          </a>
+        </li>
+      </ol>
 
       <form>
         <fieldset>
        */
       function compute_marc_zone(src, dest) {
 
-        /* Sorted on the first component, then the second */
+        /* Sorted on the first component, then the second.
+         *
+         * Key:
+         *
+         *   $6.00 => 1
+         *   $7.00 => 2
+         *   $8.00 => 3
+         *   $9.00 => 4
+         */
         const zone_map = {
           BAL_BWE: 2,
           BAL_BWI: 1,
           BWE_SEB: 1,
           BWE_WAS: 2,
           BWE_WBL: 2,
+          BWI_SEB: 2,
           BWI_WAS: 3,
-          BWI_WBL: 1
+          BWI_WBL: 1,
+          SEB_WAS: 1,
+          SEB_WBL: 3,
+          WAS_WBL: 4
         };
 
         /* Forward direction key for zone_map */