snapshot: preserve central wiki state 2026-08-15 (7 modified + 1 new file)

This commit is contained in:
Tony0410
2026-08-15 22:11:30 +08:00
commit 92e8028bb8
71 changed files with 9897 additions and 0 deletions
+87
View File
@@ -0,0 +1,87 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Uber Eats Monthly Spend — July 2026</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f8f9fa; color: #1a1a2e; padding: 40px 20px; }
.card { max-width: 640px; margin: 0 auto; background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.icon { font-size: 36px; line-height: 1; }
h1 { font-size: 22px; font-weight: 700; color: #1a1a2e; }
.subtitle { font-size: 13px; color: #6b7280; margin-top: 2px; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 28px; }
.stat { flex: 1; background: #f3f4f6; border-radius: 14px; padding: 16px; text-align: center; }
.stat-value { font-size: 22px; font-weight: 700; color: #1a1a2e; }
.stat-label { font-size: 11px; color: #6b7280; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat.up .stat-value { color: #dc2626; }
.section-title { font-size: 14px; font-weight: 600; color: #374151; margin: 24px 0 12px; padding-bottom: 8px; border-bottom: 1px solid #e5e7eb; }
.order-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f3f4f6; }
.order-item:last-child { border-bottom: none; }
.order-left { display: flex; flex-direction: column; }
.order-restaurant { font-size: 14px; font-weight: 600; color: #1a1a2e; }
.order-date { font-size: 12px; color: #9ca3af; }
.order-amount { font-size: 15px; font-weight: 700; color: #1a1a2e; }
.freq-item { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.freq-name { color: #1a1a2e; }
.freq-count { color: #6b7280; font-weight: 500; }
.vs { font-size: 12px; color: #9ca3af; padding: 8px 0 0; }
.vs span { color: #374151; font-weight: 500; }
.footer { font-size: 11px; color: #9ca3af; margin-top: 24px; text-align: center; }
</style>
</head>
<body>
<div class="card">
<div class="header">
<div class="icon">🍔</div>
<div>
<h1>Uber Eats — July 2026</h1>
<div class="subtitle">Monthly spend report &bull; 01 Aug 2026</div>
</div>
</div>
<div class="summary-row">
<div class="stat">
<div class="stat-value">$264.51</div>
<div class="stat-label">Total Spend</div>
</div>
<div class="stat">
<div class="stat-value">11</div>
<div class="stat-label">Orders</div>
</div>
<div class="stat">
<div class="stat-value">$24.05</div>
<div class="stat-label">Avg/Order</div>
</div>
<div class="stat up">
<div class="stat-value">+124%</div>
<div class="stat-label">vs 2026-06</div>
</div>
</div>
<div class="section-title">🍽️ Top 5 Most Expensive</div>
<div class="order-item"><div class="order-left"><span class="order-restaurant">Coles</span><span class="order-date">2026-07-11 17:02</span></div><div class="order-amount">$40.73</div></div>
<div class="order-item"><div class="order-left"><span class="order-restaurant">Foodies Market IGA</span><span class="order-date">2026-07-09 15:42</span></div><div class="order-amount">$36.35</div></div>
<div class="order-item"><div class="order-left"><span class="order-restaurant">IGA Grocery</span><span class="order-date">2026-07-23 20:31</span></div><div class="order-amount">$34.38</div></div>
<div class="order-item"><div class="order-left"><span class="order-restaurant">806 Noodle House</span><span class="order-date">2026-07-06 14:19</span></div><div class="order-amount">$24.66</div></div>
<div class="order-item"><div class="order-left"><span class="order-restaurant">Lepak Kopitiam Vic Park, also known as Yum Yum Tree Vic Park</span><span class="order-date">2026-07-09 12:56</span></div><div class="order-amount">$24.28</div></div>
<div class="section-title">🔄 Most Frequented</div>
<div class="freq-item"><span class="freq-name">Hungry Jacks</span><span class="freq-count">3 orders</span></div>
<div class="freq-item"><span class="freq-name">Angelo Street Market</span><span class="freq-count">2 orders</span></div>
<div class="freq-item"><span class="freq-name">806 Noodle House</span><span class="freq-count">2 orders</span></div>
<div class="freq-item"><span class="freq-name">IGA Grocery</span><span class="freq-count">1 order</span></div>
<div class="freq-item"><span class="freq-name">Coles</span><span class="freq-count">1 order</span></div>
<div class="freq-item"><span class="freq-name">Foodies Market IGA</span><span class="freq-count">1 order</span></div>
<div class="freq-item"><span class="freq-name">Lepak Kopitiam Vic Park</span><span class="freq-count">1 order</span></div>
<div class="vs">vs 2026-06: <span>+124%</span> in spend (+$146.46) &bull; orders went from 3 to 11</div>
<div class="footer">Generated from Camofox authenticated Uber Eats session</div>
</div>
</body>
</html>
+60
View File
@@ -0,0 +1,60 @@
# 🍔 Uber Eats Monthly Spend — 2026-07
Generated: 2026-08-01T03:30:00+08:00
Source: Camofox authenticated Uber Eats session (profile anthony) via getPastOrdersV1 API
## Summary
| Metric | Value |
|---|---|
| Total Spend | $264.51 AUD |
| Total Orders | 11 |
| Avg per Order | $24.05 |
| Most Expensive | $40.73 |
| Least Expensive | $0.00 |
## vs Previous Month (2026-06)
| | This Month | Last Month | Change |
|---|---|---|---|
| Spend | $264.51 | $118.05 | +$146.46 |
| Orders | 11 | 3 | +8 |
| Avg/Order | $24.05 | $39.35 | $-15.30 |
## Top 5 Most Expensive Orders
| # | Date | Restaurant | Amount |
|---|---|---|---|
| 1 | 2026-07-11 17:02 | Coles | $40.73 |
| 2 | 2026-07-09 15:42 | Foodies Market IGA | $36.35 |
| 3 | 2026-07-23 20:31 | IGA Grocery | $34.38 |
| 4 | 2026-07-06 14:19 | 806 Noodle House | $24.66 |
| 5 | 2026-07-09 12:56 | Lepak Kopitiam Vic Park, also known as Yum Yum Tree Vic Park | $24.28 |
## Most Frequented Restaurants
| Restaurant | Orders |
|---|---|
| Hungry Jacks | 3 |
| Angelo Street Market | 2 |
| 806 Noodle House | 2 |
| IGA Grocery | 1 |
| Coles | 1 |
| Foodies Market IGA | 1 |
| Lepak Kopitiam Vic Park | 1 |
## All Orders
| Date | Time | Restaurant | Amount |
|---|---|---|---|
| 2026-07-03 | 19:16 | Hungry Jacks | $21.11 |
| 2026-07-06 | 14:19 | 806 Noodle House | $24.66 |
| 2026-07-08 | 14:00 | Angelo Street Market | $24.07 |
| 2026-07-09 | 12:56 | Lepak Kopitiam Vic Park, also known as Yum Yum Tree Vic Park | $24.28 |
| 2026-07-09 | 15:42 | Foodies Market IGA | $36.35 |
| 2026-07-11 | 17:02 | Coles | $40.73 |
| 2026-07-14 | 14:35 | Hungry Jacks | $11.20 |
| 2026-07-16 | 15:28 | 806 Noodle House | $23.66 |
| 2026-07-20 | 14:58 | Angelo Street Market | $24.07 |
| 2026-07-23 | 20:31 | IGA Grocery | $34.38 |
| 2026-07-25 | 12:58 | Hungry Jacks | $0.00 |
+31
View File
@@ -0,0 +1,31 @@
---
title: Uber Eats Monthly Reports
type: collection
status: active
created: 2026-08-02
updated: 2026-08-02
verified_on: 2026-08-02
confidence: high
tags: [reports, uber-eats, finance]
---
# Uber Eats Monthly Reports
Monthly spend reports generated from Camofox-authenticated Uber Eats sessions.
## How it works
- Cron job runs on the 1st of each month at 02:00 AWST
- Opens a Camofox tab (profile `anthony`) and navigates to `ubereats.com/orders`
- Captures the `getPastOrdersV1` API response
- Saves JSON to `~/.hermes/uber_eats_report.json`
- Generates HTML report + wiki markdown page
- Delivers a formatted Telegram digest
## Reports
| Month | Spend | Orders | Avg/Order | Report |
|---|---|---|---|---|
| 2026-07 | $264.51 | 11 | $24.05 | [[reports/uber-eats/2026-07]] |
## Related
- [[systems/scheduled-tasks]]