Writing

Analyzing My Meal Plan

Like most other colleges, Stanford offers a dining plan. While this article started out as a basic concept (compare Stanford’s dining plans) it quickly turned into something much larger.

I have -1 swipes left this week. Currently, I need to skip 15 meals.
Meals Left
Swipes Left
Swipes reset every Saturday night. Last updated 7:05:09 AM PST

The Meal Plans

Let’s start with the original point of this article: analyzing the different meal plans at Stanford (we’ll get to the graphic above in a second). Dining halls at Stanford operate on a “swipe” based system of attendance. Once you’ve swiped in for one “meal,” you can eat however much you want for that meal, until the dining hall closes. Dining halls have different hours, but most are open for 19 meals per week: breakfast, lunch, and dinner on weekdays, brunch and dinner on weekends.

Stanford offers 2 options to underclassman undergraduates:

Swipes / WeekCardinal DollarsGuest SwipesMeals / Week
19$0519
15$110516.45

All freshman start on the 15-meal per week plan, which also gives $110 in “Cardinal Dollars” which can be spent at specific on-campus locations (for example, late-night dining, the football stadium, etc.). Because of this need for late-night dining (the latest dining hall closes at 8pm) most students stay on this plan, rather than switching to the 19-meal per week plan.

15 Meals / Week Plan

Including exam week, this plan provides 165 meals over the course of 11 weeks. It also includes 5 guest swipes, and 110 "Cardinal Dollars" which can be used at late-night dining. Meals at late-night are usually around $10, so let's call that another 11 meals.
Swipes
Guest Swipes
Cardinal Dollars
This plan costs $2,797 for the fall quarter, and gives a total of 180 meals. That's a cost per meal of $15.45, and leaves us with ~16.5 meals per week.
W1
W2
W3
W4
W5
W6
W7
W8
W9
W10
W11
Missing Meals
Even if you use ALL of your guest swipes and spend $10/week on late-night, you'll still end up short 28 meals over the course of each quarter. If we buy all these meals on campus, you'll end up spending an additional $280.

The 19-meal per week plan means that students basically have unfettered access to the campus dining halls. This is nice in theory, but most students end up skipping a few meals, which makes this meal plan seem “not worth it.”

19 Meals / Week Plan

Including exam week, this plan provides 209 meals over the course of 11 weeks. It also includes 5 guest swipes, but no Cardinal Dollars.
Swipes
Guest Swipes
Cardinal Dollars
This plan costs the same price ($2,797) for the fall quarter. At 214 meals, that's a cost per meal of $13.07.
W1
W2
W3
W4
W5
W6
W7
W8
W9
W10
W11
The 19-meal plan is better even when you consider additional meals. Say you're still spending $10/week on late-night dining -- that's only $100 additional spending, saving you $190 per quarter.

A popular discussion among students is comparing the dining halls to various local restaurants, including Chipotle, In-N-Out, and buying entire meals from Trader Joe’s.

Cost Comparison

What if we compared the Stanford Meal Plan to ?
15-meal plan
19-meal plan
In-N-Out No. 1 Meal ($12.30)
Extra Meals

One Mac Mini

The top of this article includes a running count of the swipes I’ve used this week compared to how many meals are left in the week. While this seems simple, getting the data is actually fairly complex. The solution I came up with probably isn’t the best idea, but it basically works!

Stanford provides a web portal to access current meal plan information. However, it’s locked behind a login page, so I can’t access it easily with an API request. The entire site is also SSR, which means there’s not even a JSON endpoint if I wanted one.

Luckily, Stanford also offers a service called “Cardinal Key” which allows users to bypass the Stanford login by trusting a root certificate. By combining this with some sort of browser automation (for reasons I’ll get into in a minute) I figured I could bypass the login page and access my own dining plan information programatically.

The next step here was to buy a Mac Mini.

Stanford only offers Cardinal Key for Windows and Mac machines (along with mobile devices) so that eliminated most options that involve some sort of VPS. Windows seems awful for any sort of hosting task, so I decided to just buy a Mac Mini on Facebook Marketplace – I did briefly consider some sort of Mac VPS, but the cost to rent one would’ve exceeded the cost of a used mini in less than 6 weeks.

With the Mac Mini acquired (and screen sharing setup via Tailscale) my next step was to figure out how to automate interaction with the browser. Stanford’s cardinal key requires some sort of javascript (as far as I can tell) so that eliminated most non-browser options. After messing around with Playwright for a while, I decided the easiest course of action was literally running AppleScript on my Mac via the command line. Safari plays really nice with root certificates, and I can do most of the interaction with the actual website (if needed) via JavaScript.

Because this operation is fairly expensive, I decided to move the actual data-management aspect of this project onto my Hetzner VPS. I run an extremely simple web server on my Mac Mini that accepts requests via Tailscale from my VPS. When the Mac receives a request, it runs the AppleScript and returns the site HTML. Then the script on the VPS parses that data into JSON, and updates a JSON file. There’s a separate web server running on the VPS which acts as a proxy, serving the JSON file to incoming requests.

Getting my transaction history is a bit more complicated. On the dining website, the user needs to submit a form by selecting a plan from a dropdown. Once that happens, the site loads the transaction history as HTML. I’m planning on implementing this automatically at some point, but right now I don’t have enough transactions to determine how Stanford implements the pagination for the table. So, I just wrote a quick userscript that allows me to download the data as JSON. This page parses that JSON into infographics, like the one below:

Dining Hall Frequency

So far, I've visited 5 different dining halls a total of 54 times.
Stern
Arrillaga
Wilbur
Gerhard
Lagunita

Honestly, this entire process is overcomplicated, but as far as I can tell, it works! I expect it to break every 90 days when the Duo (our 2fa solution) cookie expires, but that’s good enough for me.

Takeaways

My main takeaway here is just “wow, it’s so cool to have this data.” A few days ago, Stanford sent a survey to all students, of which the first question was “list your six closest friends.” Even though that sort of data isn’t accessible to me, I find the idea of assembling a social graph so fascinating, just because of the sort of things you could do with it. The same applies here – I’m very interested in creating new graphics and presenting this dining hall data in interesting ways going forward. When do I tend to eat breakfast, lunch, or dinner? What meal do I skip the most? What dining halls do I visit on which days? Making those graphics, even if it has no larger impact on my life, has some inherent value to me. They’re art – I don’t have to justify it.