Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

papers/jeffrey-platter: ship public dashboard at papers.a.c/jeffrey/

457-row sortable+searchable gallery of confirmed-jeffrey IG selfies from
@whistlegraph, with face-match scores and per-image GPT-4o descriptions.
Thumbnails live on the existing assets CDN under jeffreys/whistlegraph/.

- system/public/papers.aesthetic.computer/jeffrey/index.html — static
dashboard (search, sort by date or face-match, domain filter, lightbox)
- system/public/papers.aesthetic.computer/jeffrey/manifest.json — slim
per-row schema with CDN thumb URLs (regenerated by the builder)
- portraits/jeffrey/bin/build-thumbnails.mjs — sharp-based 256px JPEG
builder, reads jeffrey-described.jsonl, resolves sharp from
oven/node_modules so it doesn't pull a root-level dep
- portraits/jeffrey/bin/generate-neo.py — adds --prompt/--name flags for
one-off custom gens, and branches around the gpt-image-2 rejection of
the input_fidelity parameter
- papers/jeffrey-platter/README.md — adds "Hosted dashboard" section with
refresh instructions

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+11320 -3
+13
papers/jeffrey-platter/README.md
··· 41 41 42 42 ## 2. External (assets CDN + sites) 43 43 44 + ### Hosted dashboard — `papers.aesthetic.computer/jeffrey/` 45 + 46 + Public sortable/filterable gallery of the 457 confirmed-jeffrey IG selfies from `@whistlegraph` (face-matched against the AV shoot, described per-image by GPT-4o). Lives at: 47 + 48 + - **Dashboard:** https://papers.aesthetic.computer/jeffrey/ (static `index.html`) 49 + - **Source HTML:** [system/public/papers.aesthetic.computer/jeffrey/index.html](../../system/public/papers.aesthetic.computer/jeffrey/index.html) 50 + - **Manifest JSON:** [system/public/papers.aesthetic.computer/jeffrey/manifest.json](../../system/public/papers.aesthetic.computer/jeffrey/manifest.json) (slim per-row schema with CDN thumb URL) 51 + - **Thumbnails:** `assets.aesthetic.computer/jeffreys/whistlegraph/<shortcode>.jpg` (256px, ~30 KB each, ~5 MB total) 52 + - **Build script:** [`portraits/jeffrey/bin/build-thumbnails.mjs`](../../portraits/jeffrey/bin/build-thumbnails.mjs) — reads `portraits/jeffrey/curated/jeffrey-described.jsonl`, generates thumbs into `system/public/assets/jeffreys/whistlegraph/`, and rewrites `manifest.json`. 53 + - **Refresh:** `node portraits/jeffrey/bin/build-thumbnails.mjs && npm run assets:sync:up` 54 + 55 + Page is **public** — the source images were already public on `instagram.com/whistlegraph/`, and the GPT-4o descriptive layer is treated as part of the public AC research record. 56 + 44 57 ### `assets.aesthetic.computer/jeffreys/` 45 58 46 59 Hosted on Digital Ocean Spaces. Sync via `npm run assets:sync:down` / `npm run assets:sync:up` (see [CLAUDE.md](../../CLAUDE.md)).
+130
portraits/jeffrey/bin/build-thumbnails.mjs
··· 1 + #!/usr/bin/env node 2 + // Generate 256px thumbnails for confirmed-jeffrey IG selfies and emit a slim 3 + // public manifest.json for the papers.aesthetic.computer/jeffrey/ dashboard. 4 + // 5 + // Reads: portraits/jeffrey/curated/jeffrey-described.jsonl 6 + // Writes: system/public/assets/jeffreys/whistlegraph/<shortcode>.jpg (sync to CDN) 7 + // system/public/papers.aesthetic.computer/jeffrey/manifest.json 8 + // 9 + // Usage: 10 + // node portraits/jeffrey/bin/build-thumbnails.mjs # only confirmed (default) 11 + // node portraits/jeffrey/bin/build-thumbnails.mjs --all # include unconfirmed described rows 12 + // node portraits/jeffrey/bin/build-thumbnails.mjs --force # re-render even if thumb exists 13 + // 14 + // Sharp is resolved out of oven/node_modules so this script can live with the 15 + // rest of the portraits/jeffrey/bin/ pipeline without adding a dependency at 16 + // the repo root. 17 + 18 + import { createRequire } from "module"; 19 + import { readFileSync, writeFileSync, mkdirSync, existsSync, statSync } from "fs"; 20 + import { dirname, join, resolve } from "path"; 21 + import { fileURLToPath } from "url"; 22 + 23 + const here = dirname(fileURLToPath(import.meta.url)); 24 + const REPO = resolve(here, "..", "..", ".."); 25 + const require = createRequire(import.meta.url); 26 + 27 + let sharp; 28 + try { 29 + sharp = require(join(REPO, "oven", "node_modules", "sharp")); 30 + } catch (e) { 31 + console.error("could not load sharp from oven/node_modules:", e.message); 32 + console.error("run `cd oven && npm install` first"); 33 + process.exit(1); 34 + } 35 + 36 + const SRC_DIR = join(REPO, "portraits", "jeffrey", "ig-archive", "whistlegraph"); 37 + const DESCRIBED = join(REPO, "portraits", "jeffrey", "curated", "jeffrey-described.jsonl"); 38 + const THUMB_DIR = join(REPO, "system", "public", "assets", "jeffreys", "whistlegraph"); 39 + const MANIFEST_OUT = join( 40 + REPO, "system", "public", "papers.aesthetic.computer", "jeffrey", "manifest.json", 41 + ); 42 + const CDN_PREFIX = "https://assets.aesthetic.computer/jeffreys/whistlegraph"; 43 + 44 + const args = process.argv.slice(2); 45 + const includeAll = args.includes("--all"); 46 + const force = args.includes("--force"); 47 + 48 + mkdirSync(THUMB_DIR, { recursive: true }); 49 + mkdirSync(dirname(MANIFEST_OUT), { recursive: true }); 50 + 51 + const rows = readFileSync(DESCRIBED, "utf8") 52 + .split("\n") 53 + .filter(Boolean) 54 + .map((line) => JSON.parse(line)) 55 + .filter((row) => includeAll || row.is_jeffrey_confirmed === true); 56 + 57 + console.log(`source rows: ${rows.length} (${includeAll ? "all described" : "confirmed only"})`); 58 + 59 + let made = 0, skipped = 0, missing = 0, failed = 0; 60 + const manifestRows = []; 61 + 62 + for (const row of rows) { 63 + const src = join(SRC_DIR, row.rel_path); 64 + const thumb = join(THUMB_DIR, `${row.shortcode}.jpg`); 65 + 66 + if (!existsSync(src)) { 67 + missing++; 68 + continue; 69 + } 70 + 71 + if (existsSync(thumb) && !force && statSync(thumb).size > 0) { 72 + skipped++; 73 + } else { 74 + try { 75 + await sharp(src) 76 + .rotate() 77 + .resize(256, 256, { fit: "inside", withoutEnlargement: true }) 78 + .jpeg({ quality: 80, mozjpeg: true }) 79 + .toFile(thumb); 80 + made++; 81 + } catch (e) { 82 + console.error(` fail ${row.shortcode}: ${e.message}`); 83 + failed++; 84 + continue; 85 + } 86 + } 87 + 88 + manifestRows.push({ 89 + shortcode: row.shortcode, 90 + date: row.date, 91 + similarity: Number((row.match_similarity ?? 0).toFixed(4)), 92 + confidence: row.confidence ?? null, 93 + confirmed: !!row.is_jeffrey_confirmed, 94 + thumb: `${CDN_PREFIX}/${row.shortcode}.jpg`, 95 + expression: row.subject?.expression ?? null, 96 + pose: row.subject?.pose ?? null, 97 + description: row.subject?.description ?? null, 98 + location: row.environment?.location ?? null, 99 + style: row.photography?.style ?? null, 100 + framing: row.photography?.framing ?? null, 101 + domain: row.domain ?? null, 102 + tags: row.tags ?? [], 103 + caption: row.caption_hint ?? null, 104 + n_other_people: row.n_other_people ?? 0, 105 + }); 106 + } 107 + 108 + manifestRows.sort((a, b) => (a.date < b.date ? 1 : -1)); 109 + 110 + writeFileSync( 111 + MANIFEST_OUT, 112 + JSON.stringify( 113 + { 114 + generated_at: new Date().toISOString(), 115 + source: "portraits/jeffrey/curated/jeffrey-described.jsonl", 116 + cdn_prefix: CDN_PREFIX, 117 + counts: { 118 + rows: manifestRows.length, 119 + confirmed: manifestRows.filter((r) => r.confirmed).length, 120 + }, 121 + rows: manifestRows, 122 + }, 123 + null, 124 + 2, 125 + ), 126 + ); 127 + 128 + console.log(`thumbs: made=${made} skipped=${skipped} failed=${failed} missing-source=${missing}`); 129 + console.log(`manifest: ${manifestRows.length} rows → ${MANIFEST_OUT}`); 130 + console.log(`next: npm run assets:sync:up`);
+13 -3
portraits/jeffrey/bin/generate-neo.py
··· 192 192 p.add_argument("--input-fidelity", default="high", choices=["low", "high"], 193 193 help="how closely to preserve identity from refs; high = stronger") 194 194 p.add_argument("--variant", choices=[v["name"] for v in VARIANTS] + ["all"], default="all") 195 + p.add_argument("--prompt", default=None, 196 + help="custom prompt; overrides --variant for one-off gens") 197 + p.add_argument("--name", default="neo-jeffrey-custom", 198 + help="output filename stem when --prompt is used") 195 199 p.add_argument("--n", type=int, default=1, help="variants per prompt") 196 200 p.add_argument("--model", default="gpt-image-2", 197 201 help="gpt-image-2 (default, latest) | gpt-image-1.5 | gpt-image-1") ··· 210 214 out_dir = Path(args.out).expanduser().resolve() 211 215 out_dir.mkdir(parents=True, exist_ok=True) 212 216 213 - selected = VARIANTS if args.variant == "all" else [v for v in VARIANTS if v["name"] == args.variant] 217 + if args.prompt: 218 + selected = [{"name": args.name, "prompt": args.prompt}] 219 + else: 220 + selected = VARIANTS if args.variant == "all" else [v for v in VARIANTS if v["name"] == args.variant] 214 221 timestamp = datetime.now().strftime("%Y-%m-%d_%H%M%S") 215 222 216 223 client = OpenAI(api_key=load_openai_key()) ··· 224 231 try: 225 232 files = [open(r, "rb") for r in refs] 226 233 try: 227 - response = client.images.edit( 234 + edit_kwargs = dict( 228 235 model=args.model, 229 236 image=files, 230 237 prompt=variant["prompt"], 231 238 size=args.size, 232 239 quality=args.quality, 233 - input_fidelity=args.input_fidelity, 234 240 n=args.n, 235 241 ) 242 + # input_fidelity is gpt-image-1 only; gpt-image-2 rejects it. 243 + if not args.model.startswith("gpt-image-2"): 244 + edit_kwargs["input_fidelity"] = args.input_fidelity 245 + response = client.images.edit(**edit_kwargs) 236 246 finally: 237 247 for f in files: 238 248 f.close()
+311
system/public/papers.aesthetic.computer/jeffrey/index.html
··· 1 + <!DOCTYPE html> 2 + <html lang="en"> 3 + <head> 4 + <meta charset="UTF-8"> 5 + <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 + <title>jeffrey · platter</title> 7 + <meta name="description" content="An index of Jeffrey Alan Scudder's confirmed-self IG selfie corpus from @whistlegraph — 457 photos with face-match scores and per-image GPT-4o descriptions."> 8 + <link rel="icon" href="https://aesthetic.computer/icon/128x128/prompt.png" type="image/png"> 9 + <link rel="stylesheet" href="https://aesthetic.computer/type/webfonts/berkeley-mono-variable.css"> 10 + <style> 11 + :root { 12 + --bg: #111; --bg2: #1a1a1a; --fg: #ddd; --fg2: #888; 13 + --accent: #ff6b9d; --accent2: #4ecdc4; --gold: #ffd93d; 14 + --border: #333; --hover: #222; 15 + } 16 + * { margin: 0; padding: 0; box-sizing: border-box; } 17 + html, body { background: var(--bg); color: var(--fg); } 18 + body { 19 + font-family: 'Berkeley Mono Variable', ui-monospace, monospace; 20 + font-size: 13px; line-height: 1.4; 21 + min-height: 100vh; 22 + } 23 + a { color: var(--accent2); text-decoration: none; } 24 + a:hover { color: var(--accent); text-decoration: underline; } 25 + 26 + header { 27 + padding: 16px 12px 12px; 28 + border-bottom: 1px solid var(--border); 29 + position: sticky; top: 0; background: var(--bg); z-index: 10; 30 + } 31 + h1 { 32 + font-size: 18px; font-weight: normal; letter-spacing: 4px; 33 + margin-bottom: 4px; 34 + } 35 + h1 .accent { color: var(--accent); } 36 + .sub { font-size: 11px; color: var(--fg2); margin-bottom: 10px; } 37 + .controls { 38 + display: flex; gap: 8px; flex-wrap: wrap; align-items: center; 39 + } 40 + .controls input, .controls select { 41 + font-family: inherit; font-size: 12px; padding: 4px 8px; 42 + background: var(--bg2); color: var(--fg); 43 + border: 1px solid var(--border); outline: none; 44 + min-width: 180px; 45 + } 46 + .controls input:focus, .controls select:focus { border-color: var(--accent2); } 47 + .controls .stat { 48 + font-size: 11px; color: var(--fg2); 49 + margin-left: auto; 50 + font-variant-numeric: tabular-nums; 51 + } 52 + .controls .stat b { color: var(--fg); font-weight: normal; } 53 + 54 + main { 55 + padding: 12px; 56 + display: grid; 57 + grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 58 + gap: 10px; 59 + } 60 + .card { 61 + background: var(--bg2); border: 1px solid var(--border); 62 + overflow: hidden; cursor: pointer; 63 + display: flex; flex-direction: column; 64 + transition: border-color 0.1s, transform 0.1s; 65 + } 66 + .card:hover { border-color: var(--accent2); } 67 + .card:active { transform: scale(0.99); } 68 + .thumb-wrap { 69 + width: 100%; aspect-ratio: 1; background: #000; 70 + overflow: hidden; position: relative; 71 + } 72 + .thumb-wrap img { 73 + width: 100%; height: 100%; object-fit: cover; display: block; 74 + background: #222; 75 + } 76 + .thumb-wrap .sim { 77 + position: absolute; top: 4px; right: 4px; 78 + font-size: 10px; padding: 2px 5px; 79 + background: rgba(0,0,0,0.7); color: var(--accent2); 80 + font-variant-numeric: tabular-nums; 81 + } 82 + .meta { 83 + padding: 6px 8px; font-size: 11px; color: var(--fg2); 84 + display: flex; flex-direction: column; gap: 2px; 85 + } 86 + .meta .date { color: var(--fg); font-variant-numeric: tabular-nums; } 87 + .meta .caption { 88 + color: var(--fg2); 89 + display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; 90 + overflow: hidden; 91 + } 92 + .meta .tags { color: var(--accent2); font-size: 10px; opacity: 0.8; } 93 + 94 + #empty { padding: 40px; text-align: center; color: var(--fg2); } 95 + #loading { padding: 40px; text-align: center; color: var(--fg2); } 96 + 97 + /* lightbox */ 98 + #lightbox { 99 + display: none; position: fixed; inset: 0; 100 + background: rgba(0,0,0,0.95); z-index: 100; 101 + padding: 20px; overflow-y: auto; 102 + } 103 + #lightbox.open { display: flex; align-items: flex-start; justify-content: center; } 104 + .lb-inner { 105 + max-width: 900px; width: 100%; 106 + display: grid; grid-template-columns: 1fr; gap: 16px; 107 + } 108 + @media (min-width: 700px) { 109 + .lb-inner { grid-template-columns: 360px 1fr; } 110 + } 111 + .lb-img { 112 + background: #000; aspect-ratio: 1; 113 + width: 100%; max-width: 360px; 114 + } 115 + .lb-img img { width: 100%; height: 100%; object-fit: contain; } 116 + .lb-info { 117 + font-size: 13px; line-height: 1.5; 118 + display: flex; flex-direction: column; gap: 10px; 119 + } 120 + .lb-info h2 { 121 + font-size: 14px; font-weight: normal; letter-spacing: 2px; 122 + color: var(--accent); margin-bottom: 4px; 123 + } 124 + .lb-row { 125 + display: grid; grid-template-columns: 110px 1fr; gap: 8px; 126 + font-size: 12px; 127 + } 128 + .lb-row .k { color: var(--fg2); text-transform: uppercase; font-size: 10px; letter-spacing: 1px; padding-top: 1px; } 129 + .lb-row .v { color: var(--fg); } 130 + .lb-row .v.tag-list { color: var(--accent2); } 131 + .lb-close { 132 + position: fixed; top: 12px; right: 16px; 133 + font-family: inherit; background: none; border: 1px solid var(--border); 134 + color: var(--fg); padding: 4px 10px; cursor: pointer; 135 + } 136 + .lb-close:hover { border-color: var(--accent); color: var(--accent); } 137 + .lb-ig-link { 138 + font-size: 11px; color: var(--accent2); margin-top: 4px; 139 + } 140 + 141 + footer { 142 + padding: 20px 12px; text-align: center; font-size: 11px; 143 + color: var(--fg2); border-top: 1px solid var(--border); 144 + margin-top: 20px; 145 + } 146 + footer a { color: var(--fg2); } 147 + footer a:hover { color: var(--accent2); } 148 + </style> 149 + </head> 150 + <body> 151 + 152 + <header> 153 + <h1>jeffrey<span class="accent">·</span>platter</h1> 154 + <div class="sub"> 155 + confirmed-self selfie corpus from 156 + <a href="https://www.instagram.com/whistlegraph/" target="_blank">@whistlegraph</a>, 157 + matched against the AV studio shoot, described per-image by GPT-4o 158 + </div> 159 + <div class="controls"> 160 + <input id="search" type="search" placeholder="search descriptions, tags, locations…"> 161 + <select id="sort"> 162 + <option value="date-desc">newest first</option> 163 + <option value="date-asc">oldest first</option> 164 + <option value="sim-desc">highest face-match</option> 165 + </select> 166 + <select id="domain"> 167 + <option value="">all domains</option> 168 + </select> 169 + <span class="stat" id="stat"></span> 170 + </div> 171 + </header> 172 + 173 + <main id="grid"> 174 + <div id="loading">loading manifest…</div> 175 + </main> 176 + 177 + <div id="lightbox"> 178 + <button class="lb-close" id="lbClose">close ✕</button> 179 + <div class="lb-inner" id="lbBody"></div> 180 + </div> 181 + 182 + <footer> 183 + <a href="https://github.com/digitpain/aesthetic-computer/blob/main/papers/jeffrey-platter/README.md">jeffrey-platter README</a> 184 + &nbsp;·&nbsp; 185 + <a href="../">papers.aesthetic.computer</a> 186 + </footer> 187 + 188 + <script type="module"> 189 + const $ = (id) => document.getElementById(id); 190 + const grid = $("grid"); 191 + const search = $("search"); 192 + const sortSel = $("sort"); 193 + const domainSel = $("domain"); 194 + const stat = $("stat"); 195 + const lightbox = $("lightbox"); 196 + const lbBody = $("lbBody"); 197 + 198 + let rows = []; 199 + 200 + (async () => { 201 + try { 202 + const res = await fetch("./manifest.json", { cache: "no-store" }); 203 + if (!res.ok) throw new Error(`${res.status} ${res.statusText}`); 204 + const data = await res.json(); 205 + rows = data.rows; 206 + populateDomains(rows); 207 + render(); 208 + } catch (e) { 209 + grid.innerHTML = `<div id="empty">failed to load manifest: ${e.message}</div>`; 210 + } 211 + })(); 212 + 213 + function populateDomains(rs) { 214 + const domains = [...new Set(rs.map((r) => r.domain).filter(Boolean))].sort(); 215 + for (const d of domains) { 216 + const opt = document.createElement("option"); 217 + opt.value = d; opt.textContent = d; 218 + domainSel.appendChild(opt); 219 + } 220 + } 221 + 222 + function filterAndSort() { 223 + const q = search.value.trim().toLowerCase(); 224 + const dom = domainSel.value; 225 + let out = rows; 226 + if (dom) out = out.filter((r) => r.domain === dom); 227 + if (q) { 228 + out = out.filter((r) => { 229 + const hay = [ 230 + r.description, r.expression, r.pose, r.location, r.caption, 231 + r.style, r.framing, r.domain, 232 + ...(r.tags || []), 233 + ].filter(Boolean).join(" ").toLowerCase(); 234 + return hay.includes(q); 235 + }); 236 + } 237 + const mode = sortSel.value; 238 + if (mode === "date-asc") out = [...out].sort((a, b) => a.date.localeCompare(b.date)); 239 + else if (mode === "sim-desc") out = [...out].sort((a, b) => b.similarity - a.similarity); 240 + else out = [...out].sort((a, b) => b.date.localeCompare(a.date)); 241 + return out; 242 + } 243 + 244 + function render() { 245 + const list = filterAndSort(); 246 + stat.innerHTML = `<b>${list.length}</b> / ${rows.length}`; 247 + if (list.length === 0) { 248 + grid.innerHTML = `<div id="empty">no matches</div>`; 249 + return; 250 + } 251 + const html = list.map((r, i) => ` 252 + <div class="card" data-i="${rows.indexOf(r)}"> 253 + <div class="thumb-wrap"> 254 + <img src="${r.thumb}" loading="lazy" alt=""> 255 + <div class="sim">${(r.similarity).toFixed(2)}</div> 256 + </div> 257 + <div class="meta"> 258 + <div class="date">${r.date}</div> 259 + ${r.caption ? `<div class="caption">${escapeHtml(r.caption)}</div>` : ""} 260 + ${r.tags?.length ? `<div class="tags">${escapeHtml(r.tags.slice(0, 4).join(" · "))}</div>` : ""} 261 + </div> 262 + </div>`).join(""); 263 + grid.innerHTML = html; 264 + for (const card of grid.querySelectorAll(".card")) { 265 + card.addEventListener("click", () => openLightbox(rows[+card.dataset.i])); 266 + } 267 + } 268 + 269 + function openLightbox(r) { 270 + const igUrl = `https://www.instagram.com/p/${r.shortcode}/`; 271 + lbBody.innerHTML = ` 272 + <div class="lb-img"><img src="${r.thumb}" alt=""></div> 273 + <div class="lb-info"> 274 + <h2>${r.date}</h2> 275 + <div class="lb-row"><span class="k">subject</span><span class="v">${escapeHtml(r.description || "—")}</span></div> 276 + <div class="lb-row"><span class="k">expression</span><span class="v">${escapeHtml(r.expression || "—")}</span></div> 277 + <div class="lb-row"><span class="k">pose</span><span class="v">${escapeHtml(r.pose || "—")}</span></div> 278 + <div class="lb-row"><span class="k">location</span><span class="v">${escapeHtml(r.location || "—")}</span></div> 279 + <div class="lb-row"><span class="k">style</span><span class="v">${escapeHtml(r.style || "—")} · ${escapeHtml(r.framing || "—")}</span></div> 280 + <div class="lb-row"><span class="k">domain</span><span class="v">${escapeHtml(r.domain || "—")}</span></div> 281 + ${r.tags?.length ? `<div class="lb-row"><span class="k">tags</span><span class="v tag-list">${escapeHtml(r.tags.join(" · "))}</span></div>` : ""} 282 + ${r.caption ? `<div class="lb-row"><span class="k">caption</span><span class="v">${escapeHtml(r.caption)}</span></div>` : ""} 283 + <div class="lb-row"><span class="k">face-match</span><span class="v">${r.similarity.toFixed(4)} (conf ${r.confidence ?? "—"})</span></div> 284 + <div class="lb-row"><span class="k">others</span><span class="v">${r.n_other_people} other people in frame</span></div> 285 + <a class="lb-ig-link" href="${igUrl}" target="_blank">view on instagram ↗</a> 286 + </div>`; 287 + lightbox.classList.add("open"); 288 + document.body.style.overflow = "hidden"; 289 + } 290 + 291 + function closeLightbox() { 292 + lightbox.classList.remove("open"); 293 + document.body.style.overflow = ""; 294 + } 295 + 296 + $("lbClose").addEventListener("click", closeLightbox); 297 + lightbox.addEventListener("click", (e) => { if (e.target === lightbox) closeLightbox(); }); 298 + document.addEventListener("keydown", (e) => { if (e.key === "Escape") closeLightbox(); }); 299 + 300 + let t; 301 + search.addEventListener("input", () => { clearTimeout(t); t = setTimeout(render, 120); }); 302 + sortSel.addEventListener("change", render); 303 + domainSel.addEventListener("change", render); 304 + 305 + function escapeHtml(s) { 306 + return String(s).replace(/[&<>"']/g, (c) => ({ "&": "&amp;", "<": "&lt;", ">": "&gt;", '"': "&quot;", "'": "&#39;" }[c])); 307 + } 308 + </script> 309 + 310 + </body> 311 + </html>
+10853
system/public/papers.aesthetic.computer/jeffrey/manifest.json
··· 1 + { 2 + "generated_at": "2026-04-29T17:24:14.678Z", 3 + "source": "portraits/jeffrey/curated/jeffrey-described.jsonl", 4 + "cdn_prefix": "https://assets.aesthetic.computer/jeffreys/whistlegraph", 5 + "counts": { 6 + "rows": 457, 7 + "confirmed": 457 8 + }, 9 + "rows": [ 10 + { 11 + "shortcode": "DXpH74nFKhs", 12 + "date": "2026-04-27", 13 + "similarity": 0.511, 14 + "confidence": 0.85, 15 + "confirmed": true, 16 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DXpH74nFKhs.jpg", 17 + "expression": "soft smile", 18 + "pose": "standing close, embracing someone, looking up slightly", 19 + "description": "short hair, light-colored shirt, blue shorts, casual wear.", 20 + "location": "beach at sunset", 21 + "style": "casual phone photo", 22 + "framing": "medium shot of standing figures", 23 + "domain": "with-fia", 24 + "tags": [ 25 + "beach", 26 + "sunset", 27 + "embrace", 28 + "casual", 29 + "outdoors" 30 + ], 31 + "caption": "Sunset love at the beach.", 32 + "n_other_people": 1 33 + }, 34 + { 35 + "shortcode": "DT5o4WwD4vR", 36 + "date": "2026-01-24", 37 + "similarity": 0.6749, 38 + "confidence": 0.95, 39 + "confirmed": true, 40 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DT5o4WwD4vR.jpg", 41 + "expression": "neutral smile", 42 + "pose": "standing side by side with a woman, arm around her waist", 43 + "description": "short, straight brown hair, clean-shaven, wearing a black suit with a white dress shirt", 44 + "location": "Victorian-style library with wood paneling and bookshelves", 45 + "style": "semi-formal posed event photo", 46 + "framing": "medium shot showing full outfits", 47 + "domain": "social", 48 + "tags": [ 49 + "birthday", 50 + "library", 51 + "formal", 52 + "posed", 53 + "event" 54 + ], 55 + "caption": "Celebrating surrounded by books and friends.", 56 + "n_other_people": 1 57 + }, 58 + { 59 + "shortcode": "DTlDqFOD0IB", 60 + "date": "2026-01-16", 61 + "similarity": 0.7207, 62 + "confidence": 0.95, 63 + "confirmed": true, 64 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DTlDqFOD0IB.jpg", 65 + "expression": "focused, eyes looking upwards", 66 + "pose": "standing on grass, holding a phone in one hand at hip level", 67 + "description": "shoulder-length hair, slight stubble, dressed in a loose white shirt and pale pants, with colorful shoes.", 68 + "location": "modern building's exterior garden", 69 + "style": "candid outdoor photo", 70 + "framing": "full-body shot", 71 + "domain": "travel-or-outdoor", 72 + "tags": [ 73 + "outdoors", 74 + "modern architecture", 75 + "afternoon", 76 + "casual", 77 + "cell phone" 78 + ], 79 + "caption": "Enjoying a sunny day at this stunning location.", 80 + "n_other_people": 0 81 + }, 82 + { 83 + "shortcode": "DTUfPvUjpot", 84 + "date": "2026-01-10", 85 + "similarity": 0.7041, 86 + "confidence": 0.95, 87 + "confirmed": true, 88 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DTUfPvUjpot.jpg", 89 + "expression": "neutral", 90 + "pose": "standing straight, holding a bag at his side with both hands", 91 + "description": "Medium-length hair, brown and somewhat wavy, clean-shaven face, wearing a dark green sweater over a white collared shirt, black pants, and brown shoes, holding a black bag.", 92 + "location": "event hall with modern decor", 93 + "style": "casual event photo", 94 + "framing": "medium shot waist-up", 95 + "domain": "other", 96 + "tags": [ 97 + "event", 98 + "media", 99 + "green lighting", 100 + "bag", 101 + "casual attire" 102 + ], 103 + "caption": "Exploring modern and contemporary with a media pass in hand!", 104 + "n_other_people": 0 105 + }, 106 + { 107 + "shortcode": "DTR3072Dph2", 108 + "date": "2026-01-09", 109 + "similarity": 0.7015, 110 + "confidence": 0.95, 111 + "confirmed": true, 112 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DTR3072Dph2.jpg", 113 + "expression": "neutral, slight smile", 114 + "pose": "standing on a red carpet, facing the camera, arm resting slightly by his side", 115 + "description": "medium-length brown hair, clean-shaven, wearing a black sweater, white shirt underneath, black pants, carrying a large black bag, and brown shoes.", 116 + "location": "LA Art Show event", 117 + "style": "staged event portrait", 118 + "framing": "full body shot", 119 + "domain": "social", 120 + "tags": [ 121 + "red carpet", 122 + "art show", 123 + "event", 124 + "black sweater", 125 + "photography" 126 + ], 127 + "caption": "Enjoying the art scene at the LA Art Show!", 128 + "n_other_people": 1 129 + }, 130 + { 131 + "shortcode": "DRp4Ma8ktLe", 132 + "date": "2025-11-29", 133 + "similarity": 0.6937, 134 + "confidence": 0.95, 135 + "confirmed": true, 136 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DRp4Ma8ktLe.jpg", 137 + "expression": "soft smile", 138 + "pose": "standing with arms around two people, looking at camera", 139 + "description": "Medium-length light brown hair, clean-shaven, wearing a light blue sweater and cream pants.", 140 + "location": "indoor living room", 141 + "style": "casual social photograph", 142 + "framing": "full-body group shot", 143 + "domain": "social", 144 + "tags": [ 145 + "social gathering", 146 + "evening", 147 + "living room", 148 + "group hug" 149 + ], 150 + "caption": "Celebrating good times with great company.", 151 + "n_other_people": 2 152 + }, 153 + { 154 + "shortcode": "DRYu6gdjqto", 155 + "date": "2025-11-23", 156 + "similarity": 0.668, 157 + "confidence": 0.95, 158 + "confirmed": true, 159 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DRYu6gdjqto.jpg", 160 + "expression": "soft smile", 161 + "pose": "standing and embracing a woman, looking at the camera", 162 + "description": "Medium-length hair with a side part, wearing a plaid shirt over a white undershirt, and tied jumper around the waist.", 163 + "location": "urban street at night", 164 + "style": "casual phone selfie", 165 + "framing": "medium shot waist-up", 166 + "domain": "social", 167 + "tags": [ 168 + "night", 169 + "street", 170 + "embrace", 171 + "plaid shirt", 172 + "cafe" 173 + ], 174 + "caption": "Late night city vibes with a friend.", 175 + "n_other_people": 1 176 + }, 177 + { 178 + "shortcode": "15-57-17_UTC_cover", 179 + "date": "2025-11-19", 180 + "similarity": 0.555, 181 + "confidence": 0.8, 182 + "confirmed": true, 183 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/15-57-17_UTC_cover.jpg", 184 + "expression": "focused with a gentle smile", 185 + "pose": "sitting on bed, playing a mandolin, with crossed legs", 186 + "description": "short dark hair, wearing a long-sleeved white shirt with text, and sitting on a bed with a notebook and mandolin.", 187 + "location": "cozy bedroom or living space", 188 + "style": "candid black-and-white snapshot", 189 + "framing": "medium shot waist-up", 190 + "domain": "other", 191 + "tags": [ 192 + "mandolin", 193 + "bedroom", 194 + "music", 195 + "papers", 196 + "cozy" 197 + ], 198 + "caption": "Just strumming some tunes and jotting down thoughts.", 199 + "n_other_people": 0 200 + }, 201 + { 202 + "shortcode": "DRA04DEEjsO", 203 + "date": "2025-11-13", 204 + "similarity": 0.6183, 205 + "confidence": 0.9, 206 + "confirmed": true, 207 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DRA04DEEjsO.jpg", 208 + "expression": "soft smile", 209 + "pose": "standing against a textured concrete wall, holding a small toy and red string", 210 + "description": "Medium hair, slightly tousled. Wearing a black sweater over a yellow shirt, with wide red pants. No visible beard or glasses.", 211 + "location": "concrete walled interior", 212 + "style": "casual phone snapshot", 213 + "framing": "medium full-body shot", 214 + "domain": "solo-portrait", 215 + "tags": [ 216 + "concrete wall", 217 + "casual", 218 + "black sweater", 219 + "red pants" 220 + ], 221 + "caption": "Concrete jungle explorations.", 222 + "n_other_people": 0 223 + }, 224 + { 225 + "shortcode": "DQqh-g3jrCs", 226 + "date": "2025-11-05", 227 + "similarity": 0.6888, 228 + "confidence": 0.95, 229 + "confirmed": true, 230 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DQqh-g3jrCs.jpg", 231 + "expression": "neutral, relaxed", 232 + "pose": "standing casually, holding a coffee cup and a guitar case with a bag over the shoulder.", 233 + "description": "Medium-length brown hair, clean-shaven, wearing a graphic t-shirt with abstract art, white pants, and brown shoes. A light jacket is tied around the waist.", 234 + "location": "street corner with a beige wall and a parking sign.", 235 + "style": "casual candid street photo", 236 + "framing": "full body shot", 237 + "domain": "travel-or-outdoor", 238 + "tags": [ 239 + "guitar case", 240 + "coffee cup", 241 + "piñatas", 242 + "parking sign", 243 + "street" 244 + ], 245 + "caption": "Exploring the vibrant streets with a cup of coffee and a guitar.", 246 + "n_other_people": 0 247 + }, 248 + { 249 + "shortcode": "DQiUaXgCXne", 250 + "date": "2025-11-02", 251 + "similarity": 0.6451, 252 + "confidence": 0.85, 253 + "confirmed": true, 254 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DQiUaXgCXne.jpg", 255 + "expression": "soft smile", 256 + "pose": "standing with an arm around another person, holding a drink in the other hand", 257 + "description": "dressed as a nun with a long black costume and a white headpiece, holding a cross accessory", 258 + "location": "nightclub with Halloween decorations", 259 + "style": "candid party snapshot", 260 + "framing": "medium shot waist-up", 261 + "domain": "social", 262 + "tags": [ 263 + "costume", 264 + "Halloween", 265 + "party", 266 + "nightclub", 267 + "fun" 268 + ], 269 + "caption": "Spooky vibes and good times!", 270 + "n_other_people": 1 271 + }, 272 + { 273 + "shortcode": "DOZzbj1j-gs", 274 + "date": "2025-09-10", 275 + "similarity": 0.9637, 276 + "confidence": 0.95, 277 + "confirmed": true, 278 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DOZzbj1j-gs.jpg", 279 + "expression": "playful grin with hands on head", 280 + "pose": "sitting on a backwards chair, legs wide apart, hands resting on head", 281 + "description": "shoulder-length hair parted in the middle, wearing a white shirt and blue pants with a seated pose. No visible beard, wearing dark sneakers and quirky socks.", 282 + "location": "minimalist studio space", 283 + "style": "staged event portrait", 284 + "framing": "medium shot waist-up", 285 + "domain": "performance", 286 + "tags": [ 287 + "performance", 288 + "studio pose", 289 + "playful expression", 290 + "orange chair", 291 + "quirky socks" 292 + ], 293 + "caption": "Getting ready for an exciting evening. See you there!", 294 + "n_other_people": 0 295 + }, 296 + { 297 + "shortcode": "DNpp2fJOz1h", 298 + "date": "2025-08-22", 299 + "similarity": 0.6817, 300 + "confidence": 0.85, 301 + "confirmed": true, 302 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DNpp2fJOz1h.jpg", 303 + "expression": "big smile", 304 + "pose": "standing on a rocky surface, holding up both hands in peace signs", 305 + "description": "Short brown hair, no beard, wearing a light blue graphic t-shirt, black pants, and orange shoes.", 306 + "location": "mountainous landscape with dramatic sky and distant rainbow", 307 + "style": "candid outdoor capture", 308 + "framing": "wide environmental", 309 + "domain": "travel-or-outdoor", 310 + "tags": [ 311 + "outdoors", 312 + "mountains", 313 + "peace signs", 314 + "rainbow", 315 + "casual" 316 + ], 317 + "caption": "Chasing rainbows and good vibes.", 318 + "n_other_people": 0 319 + }, 320 + { 321 + "shortcode": "DNR_IuQMnIE", 322 + "date": "2025-08-13", 323 + "similarity": 0.6181, 324 + "confidence": 0.95, 325 + "confirmed": true, 326 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DNR_IuQMnIE.jpg", 327 + "expression": "playful with tongue out", 328 + "pose": "standing on a beach with hands together, fingers pointing upward", 329 + "description": "Medium-length brown hair, no beard, wearing a dirty light-colored button-down shirt with visible stains, and a pencil tucked into the collar.", 330 + "location": "sandy beach with ocean waves in the background.", 331 + "style": "casual snapshot", 332 + "framing": "medium close-up of upper body", 333 + "domain": "travel-or-outdoor", 334 + "tags": [ 335 + "beach", 336 + "ocean", 337 + "afternoon", 338 + "playful", 339 + "stains" 340 + ], 341 + "caption": "Ocean breezes and sandy toes 🌊👣", 342 + "n_other_people": 0 343 + }, 344 + { 345 + "shortcode": "DNCHDm-saML", 346 + "date": "2025-08-07", 347 + "similarity": 0.654, 348 + "confidence": 0.85, 349 + "confirmed": true, 350 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DNCHDm-saML.jpg", 351 + "expression": "cheerful, with a broad smile", 352 + "pose": "standing on a gravel path with hands behind back, facing the camera.", 353 + "description": "wearing a light blue graphic t-shirt and white trousers, with short brown hair and no beard.", 354 + "location": "a grassy outdoor path with bushes and trees in the background", 355 + "style": "candid travel photo", 356 + "framing": "full-body shot centered on pathway", 357 + "domain": "travel-or-outdoor", 358 + "tags": [ 359 + "outdoors", 360 + "summer", 361 + "nature", 362 + "casual", 363 + "smiling" 364 + ], 365 + "caption": "Enjoying a sunny stroll through nature.", 366 + "n_other_people": 0 367 + }, 368 + { 369 + "shortcode": "DL-4hvkheKJ", 370 + "date": "2025-07-11", 371 + "similarity": 0.7518, 372 + "confidence": 0.9, 373 + "confirmed": true, 374 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DL-4hvkheKJ.jpg", 375 + "expression": "warm smile", 376 + "pose": "standing with right arm around a woman's shoulder, holding a colorful folder with both hands", 377 + "description": "short light brown hair with a thin crown headband featuring green ears, no beard, light blue long-sleeve shirt with a small graphic patch, and black pants.", 378 + "location": "indoor party setting, possibly a private home", 379 + "style": "casual social snapshot", 380 + "framing": "medium shot", 381 + "domain": "social", 382 + "tags": [ 383 + "party", 384 + "neon", 385 + "costume", 386 + "social", 387 + "indoor" 388 + ], 389 + "caption": "Costume vibes with good friends all around.", 390 + "n_other_people": 1 391 + }, 392 + { 393 + "shortcode": "DLgBsunBzbu", 394 + "date": "2025-06-29", 395 + "similarity": 0.6512, 396 + "confidence": 0.95, 397 + "confirmed": true, 398 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DLgBsunBzbu.jpg", 399 + "expression": "broad smile", 400 + "pose": "sitting cross-legged outdoors, holding an object between his hands", 401 + "description": "jeffrey has short brown hair with a playful gold crown accessory, wearing a light open shirt over a patterned tee and loose white pants.", 402 + "location": "outdoor terrace with view of evening sky", 403 + "style": "casual posed shot", 404 + "framing": "medium shot showing upper body and seated posture", 405 + "domain": "solo-portrait", 406 + "tags": [ 407 + "outdoor", 408 + "night", 409 + "gold crown", 410 + "smiling", 411 + "casual" 412 + ], 413 + "caption": "Enjoying the night vibes with a golden touch.", 414 + "n_other_people": 0 415 + }, 416 + { 417 + "shortcode": "DJOzPDTRZgC", 418 + "date": "2025-05-04", 419 + "similarity": 0.7342, 420 + "confidence": 0.9, 421 + "confirmed": true, 422 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DJOzPDTRZgC.jpg", 423 + "expression": "cheerful smile", 424 + "pose": "standing under a floral archway, holding a ukulele in one hand", 425 + "description": "Jeffrey is wearing a bright orange long-sleeve shirt over a brown striped undershirt, with bold blue pants. He has a colorful knit scarf around his neck and is holding a brightly decorated ukulele. His hair is short and straight, and he carries a white tote bag.", 426 + "location": "garden with a floral archway", 427 + "style": "candid outdoor snapshot", 428 + "framing": "medium shot waist-up", 429 + "domain": "travel-or-outdoor", 430 + "tags": [ 431 + "garden", 432 + "flowers", 433 + "ukulele", 434 + "orange shirt", 435 + "colorful scarf" 436 + ], 437 + "caption": "Finding tunes and blooms in a garden paradise.", 438 + "n_other_people": 0 439 + }, 440 + { 441 + "shortcode": "DJF8Cq_PNlq", 442 + "date": "2025-05-01", 443 + "similarity": 0.594, 444 + "confidence": 0.95, 445 + "confirmed": true, 446 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DJF8Cq_PNlq.jpg", 447 + "expression": "focused, eyes down", 448 + "pose": "seated while looking at a laptop, interacting with it", 449 + "description": "Medium-length brown hair, wearing a white shirt over a light shirt, and glasses in one hand. Casual attire, bright colors around.", 450 + "location": "indoor space with ambient lighting", 451 + "style": "casual promotional", 452 + "framing": "medium shot waist-up", 453 + "domain": "art", 454 + "tags": [ 455 + "art", 456 + "laptop", 457 + "soft lighting", 458 + "casual" 459 + ], 460 + "caption": "Creative vibes flowing in technicolor.", 461 + "n_other_people": 0 462 + }, 463 + { 464 + "shortcode": "DJH7FvOBL4y", 465 + "date": "2025-05-01", 466 + "similarity": 0.5592, 467 + "confidence": 0.95, 468 + "confirmed": true, 469 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DJH7FvOBL4y.jpg", 470 + "expression": "focused look, slight smile", 471 + "pose": "standing outdoors, one foot raised on a bench, working on a laptop", 472 + "description": "short hair, light brown with slight fringe; clean-shaven; wearing a pink hoodie with abstract art design, black pants, no visible accessories.", 473 + "location": "outdoor patio with trees and bushes", 474 + "style": "candid casual", 475 + "framing": "medium shot waist-up", 476 + "domain": "coding", 477 + "tags": [ 478 + "laptop", 479 + "outdoors", 480 + "casual attire", 481 + "afternoon", 482 + "focused" 483 + ], 484 + "caption": "Caught in the creative zone under the open sky.", 485 + "n_other_people": 0 486 + }, 487 + { 488 + "shortcode": "DISqfFoRIzv", 489 + "date": "2025-04-11", 490 + "similarity": 0.6768, 491 + "confidence": 0.95, 492 + "confirmed": true, 493 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DISqfFoRIzv.jpg", 494 + "expression": "content smile", 495 + "pose": "sitting outdoors, strumming a colorfully decorated ukulele", 496 + "description": "Medium-length brown hair with sun highlights, stubble beard. Wearing a plaid shirt over a graphic tee, light pink pants. No accessories visible.", 497 + "location": "under a shaded exterior structure", 498 + "style": "casual outdoor snapshot", 499 + "framing": "medium shot waist-up", 500 + "domain": "other", 501 + "tags": [ 502 + "ukulele", 503 + "outdoors", 504 + "afternoon", 505 + "plaid shirt", 506 + "sunlight" 507 + ], 508 + "caption": "Strumming some sunshine into the day.", 509 + "n_other_people": 0 510 + }, 511 + { 512 + "shortcode": "DH4okRPvPgc", 513 + "date": "2025-04-01", 514 + "similarity": 0.7253, 515 + "confidence": 0.95, 516 + "confirmed": true, 517 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DH4okRPvPgc.jpg", 518 + "expression": "friendly smile", 519 + "pose": "standing holding a bouquet of flowers in front of a car", 520 + "description": "short brown hair, clean-shaven, light blue button-up shirt with colorful cuff details, no glasses.", 521 + "location": "outdoor parking area with bamboo plants and a metal fence", 522 + "style": "casual outdoor photo", 523 + "framing": "medium shot waist-up", 524 + "domain": "other", 525 + "tags": [ 526 + "flowers", 527 + "outdoor", 528 + "car", 529 + "casual", 530 + "afternoon" 531 + ], 532 + "caption": "Picked up some fresh blooms for the weekend!", 533 + "n_other_people": 0 534 + }, 535 + { 536 + "shortcode": "DHE9nEcSext", 537 + "date": "2025-03-11", 538 + "similarity": 0.5441, 539 + "confidence": 0.9, 540 + "confirmed": true, 541 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DHE9nEcSext.jpg", 542 + "expression": "focused, eyes down", 543 + "pose": "sitting cross-legged on grass, looking down while holding a small object resembling a toy or piece of art", 544 + "description": "medium-length dark brown hair, slight facial hair, wearing a plaid shirt and an orange t-shirt underneath.", 545 + "location": "outdoor grassy area with trees and buildings", 546 + "style": "candid outdoor photo", 547 + "framing": "medium shot waist-up", 548 + "domain": "other", 549 + "tags": [ 550 + "outdoor", 551 + "grass", 552 + "plaid shirt", 553 + "focus", 554 + "afternoon" 555 + ], 556 + "caption": "Lost in creation on a sunny afternoon.", 557 + "n_other_people": 0 558 + }, 559 + { 560 + "shortcode": "DG3oSZoSGcZ", 561 + "date": "2025-03-06", 562 + "similarity": 0.5569, 563 + "confidence": 0.95, 564 + "confirmed": true, 565 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DG3oSZoSGcZ.jpg", 566 + "expression": "focused, eyes down", 567 + "pose": "seated at a table with papers spread out, holding one sheet up to read it closely.", 568 + "description": "medium length brown hair, clean-shaven, wearing a green tie-dye hoodie with a drawstring, no glasses or visible accessories.", 569 + "location": "cozy home kitchen or dining area", 570 + "style": "candid dinner table snap", 571 + "framing": "medium shot, capturing upper body and table contents.", 572 + "domain": "art", 573 + "tags": [ 574 + "candle", 575 + "art", 576 + "dining table", 577 + "evening", 578 + "focused" 579 + ], 580 + "caption": "Diving deep into creativity by candlelight.", 581 + "n_other_people": 0 582 + }, 583 + { 584 + "shortcode": "DGuGD44JAgM", 585 + "date": "2025-03-03", 586 + "similarity": 0.5981, 587 + "confidence": 0.95, 588 + "confirmed": true, 589 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DGuGD44JAgM.jpg", 590 + "expression": "cheerful, slight smile", 591 + "pose": "seated on bed, holding a stack of colorful cards, looking at them", 592 + "description": "Short dark brown hair, wearing a white t-shirt and black pants, seated on a bed. No beard.", 593 + "location": "bedroom with white walls", 594 + "style": "casual phone snapshot", 595 + "framing": "medium shot, waist-up", 596 + "domain": "coding", 597 + "tags": [ 598 + "bedroom", 599 + "coding", 600 + "cheerful", 601 + "lamp" 602 + ], 603 + "caption": "Stacking up ideas for the next project!", 604 + "n_other_people": 0 605 + }, 606 + { 607 + "shortcode": "DGEkjQRS6Zw", 608 + "date": "2025-02-14", 609 + "similarity": 0.7557, 610 + "confidence": 0.95, 611 + "confirmed": true, 612 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DGEkjQRS6Zw.jpg", 613 + "expression": "soft smile", 614 + "pose": "embracing a woman, taking a selfie with a landscape background", 615 + "description": "Short brown hair, wearing a black t-shirt with rainbow trim, clean-shaven.", 616 + "location": "outdoor balcony or rooftop with a scenic view", 617 + "style": "casual phone selfie", 618 + "framing": "medium shot waist-up", 619 + "domain": "social", 620 + "tags": [ 621 + "sunset", 622 + "selfie", 623 + "couple", 624 + "cityscape", 625 + "evening" 626 + ], 627 + "caption": "Sunsets and sweet moments.", 628 + "n_other_people": 1 629 + }, 630 + { 631 + "shortcode": "DF55ZSky5S4", 632 + "date": "2025-02-10", 633 + "similarity": 0.693, 634 + "confidence": 0.9, 635 + "confirmed": true, 636 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DF55ZSky5S4.jpg", 637 + "expression": "soft smile", 638 + "pose": "sitting at a table, interacting with two others.", 639 + "description": "short brown hair, wearing a white shirt over a pink undershirt, sitting with arms crossed.", 640 + "location": "diner or casual restaurant", 641 + "style": "casual snapshot", 642 + "framing": "medium shot with others mid-conversation", 643 + "domain": "social", 644 + "tags": [ 645 + "diner", 646 + "conversation", 647 + "friends", 648 + "white cups", 649 + "casual atmosphere" 650 + ], 651 + "caption": "Catching up with friends over coffee vibes.", 652 + "n_other_people": 2 653 + }, 654 + { 655 + "shortcode": "DFwLRxwy0iE", 656 + "date": "2025-02-07", 657 + "similarity": 0.5044, 658 + "confidence": 0.95, 659 + "confirmed": true, 660 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DFwLRxwy0iE.jpg", 661 + "expression": "laughing and engaged", 662 + "pose": "standing with a shopping cart, talking to a woman.", 663 + "description": "short dark blonde hair, wearing a casual multi-colored hoodie with a graphic print layered over a white shirt.", 664 + "location": "grocery store", 665 + "style": "candid store interaction", 666 + "framing": "medium shot including two people and a shopping cart", 667 + "domain": "social", 668 + "tags": [ 669 + "grocery store", 670 + "shopping", 671 + "conversation", 672 + "casual", 673 + "indoors" 674 + ], 675 + "caption": "Shopping adventures with good company! 🛒😊", 676 + "n_other_people": 1 677 + }, 678 + { 679 + "shortcode": "DFtJH9uzU3C", 680 + "date": "2025-02-05", 681 + "similarity": 0.7162, 682 + "confidence": 0.95, 683 + "confirmed": true, 684 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DFtJH9uzU3C.jpg", 685 + "expression": "soft smile", 686 + "pose": "playfully perched on a stair railing, holding a cardboard box in one hand, balancing with one foot on the step", 687 + "description": "short brown hair, no beard, wearing a checked shirt with an orange graphic t-shirt underneath, black pants, and white sneakers with red socks. He has headphones around his neck and is holding a cardboard box with 'PIneapple' written on it.", 688 + "location": "outdoor stairway, likely near a building", 689 + "style": "casual candid outdoor shot", 690 + "framing": "medium shot showing full body on steps", 691 + "domain": "travel-or-outdoor", 692 + "tags": [ 693 + "outdoors", 694 + "stairs", 695 + "casual", 696 + "cardboard box", 697 + "headphones" 698 + ], 699 + "caption": "Balancing act on a day out!", 700 + "n_other_people": 0 701 + }, 702 + { 703 + "shortcode": "DFQ2lHPzN_W", 704 + "date": "2025-01-25", 705 + "similarity": 0.7368, 706 + "confidence": 0.95, 707 + "confirmed": true, 708 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DFQ2lHPzN_W.jpg", 709 + "expression": "soft smile", 710 + "pose": "sitting cross-legged on a bed, holding a ukulele", 711 + "description": "short light brown hair, wearing a multi-colored striped sweater and black pants. No facial hair. No glasses or visible accessories.", 712 + "location": "cozy bedroom with decorative quilt and wooden side table", 713 + "style": "casual phone selfie", 714 + "framing": "medium shot waist-up", 715 + "domain": "solo-portrait", 716 + "tags": [ 717 + "ukulele", 718 + "bedroom", 719 + "striped sweater", 720 + "soft lighting", 721 + "morning", 722 + "casual" 723 + ], 724 + "caption": "Strumming into the weekend vibes.", 725 + "n_other_people": 0 726 + }, 727 + { 728 + "shortcode": "DFOJ1adSTYQ", 729 + "date": "2025-01-24", 730 + "similarity": 0.6552, 731 + "confidence": 0.95, 732 + "confirmed": true, 733 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DFOJ1adSTYQ.jpg", 734 + "expression": "soft smile with eyes partially closed", 735 + "pose": "holding up a peace sign with his right hand, standing outdoors", 736 + "description": "Short, slightly messy hair, clean-shaven, wearing a light gray button-up shirt with a System of a Down patch and a yellow lanyard.", 737 + "location": "outdoor setting with clear blue sky", 738 + "style": "casual phone selfie", 739 + "framing": "medium shot chest-up", 740 + "domain": "solo-portrait", 741 + "tags": [ 742 + "peace sign", 743 + "outdoors", 744 + "bright sun", 745 + "casual", 746 + "lanyard" 747 + ], 748 + "caption": "Peace and sunlight!", 749 + "n_other_people": 0 750 + }, 751 + { 752 + "shortcode": "DFLo7AZTRvl", 753 + "date": "2025-01-23", 754 + "similarity": 0.667, 755 + "confidence": 0.95, 756 + "confirmed": true, 757 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DFLo7AZTRvl.jpg", 758 + "expression": "playful smirk", 759 + "pose": "seated at a table, leaning forward slightly, displaying a notebook", 760 + "description": "Short brown hair, wearing a plaid shirt under a gray jacket. Holding a marker and a notebook.", 761 + "location": "café with visible shelving and cups", 762 + "style": "casual phone photo", 763 + "framing": "medium shot waist-up", 764 + "domain": "social", 765 + "tags": [ 766 + "café", 767 + "notebook", 768 + "marker", 769 + "casual" 770 + ], 771 + "caption": "Just doodling some ideas with a friend.", 772 + "n_other_people": 0 773 + }, 774 + { 775 + "shortcode": "DES-mqtzthf", 776 + "date": "2025-01-01", 777 + "similarity": 0.6439, 778 + "confidence": 0.9, 779 + "confirmed": true, 780 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DES-mqtzthf.jpg", 781 + "expression": "content, eyes focused on sparklers.", 782 + "pose": "holding sparklers in both hands, standing outdoors.", 783 + "description": "Medium-length brown hair, no beard, wearing a white ribbed sweater.", 784 + "location": "outdoors, likely a backyard or park.", 785 + "style": "casual night snapshot", 786 + "framing": "medium shot waist-up", 787 + "domain": "social", 788 + "tags": [ 789 + "sparklers", 790 + "night", 791 + "casual", 792 + "outdoors" 793 + ], 794 + "caption": "Celebrating with a spark.", 795 + "n_other_people": 0 796 + }, 797 + { 798 + "shortcode": "DEMRtAnRTga", 799 + "date": "2024-12-30", 800 + "similarity": 0.6068, 801 + "confidence": 0.95, 802 + "confirmed": true, 803 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DEMRtAnRTga.jpg", 804 + "expression": "neutral with slight concentration", 805 + "pose": "lying on a couch with legs raised, hands resting on head", 806 + "description": "medium-length hair, loosely tied back, wearing a white long-sleeve shirt and blue pants, no visible beard or glasses.", 807 + "location": "modern living room", 808 + "style": "casual home snapshot", 809 + "framing": "medium shot showing half the body", 810 + "domain": "solo-portrait", 811 + "tags": [ 812 + "home", 813 + "couch", 814 + "relaxed", 815 + "plants", 816 + "natural light" 817 + ], 818 + "caption": "Weekend vibes are strong with this one.", 819 + "n_other_people": 0 820 + }, 821 + { 822 + "shortcode": "DD0qifiPT2Y", 823 + "date": "2024-12-21", 824 + "similarity": 0.6095, 825 + "confidence": 0.9, 826 + "confirmed": true, 827 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DD0qifiPT2Y.jpg", 828 + "expression": "cheerful with a broad smile", 829 + "pose": "balancing on one foot on a skateboard, hands raised playfully", 830 + "description": "Short light brown hair, no beard, wearing a multicolored striped sweater, beige shorts, and mismatched socks (one red, one green).", 831 + "location": "rooftop patio", 832 + "style": "casual phone selfie", 833 + "framing": "full-body shot", 834 + "domain": "social", 835 + "tags": [ 836 + "rooftop", 837 + "skateboard", 838 + "stripes", 839 + "playful", 840 + "afternoon" 841 + ], 842 + "caption": "Balancing act on a sunny rooftop 🌞🛹", 843 + "n_other_people": 0 844 + }, 845 + { 846 + "shortcode": "DDa6COjvBS8", 847 + "date": "2024-12-11", 848 + "similarity": 0.5457, 849 + "confidence": 0.95, 850 + "confirmed": true, 851 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DDa6COjvBS8.jpg", 852 + "expression": "soft smile", 853 + "pose": "balancing on one foot, holding a bag in each hand", 854 + "description": "Jeffrey is wearing a colorful crochet hood and a light pink sweatshirt with a black embroidered emblem. He is also wearing dark pants with one leg featuring a tie-dye pattern, and black shoes. He carries two colorful bags, one in each hand.", 855 + "location": "rooftop terrace", 856 + "style": "candid photo", 857 + "framing": "full-body shot", 858 + "domain": "travel-or-outdoor", 859 + "tags": [ 860 + "crochet hood", 861 + "rooftop", 862 + "afternoon", 863 + "colorful bags", 864 + "pink sweatshirt" 865 + ], 866 + "caption": "Balancing act on a sunny afternoon.", 867 + "n_other_people": 0 868 + }, 869 + { 870 + "shortcode": "DC0V8MsJGM3", 871 + "date": "2024-11-26", 872 + "similarity": 0.6717, 873 + "confidence": 0.95, 874 + "confirmed": true, 875 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DC0V8MsJGM3.jpg", 876 + "expression": "focused, eyes intently on screen", 877 + "pose": "lying on a bed, using a tablet positioned in front", 878 + "description": "short brown hair, clean-shaven, wearing a pink sweatshirt", 879 + "location": "cozy living room", 880 + "style": "casual phone selfie", 881 + "framing": "medium shot waist-up", 882 + "domain": "coding", 883 + "tags": [ 884 + "indoor", 885 + "tablet", 886 + "focused", 887 + "pink sweatshirt", 888 + "home setting" 889 + ], 890 + "caption": "Deep in the zone on a cozy night in.", 891 + "n_other_people": 0 892 + }, 893 + { 894 + "shortcode": "DCYUbk7xa4X", 895 + "date": "2024-11-15", 896 + "similarity": 0.6223, 897 + "confidence": 0.9, 898 + "confirmed": true, 899 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DCYUbk7xa4X.jpg", 900 + "expression": "calm and focused", 901 + "pose": "seated on a stone sculpture shaped like a rabbit, looking down at it", 902 + "description": "Medium-length light brown hair, no beard, wearing a light green striped shirt over a green t-shirt and pink pants, with black shoes.", 903 + "location": "art gallery interior with sculptures", 904 + "style": "candid shot", 905 + "framing": "medium shot waist-up", 906 + "domain": "art", 907 + "tags": [ 908 + "art", 909 + "sculpture", 910 + "gallery", 911 + "casual", 912 + "seated", 913 + "stone figure" 914 + ], 915 + "caption": "Finding inspiration in unexpected places.", 916 + "n_other_people": 0 917 + }, 918 + { 919 + "shortcode": "DCS4LxmJk6z", 920 + "date": "2024-11-13", 921 + "similarity": 0.6151, 922 + "confidence": 0.9, 923 + "confirmed": true, 924 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DCS4LxmJk6z.jpg", 925 + "expression": "peaceful, eyes closed", 926 + "pose": "lying on the ground with a laptop on the chest", 927 + "description": "short brown hair with a relaxed style, wearing a black T-shirt and black jeans.", 928 + "location": "outdoor concrete surface", 929 + "style": "candid photo", 930 + "framing": "medium shot from above", 931 + "domain": "coding", 932 + "tags": [ 933 + "laptop", 934 + "sunlight", 935 + "outdoors", 936 + "relaxing", 937 + "coding" 938 + ], 939 + "caption": "Sunshine coding sessions are the best kind.", 940 + "n_other_people": 0 941 + }, 942 + { 943 + "shortcode": "DBnCG2-MZ0c", 944 + "date": "2024-10-27", 945 + "similarity": 0.7164, 946 + "confidence": 0.9, 947 + "confirmed": true, 948 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DBnCG2-MZ0c.jpg", 949 + "expression": "slight smile", 950 + "pose": "standing close to two others, holding camera for selfie", 951 + "description": "short dark hair, clean-shaven, wearing a white striped shirt", 952 + "location": "wood-paneled cabin interior", 953 + "style": "casual phone selfie", 954 + "framing": "medium shot waist-up", 955 + "domain": "social", 956 + "tags": [ 957 + "cabin", 958 + "selfie", 959 + "family", 960 + "indoor" 961 + ], 962 + "caption": "Hanging out in the cozy cabin with good company.", 963 + "n_other_people": 2 964 + }, 965 + { 966 + "shortcode": "DBSP-31Mi8Y", 967 + "date": "2024-10-19", 968 + "similarity": 0.5892, 969 + "confidence": 0.85, 970 + "confirmed": true, 971 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DBSP-31Mi8Y.jpg", 972 + "expression": "focused, neutral", 973 + "pose": "leaning over a kitchen counter, looking at a laptop", 974 + "description": "medium-length brown hair, no beard, wearing a multicolored tie-dye hoodie", 975 + "location": "wooden cabin kitchen", 976 + "style": "informal interior photo", 977 + "framing": "medium shot waist-up", 978 + "domain": "cooking-or-eating", 979 + "tags": [ 980 + "kitchen", 981 + "laptop", 982 + "night", 983 + "tie-dye", 984 + "cabin" 985 + ], 986 + "caption": "Late-night work vibes in the cabin kitchen.", 987 + "n_other_people": 0 988 + }, 989 + { 990 + "shortcode": "DA3SmxSxBMf", 991 + "date": "2024-10-08", 992 + "similarity": 0.6426, 993 + "confidence": 0.85, 994 + "confirmed": true, 995 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DA3SmxSxBMf.jpg", 996 + "expression": "playful with a smile", 997 + "pose": "sitting cross-legged on a rock, mimicking animal ears with hands", 998 + "description": "Short brown hair, wearing a brown jacket over a striped pastel shirt, light purple pants, and black boots with blue laces.", 999 + "location": "outdoor mountainous overlook", 1000 + "style": "casual outdoor portrait", 1001 + "framing": "medium shot, upper body centered", 1002 + "domain": "travel-or-outdoor", 1003 + "tags": [ 1004 + "outdoors", 1005 + "playful", 1006 + "mountains", 1007 + "nature", 1008 + "afternoon" 1009 + ], 1010 + "caption": "Feeling on top of the world with a touch of whimsy.", 1011 + "n_other_people": 0 1012 + }, 1013 + { 1014 + "shortcode": "DAtnYgoxKyh", 1015 + "date": "2024-10-04", 1016 + "similarity": 0.6743, 1017 + "confidence": 0.95, 1018 + "confirmed": true, 1019 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DAtnYgoxKyh.jpg", 1020 + "expression": "smiling down at laptop", 1021 + "pose": "sitting on a sofa, working on a laptop", 1022 + "description": "medium-length brown hair, clean-shaven, wearing a bright pink long-sleeve shirt and dark pants, colorful sticker-covered laptop.", 1023 + "location": "cozy cafe with colorful art on the walls", 1024 + "style": "casual phone snapshot", 1025 + "framing": "medium shot waist-up", 1026 + "domain": "coding", 1027 + "tags": [ 1028 + "cafe", 1029 + "laptop", 1030 + "artwork", 1031 + "pink shirt", 1032 + "afternoon" 1033 + ], 1034 + "caption": "Coding away in a colorful corner.", 1035 + "n_other_people": 0 1036 + }, 1037 + { 1038 + "shortcode": "DAt2sW6xh4P", 1039 + "date": "2024-10-04", 1040 + "similarity": 0.6917, 1041 + "confidence": 0.9, 1042 + "confirmed": true, 1043 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DAt2sW6xh4P.jpg", 1044 + "expression": "soft, amused smile", 1045 + "pose": "standing behind a novelty chick cutout with face visible through an opening.", 1046 + "description": "short hair, wearing a playful yellow chick cutout faceboard with only face visible.", 1047 + "location": "outdoor fair or festival", 1048 + "style": "playful event snapshot", 1049 + "framing": "medium close-up emphasizing the face cutout.", 1050 + "domain": "social", 1051 + "tags": [ 1052 + "novelty", 1053 + "outdoors", 1054 + "festival", 1055 + "fun" 1056 + ], 1057 + "caption": "Feeling like a spring chicken!", 1058 + "n_other_people": 0 1059 + }, 1060 + { 1061 + "shortcode": "DAjlN_iR0IN", 1062 + "date": "2024-09-30", 1063 + "similarity": 0.7037, 1064 + "confidence": 0.92, 1065 + "confirmed": true, 1066 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DAjlN_iR0IN.jpg", 1067 + "expression": "soft smile", 1068 + "pose": "standing next to a woman on a bridge, one hand in pocket", 1069 + "description": "short brown hair, no beard, wearing a light green striped shirt and black pants", 1070 + "location": "lakefront boardwalk with railing", 1071 + "style": "casual outdoor snapshot", 1072 + "framing": "medium shot full body", 1073 + "domain": "travel-or-outdoor", 1074 + "tags": [ 1075 + "lake", 1076 + "bridge", 1077 + "afternoon", 1078 + "casual" 1079 + ], 1080 + "caption": "Exploring the lakeside views.", 1081 + "n_other_people": 1 1082 + }, 1083 + { 1084 + "shortcode": "DAMtcG1s0yJ", 1085 + "date": "2024-09-22", 1086 + "similarity": 0.5879, 1087 + "confidence": 0.95, 1088 + "confirmed": true, 1089 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/DAMtcG1s0yJ.jpg", 1090 + "expression": "slight smile", 1091 + "pose": "standing on a sidewalk, looking back over the shoulder while holding an umbrella", 1092 + "description": "Medium-length brown hair, wearing a white sweater and carrying a vibrant yellow tote decorated with an artwork. Holding a black umbrella with logo.", 1093 + "location": "suburban sidewalk with trees lining the street", 1094 + "style": "candid snapshot on a rainy day", 1095 + "framing": "medium shot from waist up", 1096 + "domain": "travel-or-outdoor", 1097 + "tags": [ 1098 + "umbrella", 1099 + "rain", 1100 + "yellow tote", 1101 + "fall scene", 1102 + "suburban street" 1103 + ], 1104 + "caption": "Rainy day vibes with a splash of color ☔️🌼", 1105 + "n_other_people": 0 1106 + }, 1107 + { 1108 + "shortcode": "C_80Arsx1zr", 1109 + "date": "2024-09-15", 1110 + "similarity": 0.6803, 1111 + "confidence": 0.9, 1112 + "confirmed": true, 1113 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C_80Arsx1zr.jpg", 1114 + "expression": "focused, looking at the plants", 1115 + "pose": "standing among tall plants, reaching up to touch a branch with one hand", 1116 + "description": "Medium-length dark hair, clean-shaven, wearing a beige T-shirt with lettering and holding a yellow tote bag.", 1117 + "location": "outdoor garden or natural area", 1118 + "style": "candid outdoor capture", 1119 + "framing": "medium shot from waist up", 1120 + "domain": "travel-or-outdoor", 1121 + "tags": [ 1122 + "nature", 1123 + "plants", 1124 + "garden", 1125 + "afternoon", 1126 + "outdoors" 1127 + ], 1128 + "caption": "Exploring the wild greenery this sunny afternoon.", 1129 + "n_other_people": 0 1130 + }, 1131 + { 1132 + "shortcode": "C_hJfTQM_Vh", 1133 + "date": "2024-09-05", 1134 + "similarity": 0.6213, 1135 + "confidence": 0.9, 1136 + "confirmed": true, 1137 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C_hJfTQM_Vh.jpg", 1138 + "expression": "neutral profile", 1139 + "pose": "crouching on a sidewalk, hands clasped in front of him", 1140 + "description": "medium-length brown hair, clean-shaven face, wearing a light green and white striped button-up shirt with black pants and green-laced black shoes.", 1141 + "location": "outdoor park pathway", 1142 + "style": "candid shot", 1143 + "framing": "full body shot from a low angle", 1144 + "domain": "travel-or-outdoor", 1145 + "tags": [ 1146 + "crouching", 1147 + "outdoor", 1148 + "evening", 1149 + "sidewalk", 1150 + "park" 1151 + ], 1152 + "caption": "Dusk adventures feeling serene.", 1153 + "n_other_people": 0 1154 + }, 1155 + { 1156 + "shortcode": "C_hJfXIsQ4O", 1157 + "date": "2024-09-05", 1158 + "similarity": 0.556, 1159 + "confidence": 0.95, 1160 + "confirmed": true, 1161 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C_hJfXIsQ4O.jpg", 1162 + "expression": "focused on phone screen", 1163 + "pose": "standing on grass, looking down at phone, one leg slightly bent", 1164 + "description": "Medium-length hair, tidy and parted, wearing a light green and white striped shirt and loose dark pants with bright sneakers.", 1165 + "location": "suburban garden area", 1166 + "style": "casual phone selfie", 1167 + "framing": "wide environmental", 1168 + "domain": "travel-or-outdoor", 1169 + "tags": [ 1170 + "phone", 1171 + "outdoors", 1172 + "greenery", 1173 + "casual", 1174 + "afternoon" 1175 + ], 1176 + "caption": "Caught in the act of texting under a perfect sky.", 1177 + "n_other_people": 0 1178 + }, 1179 + { 1180 + "shortcode": "C_dgLbgR9Ce", 1181 + "date": "2024-09-03", 1182 + "similarity": 0.6364, 1183 + "confidence": 0.95, 1184 + "confirmed": true, 1185 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C_dgLbgR9Ce.jpg", 1186 + "expression": "talking quietly on the phone", 1187 + "pose": "seated on a large gray cushion, holding a phone to the ear with one hand and a yellow bag in the other hand", 1188 + "description": "Medium-length brown hair, no beard, wearing a white shirt over a red t-shirt, white shorts, black high-top sneakers with turquoise laces, and holding a yellow bag.", 1189 + "location": "lobby area with modern decor", 1190 + "style": "casual snapshot", 1191 + "framing": "medium shot waist-up", 1192 + "domain": "travel-or-outdoor", 1193 + "tags": [ 1194 + "phone", 1195 + "lobby", 1196 + "casual", 1197 + "sneakers", 1198 + "sitting" 1199 + ], 1200 + "caption": "Just another day, another call in a stylish lobby.", 1201 + "n_other_people": 2 1202 + }, 1203 + { 1204 + "shortcode": "C_Hm82-MC2p", 1205 + "date": "2024-08-26", 1206 + "similarity": 0.592, 1207 + "confidence": 0.95, 1208 + "confirmed": true, 1209 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C_Hm82-MC2p.jpg", 1210 + "expression": "playful smirk", 1211 + "pose": "sitting on outdoor steps, hands up showing paint-covered palms", 1212 + "description": "Medium-length brown hair, no beard. Wearing a white striped shirt over a light blue t-shirt and bright blue pants, with colorful socks and black shoes. Hands covered in yellow paint.", 1213 + "location": "outdoor shopping area", 1214 + "style": "candid snapshot", 1215 + "framing": "medium shot waist-up", 1216 + "domain": "art", 1217 + "tags": [ 1218 + "paint", 1219 + "shopping area", 1220 + "afternoon", 1221 + "playful", 1222 + "colorful" 1223 + ], 1224 + "caption": "Getting artsy right outside the Balenciaga store!", 1225 + "n_other_people": 0 1226 + }, 1227 + { 1228 + "shortcode": "C_HdaY1sp8i", 1229 + "date": "2024-08-26", 1230 + "similarity": 0.6416, 1231 + "confidence": 0.9, 1232 + "confirmed": true, 1233 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C_HdaY1sp8i.jpg", 1234 + "expression": "relaxed with a slight smile", 1235 + "pose": "lying upside down on a bed, holding a magazine with one foot up against the headboard", 1236 + "description": "Medium-length brown hair, no beard, wearing a black t-shirt and light pink pants.", 1237 + "location": "minimalist bedroom with wooden headboard", 1238 + "style": "casual snapshot", 1239 + "framing": "medium shot showing body from waist up", 1240 + "domain": "kidlisp", 1241 + "tags": [ 1242 + "bed", 1243 + "reading", 1244 + "relaxed", 1245 + "pastel colors", 1246 + "casual" 1247 + ], 1248 + "caption": "Upside down reading for a new perspective.", 1249 + "n_other_people": 0 1250 + }, 1251 + { 1252 + "shortcode": "C_EyqgcMxJo", 1253 + "date": "2024-08-25", 1254 + "similarity": 0.5928, 1255 + "confidence": 0.95, 1256 + "confirmed": true, 1257 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C_EyqgcMxJo.jpg", 1258 + "expression": "subtle smirk", 1259 + "pose": "leaning slightly forward, direct gaze into the camera", 1260 + "description": "Short brown hair slightly tousled, no beard, wearing a light blue t-shirt and a light striped button-up shirt.", 1261 + "location": "convenience store with shelves in the background", 1262 + "style": "casual phone selfie", 1263 + "framing": "tight close-up of face", 1264 + "domain": "other", 1265 + "tags": [ 1266 + "convenience store", 1267 + "fluorescent light", 1268 + "close-up", 1269 + "casual", 1270 + "direct gaze" 1271 + ], 1272 + "caption": "Caught in the snack aisle with a mischievous look.", 1273 + "n_other_people": 0 1274 + }, 1275 + { 1276 + "shortcode": "C-TNw2ByeHE", 1277 + "date": "2024-08-05", 1278 + "similarity": 0.6337, 1279 + "confidence": 0.9, 1280 + "confirmed": true, 1281 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C-TNw2ByeHE.jpg", 1282 + "expression": "cheerful smile", 1283 + "pose": "standing on grass with arms outstretched, in a playful walking motion", 1284 + "description": "short brown hair, clean-shaven, wearing a white t-shirt and bright blue shorts with black shoes.", 1285 + "location": "outdoor garden with hydrangeas", 1286 + "style": "casual phone snapshot", 1287 + "framing": "full-body shot", 1288 + "domain": "travel-or-outdoor", 1289 + "tags": [ 1290 + "garden", 1291 + "flowers", 1292 + "outdoors", 1293 + "afternoon", 1294 + "casual" 1295 + ], 1296 + "caption": "Embracing the beauty of nature.", 1297 + "n_other_people": 0 1298 + }, 1299 + { 1300 + "shortcode": "C9UGGdyxgRQ", 1301 + "date": "2024-07-12", 1302 + "similarity": 0.5708, 1303 + "confidence": 0.9, 1304 + "confirmed": true, 1305 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C9UGGdyxgRQ.jpg", 1306 + "expression": "focused, eyes down", 1307 + "pose": "lying on stomach on a couch, using a laptop", 1308 + "description": "short brown hair, wearing a loose-fitting green t-shirt, lying on a gray couch with white and green bedding draped over.", 1309 + "location": "modern living room with a couch", 1310 + "style": "casual phone snapshot", 1311 + "framing": "medium shot waist-up", 1312 + "domain": "kidlisp", 1313 + "tags": [ 1314 + "laptop", 1315 + "couch", 1316 + "casual", 1317 + "home", 1318 + "relaxed" 1319 + ], 1320 + "caption": "Lazy Sunday vibes with my laptop.", 1321 + "n_other_people": 0 1322 + }, 1323 + { 1324 + "shortcode": "C9MdR2nRoIY", 1325 + "date": "2024-07-09", 1326 + "similarity": 0.5142, 1327 + "confidence": 0.9, 1328 + "confirmed": true, 1329 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C9MdR2nRoIY.jpg", 1330 + "expression": "focused with a soft smile", 1331 + "pose": "seated outdoors, hands clasped in front of face, leaning slightly forward over a laptop", 1332 + "description": "jeffrey has medium-length, slightly messy brown hair, no beard, and is wearing a green t-shirt and blue pants. He has a laptop on his lap.", 1333 + "location": "outdoor balcony or terrace", 1334 + "style": "casual phone photo", 1335 + "framing": "medium shot waist-up", 1336 + "domain": "other", 1337 + "tags": [ 1338 + "laptop", 1339 + "balcony", 1340 + "evening", 1341 + "casual", 1342 + "thinking" 1343 + ], 1344 + "caption": "Balcony musings with a view.", 1345 + "n_other_people": 0 1346 + }, 1347 + { 1348 + "shortcode": "C9MdQ0ux4", 1349 + "date": "2024-07-09", 1350 + "similarity": 0.501, 1351 + "confidence": 0.85, 1352 + "confirmed": true, 1353 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C9MdQ0ux4.jpg", 1354 + "expression": "focused, eyes on laptop", 1355 + "pose": "sitting at a table with a laptop, hand supporting chin", 1356 + "description": "medium-length dark hair, wearing a bright pink shirt, no visible beard", 1357 + "location": "casual cafe with large windows", 1358 + "style": "casual phone snapshot", 1359 + "framing": "wide environmental", 1360 + "domain": "coding", 1361 + "tags": [ 1362 + "cafe", 1363 + "laptop", 1364 + "coding", 1365 + "casual", 1366 + "afternoon" 1367 + ], 1368 + "caption": "Deep in code with a side of tacos.", 1369 + "n_other_people": 0 1370 + }, 1371 + { 1372 + "shortcode": "C87cCVdv2a8", 1373 + "date": "2024-07-02", 1374 + "similarity": 0.5043, 1375 + "confidence": 0.85, 1376 + "confirmed": true, 1377 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C87cCVdv2a8.jpg", 1378 + "expression": "slight smile, looking sideways", 1379 + "pose": "sitting on outdoor concrete steps with a laptop on his lap", 1380 + "description": "medium-length hair, sandy brown, no beard, wearing a light green t-shirt and black pants", 1381 + "location": "elevated outdoor residential area", 1382 + "style": "casual phone photo", 1383 + "framing": "medium shot", 1384 + "domain": "travel-or-outdoor", 1385 + "tags": [ 1386 + "laptop", 1387 + "outdoors", 1388 + "sunset", 1389 + "casual" 1390 + ], 1391 + "caption": "Enjoying the golden hour with some work vibes.", 1392 + "n_other_people": 0 1393 + }, 1394 + { 1395 + "shortcode": "C87cDYcPqhn", 1396 + "date": "2024-07-02", 1397 + "similarity": 0.5743, 1398 + "confidence": 0.9, 1399 + "confirmed": true, 1400 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C87cDYcPqhn.jpg", 1401 + "expression": "focused, eyes down", 1402 + "pose": "standing on a sidewalk, looking at a phone in both hands", 1403 + "description": "short brown hair, no beard, wearing a light green shirt with a graphic and a striped shawl over shoulders.", 1404 + "location": "sidewalk in front of a building with taped-up windows", 1405 + "style": "casual phone snapshot", 1406 + "framing": "medium shot waist-up", 1407 + "domain": "social", 1408 + "tags": [ 1409 + "phone", 1410 + "striped shawl", 1411 + "night", 1412 + "sidewalk", 1413 + "city lights" 1414 + ], 1415 + "caption": "Late night city vibes, checking the latest updates 📱🌃", 1416 + "n_other_people": 1 1417 + }, 1418 + { 1419 + "shortcode": "C8qbLqNRaTz", 1420 + "date": "2024-06-26", 1421 + "similarity": 0.6202, 1422 + "confidence": 0.95, 1423 + "confirmed": true, 1424 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C8qbLqNRaTz.jpg", 1425 + "expression": "playfully shouting", 1426 + "pose": "crouching low on a concrete ledge, holding bags in both hands with arms outstretched", 1427 + "description": "medium-length brown hair, no beard, wearing a white shirt, dark pants, and holding colorful bags. The shirt is slightly open at the collar, and he appears active.", 1428 + "location": "exterior, urban building courtyard", 1429 + "style": "casual outdoor snapshot", 1430 + "framing": "full body, wide shot showing environment", 1431 + "domain": "travel-or-outdoor", 1432 + "tags": [ 1433 + "urban", 1434 + "bright", 1435 + "colorful bags", 1436 + "crouching", 1437 + "afternoon" 1438 + ], 1439 + "caption": "Balancing act, kind of like life!", 1440 + "n_other_people": 0 1441 + }, 1442 + { 1443 + "shortcode": "C8h03IhvCq0", 1444 + "date": "2024-06-22", 1445 + "similarity": 0.6676, 1446 + "confidence": 0.9, 1447 + "confirmed": true, 1448 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C8h03IhvCq0.jpg", 1449 + "expression": "focused, eyes on screen", 1450 + "pose": "seated outdoors, typing on a laptop placed on lap", 1451 + "description": "Medium-length brown hair, white button-down shirt slightly rumpled, black pants, turquoise and black shoes, butterfly neck tattoo.", 1452 + "location": "urban rooftop garden with red metal beams", 1453 + "style": "casual candid", 1454 + "framing": "medium shot seated", 1455 + "domain": "coding", 1456 + "tags": [ 1457 + "laptop", 1458 + "outdoor", 1459 + "coding", 1460 + "urban garden", 1461 + "afternoon" 1462 + ], 1463 + "caption": "Lost in code on a sunny rooftop 🌿💻", 1464 + "n_other_people": 0 1465 + }, 1466 + { 1467 + "shortcode": "C8Y7lxkO0-g", 1468 + "date": "2024-06-19", 1469 + "similarity": 0.5954, 1470 + "confidence": 0.9, 1471 + "confirmed": true, 1472 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C8Y7lxkO0-g.jpg", 1473 + "expression": "soft smile", 1474 + "pose": "walking a dog on a sidewalk, holding a leash and looking at the camera", 1475 + "description": "Medium-length brown hair, clean-shaven, wearing a white open button-up over a beige shirt, with blue pants and black shoes. Holding a dog leash and a green dog waste bag.", 1476 + "location": "residential neighborhood sidewalk", 1477 + "style": "casual phone snapshot", 1478 + "framing": "full body shot", 1479 + "domain": "travel-or-outdoor", 1480 + "tags": [ 1481 + "dog", 1482 + "walking", 1483 + "sunny", 1484 + "neighborhood", 1485 + "casual" 1486 + ], 1487 + "caption": "Afternoon strolls with my favorite pup.", 1488 + "n_other_people": 0 1489 + }, 1490 + { 1491 + "shortcode": "C7IYJoLxPj-", 1492 + "date": "2024-05-19", 1493 + "similarity": 0.5632, 1494 + "confidence": 0.95, 1495 + "confirmed": true, 1496 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C7IYJoLxPj-.jpg", 1497 + "expression": "neutral, slightly perplexed", 1498 + "pose": "leaning forward with an icicle hanging from nostril", 1499 + "description": "messy, light brown hair, wearing a light pink sweatshirt without a beard or glasses", 1500 + "location": "outdoors with a clear blue sky and trees visible", 1501 + "style": "casual photo with playful, candid vibe", 1502 + "framing": "tight close-up of face", 1503 + "domain": "solo-portrait", 1504 + "tags": [ 1505 + "icicle", 1506 + "sunny", 1507 + "pink sweatshirt", 1508 + "playful", 1509 + "outdoors" 1510 + ], 1511 + "caption": "Winter got me like 🌬️😂", 1512 + "n_other_people": 0 1513 + }, 1514 + { 1515 + "shortcode": "C6XoW7MrQfA", 1516 + "date": "2024-04-30", 1517 + "similarity": 0.7407, 1518 + "confidence": 0.95, 1519 + "confirmed": true, 1520 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C6XoW7MrQfA.jpg", 1521 + "expression": "soft smile", 1522 + "pose": "standing outdoors holding a granola bar", 1523 + "description": "medium-length brown hair, wearing a tie-dye jacket over a red patterned hoodie and black pants, no beard.", 1524 + "location": "residential neighborhood outdoors", 1525 + "style": "casual photo", 1526 + "framing": "medium shot waist-up", 1527 + "domain": "travel-or-outdoor", 1528 + "tags": [ 1529 + "outdoor", 1530 + "hoodie", 1531 + "tie-dye", 1532 + "afternoon", 1533 + "granola bar" 1534 + ], 1535 + "caption": "Enjoying a snack on a breezy afternoon.", 1536 + "n_other_people": 0 1537 + }, 1538 + { 1539 + "shortcode": "C57zw5WugdF", 1540 + "date": "2024-04-19", 1541 + "similarity": 0.657, 1542 + "confidence": 0.95, 1543 + "confirmed": true, 1544 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C57zw5WugdF.jpg", 1545 + "expression": "soft smile, relaxed", 1546 + "pose": "standing casually with one hand holding a plush toy in front of the body", 1547 + "description": "Medium-length brown hair, slightly tousled. Wearing a pink t-shirt with colorful graphics and the text 'Till Death do our part', holding a small purple plush toy. No visible beard.", 1548 + "location": "room with white walls and a sliding door with vertical blinds", 1549 + "style": "casual phone selfie", 1550 + "framing": "medium shot waist-up", 1551 + "domain": "solo-portrait", 1552 + "tags": [ 1553 + "pink t-shirt", 1554 + "plush toy", 1555 + "casual", 1556 + "indoor" 1557 + ], 1558 + "caption": "Just hanging out with my plush buddy!", 1559 + "n_other_people": 0 1560 + }, 1561 + { 1562 + "shortcode": "C57z3g1uStM", 1563 + "date": "2024-04-19", 1564 + "similarity": 0.6661, 1565 + "confidence": 0.9, 1566 + "confirmed": true, 1567 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C57z3g1uStM.jpg", 1568 + "expression": "neutral, slightly raised eyebrows", 1569 + "pose": "sitting at a wooden desk, looking towards the camera", 1570 + "description": "Medium-length, light brown hair, clean-shaven. Wearing a green and white tie-dye hoodie.", 1571 + "location": "cozy wooden attic room", 1572 + "style": "casual phone selfie", 1573 + "framing": "medium shot waist-up", 1574 + "domain": "solo-portrait", 1575 + "tags": [ 1576 + "attic", 1577 + "hoodie", 1578 + "green", 1579 + "selfie", 1580 + "indoors" 1581 + ], 1582 + "caption": "Chillin' in my cozy nook 🤙🌿", 1583 + "n_other_people": 0 1584 + }, 1585 + { 1586 + "shortcode": "C5wUfUVyaGZ", 1587 + "date": "2024-04-14", 1588 + "similarity": 0.6677, 1589 + "confidence": 0.95, 1590 + "confirmed": true, 1591 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C5wUfUVyaGZ.jpg", 1592 + "expression": "soft smile, looking downwards.", 1593 + "pose": "walking with two basketballs, one in each hand, on a path next to train tracks.", 1594 + "description": "medium-length hair blowing in the wind, clean-shaven face, wearing a faded red sweatshirt with a white shirt tied around the waist, black pants.", 1595 + "location": "outdoors near train tracks with a residential building in the background.", 1596 + "style": "informal outdoor shot", 1597 + "framing": "medium shot waist-up", 1598 + "domain": "travel-or-outdoor", 1599 + "tags": [ 1600 + "basketball", 1601 + "outdoors", 1602 + "train tracks", 1603 + "casual", 1604 + "afternoon" 1605 + ], 1606 + "caption": "Ballin' on a cloudy day!", 1607 + "n_other_people": 0 1608 + }, 1609 + { 1610 + "shortcode": "C5AYt_fukM0", 1611 + "date": "2024-03-27", 1612 + "similarity": 0.6803, 1613 + "confidence": 0.95, 1614 + "confirmed": true, 1615 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C5AYt_fukM0.jpg", 1616 + "expression": "soft smile", 1617 + "pose": "standing, holding a book with both hands into his chest, wearing a backpack.", 1618 + "description": "Medium-length brown hair, slight stubble, wearing a black t-shirt with white print and gray pants, carrying a colorful book titled 'AARON'S CODE'.", 1619 + "location": "workshop or studio with shelves and a chair", 1620 + "style": "casual phone photo", 1621 + "framing": "medium shot waist-up", 1622 + "domain": "studio-or-workshop", 1623 + "tags": [ 1624 + "book", 1625 + "studio", 1626 + "backpack", 1627 + "casual" 1628 + ], 1629 + "caption": "Always excited to dive into a new project!", 1630 + "n_other_people": 0 1631 + }, 1632 + { 1633 + "shortcode": "C46yRHGRYta", 1634 + "date": "2024-03-25", 1635 + "similarity": 0.7373, 1636 + "confidence": 0.95, 1637 + "confirmed": true, 1638 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C46yRHGRYta.jpg", 1639 + "expression": "neutral, soft gaze at camera", 1640 + "pose": "standing outdoors holding a laptop with one hand extended for a selfie", 1641 + "description": "Jeffrey has shoulder-length brown hair, slightly tousled. He is wearing a casual outfit with a striped shirt and a dark blue cardigan over a t-shirt. He appears to be holding a laptop.", 1642 + "location": "covered outdoor porch area with trees in the background", 1643 + "style": "casual phone selfie", 1644 + "framing": "medium shot upper-body", 1645 + "domain": "travel-or-outdoor", 1646 + "tags": [ 1647 + "outdoors", 1648 + "selfie", 1649 + "spring", 1650 + "nature", 1651 + "casual" 1652 + ], 1653 + "caption": "Enjoying the fresh air and a quiet moment outside.", 1654 + "n_other_people": 0 1655 + }, 1656 + { 1657 + "shortcode": "C4G1pS-Sq_u", 1658 + "date": "2024-03-04", 1659 + "similarity": 0.785, 1660 + "confidence": 0.95, 1661 + "confirmed": true, 1662 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C4G1pS-Sq_u.jpg", 1663 + "expression": "soft smile", 1664 + "pose": "sitting in the backseat of a car, taking a selfie", 1665 + "description": "shoulder-length brown hair, no beard, wearing a light-striped shirt under a dark blazer, seatbelt across chest.", 1666 + "location": "interior of a car", 1667 + "style": "casual phone selfie", 1668 + "framing": "tight close-up of face and upper torso", 1669 + "domain": "travel-or-outdoor", 1670 + "tags": [ 1671 + "car", 1672 + "selfie", 1673 + "backseat", 1674 + "casual" 1675 + ], 1676 + "caption": "Road trip vibes with a hint of adventure.", 1677 + "n_other_people": 0 1678 + }, 1679 + { 1680 + "shortcode": "C4G4FsJStPt", 1681 + "date": "2024-03-04", 1682 + "similarity": 0.7703, 1683 + "confidence": 0.95, 1684 + "confirmed": true, 1685 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C4G4FsJStPt.jpg", 1686 + "expression": "neutral, slight smile", 1687 + "pose": "standing next to another person in a casual setting", 1688 + "description": "Short hair, white shirt with a slightly unbuttoned neck, and gray trousers. No beard. Appears relaxed and casual.", 1689 + "location": "indoor event space with brick walls", 1690 + "style": "event snapshot", 1691 + "framing": "medium shot waist-up", 1692 + "domain": "social", 1693 + "tags": [ 1694 + "event", 1695 + "white shirt", 1696 + "evening", 1697 + "social gathering" 1698 + ], 1699 + "caption": "Enjoying a casual evening out.", 1700 + "n_other_people": 1 1701 + }, 1702 + { 1703 + "shortcode": "C3_WFg2PNjo", 1704 + "date": "2024-03-01", 1705 + "similarity": 0.7715, 1706 + "confidence": 0.95, 1707 + "confirmed": true, 1708 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C3_WFg2PNjo.jpg", 1709 + "expression": "slight smile", 1710 + "pose": "standing on a sidewalk holding a drink and a large patterned object", 1711 + "description": "Medium-length brown hair, casual blue hoodie over a white shirt with an orange detail, green pants, brown shoes. Carrying a light blue and red bag and holding a patterned elongated object.", 1712 + "location": "urban street with brick wall", 1713 + "style": "casual street snapshot", 1714 + "framing": "medium shot, full body", 1715 + "domain": "travel-or-outdoor", 1716 + "tags": [ 1717 + "sidewalk", 1718 + "casual", 1719 + "urban", 1720 + "afternoon", 1721 + "patterned object" 1722 + ], 1723 + "caption": "Street strolling with style and sunshine ☀️", 1724 + "n_other_people": 0 1725 + }, 1726 + { 1727 + "shortcode": "C3_WPJ1vaZT", 1728 + "date": "2024-03-01", 1729 + "similarity": 0.6626, 1730 + "confidence": 0.9, 1731 + "confirmed": true, 1732 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C3_WPJ1vaZT.jpg", 1733 + "expression": "focused look", 1734 + "pose": "seated in a car seat, holding a snack in one hand and a laptop on the lap", 1735 + "description": "Medium-length, dark hair, wearing a white open shirt over a graphic brown t-shirt and blue jeans.", 1736 + "location": "inside a car", 1737 + "style": "candid in-car shot", 1738 + "framing": "medium shot showing upper body and part of the car seat", 1739 + "domain": "other", 1740 + "tags": [ 1741 + "car", 1742 + "night", 1743 + "laptop", 1744 + "casual", 1745 + "snack" 1746 + ], 1747 + "caption": "Late-night snack and work vibes.", 1748 + "n_other_people": 0 1749 + }, 1750 + { 1751 + "shortcode": "C3qjHDLytDd", 1752 + "date": "2024-02-22", 1753 + "similarity": 0.7184, 1754 + "confidence": 0.95, 1755 + "confirmed": true, 1756 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C3qjHDLytDd.jpg", 1757 + "expression": "soft smile", 1758 + "pose": "seated in a restaurant booth, taking a selfie with another person", 1759 + "description": "Medium-length brown hair with slight wave, wearing a light button-up shirt open over a gray t-shirt.", 1760 + "location": "diner with wood-paneled walls adorned with framed photos", 1761 + "style": "casual phone selfie", 1762 + "framing": "medium shot waist-up", 1763 + "domain": "social", 1764 + "tags": [ 1765 + "diner", 1766 + "selfie", 1767 + "afternoon", 1768 + "casual", 1769 + "framed photos" 1770 + ], 1771 + "caption": "Sunny afternoon vibes at the diner with good company.", 1772 + "n_other_people": 1 1773 + }, 1774 + { 1775 + "shortcode": "C3mcxIoufaK", 1776 + "date": "2024-02-21", 1777 + "similarity": 0.7041, 1778 + "confidence": 0.95, 1779 + "confirmed": true, 1780 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C3mcxIoufaK.jpg", 1781 + "expression": "soft smile", 1782 + "pose": "standing and holding a lit candle with both hands, looking at the camera.", 1783 + "description": "medium-length brown hair, clean-shaven face, wearing a green tie-dye hoodie with a white drawstring and a strap of a bag visible on shoulder.", 1784 + "location": "against a lime green wall", 1785 + "style": "candid low-light capture", 1786 + "framing": "medium shot from waist up", 1787 + "domain": "solo-portrait", 1788 + "tags": [ 1789 + "candle", 1790 + "green wall", 1791 + "evening", 1792 + "tie-dye hoodie" 1793 + ], 1794 + "caption": "Let your light shine bright, even in the darkest of rooms.", 1795 + "n_other_people": 0 1796 + }, 1797 + { 1798 + "shortcode": "C3jDDK6vjq3", 1799 + "date": "2024-02-19", 1800 + "similarity": 0.7361, 1801 + "confidence": 0.95, 1802 + "confirmed": true, 1803 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C3jDDK6vjq3.jpg", 1804 + "expression": "soft smile", 1805 + "pose": "sitting at a restaurant table, holding a fork over a plate of food", 1806 + "description": "Medium-length brown hair, no beard. Wearing a bright pink t-shirt with colorful graphic text. Casual appearance.", 1807 + "location": "small casual restaurant", 1808 + "style": "casual phone snapshot", 1809 + "framing": "medium shot, chest-up", 1810 + "domain": "cooking-or-eating", 1811 + "tags": [ 1812 + "restaurant", 1813 + "pink shirt", 1814 + "casual", 1815 + "dining", 1816 + "interior" 1817 + ], 1818 + "caption": "Enjoying a colorful meal out!", 1819 + "n_other_people": 0 1820 + }, 1821 + { 1822 + "shortcode": "C3ZRDggrOhK", 1823 + "date": "2024-02-16", 1824 + "similarity": 0.6954, 1825 + "confidence": 0.9, 1826 + "confirmed": true, 1827 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C3ZRDggrOhK.jpg", 1828 + "expression": "soft smile", 1829 + "pose": "sitting with two others, facing the camera", 1830 + "description": "medium-length brown hair, wearing a blue shirt", 1831 + "location": "exterior of a building at night", 1832 + "style": "casual phone selfie", 1833 + "framing": "medium shot waist-up", 1834 + "domain": "social", 1835 + "tags": [ 1836 + "night", 1837 + "building", 1838 + "group selfie", 1839 + "outdoor gathering" 1840 + ], 1841 + "caption": "Enjoying a night out with friends underneath the stars.", 1842 + "n_other_people": 2 1843 + }, 1844 + { 1845 + "shortcode": "C3TPn2Yv9uO", 1846 + "date": "2024-02-13", 1847 + "similarity": 0.5725, 1848 + "confidence": 0.95, 1849 + "confirmed": true, 1850 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C3TPn2Yv9uO.jpg", 1851 + "expression": "focused, looking down at the instrument", 1852 + "pose": "standing, strumming a ukulele with attention on the strings", 1853 + "description": "Shoulder-length brown hair, wearing a bright green hoodie and blue pants, holding a ukulele with colorful stickers.", 1854 + "location": "art studio or workshop", 1855 + "style": "casual phone snapshot", 1856 + "framing": "medium shot waist-up", 1857 + "domain": "art", 1858 + "tags": [ 1859 + "ukulele", 1860 + "green hoodie", 1861 + "art studio", 1862 + "creative", 1863 + "photo on wall" 1864 + ], 1865 + "caption": "Exploring new sounds in the studio.", 1866 + "n_other_people": 0 1867 + }, 1868 + { 1869 + "shortcode": "C2gTLs6sFKe", 1870 + "date": "2024-01-25", 1871 + "similarity": 0.7136, 1872 + "confidence": 0.95, 1873 + "confirmed": true, 1874 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/C2gTLs6sFKe.jpg", 1875 + "expression": "broad smile", 1876 + "pose": "sitting at a dining table, arm around a friend", 1877 + "description": "shoulder-length brown hair, wearing a white shirt and a green undershirt with no beard.", 1878 + "location": "dining restaurant", 1879 + "style": "candid social photo", 1880 + "framing": "medium shot waist-up", 1881 + "domain": "social", 1882 + "tags": [ 1883 + "dinner", 1884 + "restaurant", 1885 + "friends", 1886 + "evening", 1887 + "smiles" 1888 + ], 1889 + "caption": "Enjoying a cozy dinner with wonderful company.", 1890 + "n_other_people": 2 1891 + }, 1892 + { 1893 + "shortcode": "Cq0-wfGON2-", 1894 + "date": "2023-04-09", 1895 + "similarity": 0.748, 1896 + "confidence": 0.95, 1897 + "confirmed": true, 1898 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Cq0-wfGON2-.jpg", 1899 + "expression": "joyful smile", 1900 + "pose": "swinging high on a playground swing, holding the chains with both hands", 1901 + "description": "long brown hair blowing in the wind, no beard, wearing a light pink shirt and burgundy corduroy pants, black shoes", 1902 + "location": "children's playground with swings near a lake", 1903 + "style": "candid outdoor shot", 1904 + "framing": "full-body shot, centered on swing", 1905 + "domain": "travel-or-outdoor", 1906 + "tags": [ 1907 + "playground", 1908 + "swing", 1909 + "outdoor", 1910 + "sunny", 1911 + "fun" 1912 + ], 1913 + "caption": "Just swinging into the weekend like... 🌞", 1914 + "n_other_people": 0 1915 + }, 1916 + { 1917 + "shortcode": "Cql-wQNOVm7", 1918 + "date": "2023-04-04", 1919 + "similarity": 0.521, 1920 + "confidence": 0.95, 1921 + "confirmed": true, 1922 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Cql-wQNOVm7.jpg", 1923 + "expression": "attentive, open-mouthed gaze", 1924 + "pose": "standing in front of a Dance Dance Revolution machine, looking at the screen", 1925 + "description": "medium-length brown hair, wearing a tie-dye t-shirt with an illustration of Jack Skellington, casual appearance.", 1926 + "location": "arcade with graffiti-covered walls", 1927 + "style": "candid arcade snapshot", 1928 + "framing": "medium shot from waist-up", 1929 + "domain": "other", 1930 + "tags": [ 1931 + "arcade", 1932 + "game machine", 1933 + "tie-dye", 1934 + "graffiti", 1935 + "Jack Skellington" 1936 + ], 1937 + "caption": "DDR nights are the best nights!", 1938 + "n_other_people": 0 1939 + }, 1940 + { 1941 + "shortcode": "ClzWd6ZppcK", 1942 + "date": "2022-12-05", 1943 + "similarity": 0.7616, 1944 + "confidence": 0.95, 1945 + "confirmed": true, 1946 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/ClzWd6ZppcK.jpg", 1947 + "expression": "neutral, with eyes slightly wide", 1948 + "pose": "standing on a path, holding a tote bag over one shoulder and turning slightly to face the camera", 1949 + "description": "Medium-length brown hair, clean-shaven, wearing a vibrant red fluffy sweater with bear motifs and holding a colorful pink and yellow tote bag.", 1950 + "location": "residential alley with brick and wooden buildings", 1951 + "style": "casual phone selfie", 1952 + "framing": "medium shot waist-up with environmental context", 1953 + "domain": "travel-or-outdoor", 1954 + "tags": [ 1955 + "sweater", 1956 + "tote bag", 1957 + "alley", 1958 + "nature", 1959 + "afternoon" 1960 + ], 1961 + "caption": "Exploring the colorful streets on a lovely fall day.", 1962 + "n_other_people": 0 1963 + }, 1964 + { 1965 + "shortcode": "CjHORTrLMnp", 1966 + "date": "2022-09-30", 1967 + "similarity": 0.6238, 1968 + "confidence": 0.95, 1969 + "confirmed": true, 1970 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CjHORTrLMnp.jpg", 1971 + "expression": "looking upward, slightly open-mouthed", 1972 + "pose": "sitting on grass, one knee up, reaching out with hand visible close to camera", 1973 + "description": "Medium-length hair slightly tousled, wearing a white shirt over a light-colored t-shirt with a graphic print. Blue pants, large over-ear headphones with floral design.", 1974 + "location": "outdoor park with trees", 1975 + "style": "candid outdoor photo", 1976 + "framing": "medium close-up focusing on face and upper body", 1977 + "domain": "travel-or-outdoor", 1978 + "tags": [ 1979 + "headphones", 1980 + "outdoor", 1981 + "park", 1982 + "casual", 1983 + "nature" 1984 + ], 1985 + "caption": "Lost in thought amidst nature's embrace.", 1986 + "n_other_people": 0 1987 + }, 1988 + { 1989 + "shortcode": "ChkF357rZXh", 1990 + "date": "2022-08-22", 1991 + "similarity": 0.5957, 1992 + "confidence": 0.95, 1993 + "confirmed": true, 1994 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/ChkF357rZXh.jpg", 1995 + "expression": "neutral, slight focus", 1996 + "pose": "standing in front of a mirror, taking a selfie with a smartphone", 1997 + "description": "Medium-length light brown hair with headphones over ears, wearing a black and white patterned hoodie, no visible beard.", 1998 + "location": "airplane lavatory", 1999 + "style": "selfie with vibrant lighting", 2000 + "framing": "medium shot waist-up", 2001 + "domain": "travel-or-outdoor", 2002 + "tags": [ 2003 + "airplane", 2004 + "selfie", 2005 + "headphones", 2006 + "mirror", 2007 + "blue lighting" 2008 + ], 2009 + "caption": "Plane mirror selfies are a vibe.", 2010 + "n_other_people": 0 2011 + }, 2012 + { 2013 + "shortcode": "ChYGAVJPmWu", 2014 + "date": "2022-08-17", 2015 + "similarity": 0.6465, 2016 + "confidence": 0.9, 2017 + "confirmed": true, 2018 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/ChYGAVJPmWu.jpg", 2019 + "expression": "calm, looking upward and to the side", 2020 + "pose": "standing on one leg with the other knee raised, holding a tote bag", 2021 + "description": "Long, slightly messy hair, no beard, wearing an orange shirt and brown pants with white embroidery. Holding a floral tote bag and wearing colorful sandals.", 2022 + "location": "outdoor area with a residential vibe", 2023 + "style": "casual phone shot with vibrant colors", 2024 + "framing": "medium shot, capturing full torso and part of the legs", 2025 + "domain": "travel-or-outdoor", 2026 + "tags": [ 2027 + "outdoor", 2028 + "casual", 2029 + "floral tote", 2030 + "sunny", 2031 + "vibrant colors" 2032 + ], 2033 + "caption": "Embracing the sun and good vibes.", 2034 + "n_other_people": 0 2035 + }, 2036 + { 2037 + "shortcode": "ChYGAVJPmWu", 2038 + "date": "2022-08-17", 2039 + "similarity": 0.6922, 2040 + "confidence": 0.95, 2041 + "confirmed": true, 2042 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/ChYGAVJPmWu.jpg", 2043 + "expression": "slight smile", 2044 + "pose": "holding a bag and baseball, looking down at the camera", 2045 + "description": "Medium-length light brown hair; no beard; wearing a striped green and brown shirt with a white striped overshirt; holding a floral-patterned bag and a baseball.", 2046 + "location": "outdoors under a bright blue sky", 2047 + "style": "casual phone selfie", 2048 + "framing": "medium shot waist-up", 2049 + "domain": "travel-or-outdoor", 2050 + "tags": [ 2051 + "outdoor", 2052 + "baseball", 2053 + "floral bag", 2054 + "sunlight", 2055 + "selfie" 2056 + ], 2057 + "caption": "Just catching some rays and adventures!", 2058 + "n_other_people": 0 2059 + }, 2060 + { 2061 + "shortcode": "ChHCaAQOlSf", 2062 + "date": "2022-08-11", 2063 + "similarity": 0.7112, 2064 + "confidence": 0.95, 2065 + "confirmed": true, 2066 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/ChHCaAQOlSf.jpg", 2067 + "expression": "neutral with slightly pursed lips", 2068 + "pose": "standing outdoors, facing the camera", 2069 + "description": "Long, tousled brown hair, clean-shaven, wearing a striped beige and green t-shirt.", 2070 + "location": "outdoor area with visible moon in the background", 2071 + "style": "candid nighttime snapshot", 2072 + "framing": "medium shot waist-up", 2073 + "domain": "solo-portrait", 2074 + "tags": [ 2075 + "night", 2076 + "outdoors", 2077 + "moon", 2078 + "striped shirt" 2079 + ], 2080 + "caption": "Moonlight vibes with a touch of serenity.", 2081 + "n_other_people": 0 2082 + }, 2083 + { 2084 + "shortcode": "Cg3ROYNLAwD", 2085 + "date": "2022-08-05", 2086 + "similarity": 0.6607, 2087 + "confidence": 0.9, 2088 + "confirmed": true, 2089 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Cg3ROYNLAwD.jpg", 2090 + "expression": "focused, slight smile", 2091 + "pose": "crouching on rocks, hands and feet touching surface, looking towards camera", 2092 + "description": "long brown hair, no beard, shirtless, wearing light shorts", 2093 + "location": "woodland stream with rocks and greenery", 2094 + "style": "nature adventure snapshot", 2095 + "framing": "medium shot showing natural surroundings", 2096 + "domain": "travel-or-outdoor", 2097 + "tags": [ 2098 + "nature", 2099 + "stream", 2100 + "outdoors", 2101 + "afternoon", 2102 + "adventure" 2103 + ], 2104 + "caption": "Exploring nature's serene corners.", 2105 + "n_other_people": 0 2106 + }, 2107 + { 2108 + "shortcode": "CgylatuOm5k", 2109 + "date": "2022-08-03", 2110 + "similarity": 0.7023, 2111 + "confidence": 0.95, 2112 + "confirmed": true, 2113 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CgylatuOm5k.jpg", 2114 + "expression": "neutral, slight smile", 2115 + "pose": "leaning slightly forward, looking directly at the camera", 2116 + "description": "Medium-length, slightly messy brown hair, no beard, wearing a white button-up shirt with headphones.", 2117 + "location": "forest or wooded area next to a cabin", 2118 + "style": "casual phone selfie", 2119 + "framing": "tight close-up of face", 2120 + "domain": "travel-or-outdoor", 2121 + "tags": [ 2122 + "nature", 2123 + "headphones", 2124 + "cabin", 2125 + "outdoor", 2126 + "afternoon" 2127 + ], 2128 + "caption": "Enjoying the peaceful vibes of nature.", 2129 + "n_other_people": 0 2130 + }, 2131 + { 2132 + "shortcode": "Cf4E_tBLfDp", 2133 + "date": "2022-07-11", 2134 + "similarity": 0.5802, 2135 + "confidence": 0.95, 2136 + "confirmed": true, 2137 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Cf4E_tBLfDp.jpg", 2138 + "expression": "relaxed smile", 2139 + "pose": "leaning back with hands on head, outdoors.", 2140 + "description": "medium length brown hair, messy and slightly windswept, no beard, wearing a white pinstripe shirt.", 2141 + "location": "outdoor setting, possibly a park or garden.", 2142 + "style": "casual outdoor snapshot", 2143 + "framing": "tight close-up of face and shoulders.", 2144 + "domain": "solo-portrait", 2145 + "tags": [ 2146 + "outdoors", 2147 + "sunny", 2148 + "relaxed", 2149 + "natural light" 2150 + ], 2151 + "caption": "Feeling the sun and the breeze.", 2152 + "n_other_people": 0 2153 + }, 2154 + { 2155 + "shortcode": "CfSvky9MPDY", 2156 + "date": "2022-06-27", 2157 + "similarity": 0.6308, 2158 + "confidence": 0.95, 2159 + "confirmed": true, 2160 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CfSvky9MPDY.jpg", 2161 + "expression": "neutral, slightly open mouth", 2162 + "pose": "standing outdoors, holding a basketball and looking towards the camera", 2163 + "description": "Long brown hair, slightly messy, wearing a light-colored casual shirt. No visible beard. Holding a basketball.", 2164 + "location": "outdoor park with a pond and trees", 2165 + "style": "casual outdoor selfie", 2166 + "framing": "medium close-up showing upper body", 2167 + "domain": "travel-or-outdoor", 2168 + "tags": [ 2169 + "basketball", 2170 + "outdoor", 2171 + "park", 2172 + "sunny", 2173 + "casual" 2174 + ], 2175 + "caption": "Sunshine, hoops, and endless summer vibes.", 2176 + "n_other_people": 0 2177 + }, 2178 + { 2179 + "shortcode": "CfNn5L8skCM", 2180 + "date": "2022-06-25", 2181 + "similarity": 0.5656, 2182 + "confidence": 0.95, 2183 + "confirmed": true, 2184 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CfNn5L8skCM.jpg", 2185 + "expression": "neutral, slightly curious gaze", 2186 + "pose": "sitting in the car, facing the camera, with arm resting on the seat in front of him", 2187 + "description": "Long dark hair, wet or styled back, with headphones on; wearing a white shirt with intricate brown embellishments.", 2188 + "location": "inside a car", 2189 + "style": "casual phone selfie", 2190 + "framing": "medium shot mainly showing upper body and head", 2191 + "domain": "travel-or-outdoor", 2192 + "tags": [ 2193 + "car", 2194 + "headphones", 2195 + "travel", 2196 + "casual", 2197 + "daylight" 2198 + ], 2199 + "caption": "Road trip vibes with a side of adventure!", 2200 + "n_other_people": 0 2201 + }, 2202 + { 2203 + "shortcode": "Ce-q41du49x", 2204 + "date": "2022-06-19", 2205 + "similarity": 0.5548, 2206 + "confidence": 0.95, 2207 + "confirmed": true, 2208 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Ce-q41du49x.jpg", 2209 + "expression": "focused, looking at food", 2210 + "pose": "sitting at an outdoor table, eating from a bowl with a spoon", 2211 + "description": "Medium-length brown hair, clean-shaven, wearing a white button-up shirt.", 2212 + "location": "outdoor cafe", 2213 + "style": "casual candid", 2214 + "framing": "medium shot waist-up", 2215 + "domain": "cooking-or-eating", 2216 + "tags": [ 2217 + "outdoor dining", 2218 + "casual", 2219 + "sunny day", 2220 + "cafe", 2221 + "eating" 2222 + ], 2223 + "caption": "Enjoying some afternoon bites at my favorite cafe.", 2224 + "n_other_people": 3 2225 + }, 2226 + { 2227 + "shortcode": "CezofJWl3je", 2228 + "date": "2022-06-15", 2229 + "similarity": 0.633, 2230 + "confidence": 0.95, 2231 + "confirmed": true, 2232 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CezofJWl3je.jpg", 2233 + "expression": "enthusiastic, mouth open wide in a joyful shout", 2234 + "pose": "posed with one foot forward, holding a drink, the other hand raised with fingers spread wide", 2235 + "description": "Medium-length dark hair, partially obscured by a large white shirt that is open over a bright orange T-shirt with a printed design. Wearing loose, reddish-brown pants with white patterns and black shoes. Holding a cup, possibly with iced coffee.", 2236 + "location": "sidewalk in front of a street mural with graffiti and store signage", 2237 + "style": "vibrant street photography with a playful approach", 2238 + "framing": "medium shot showing full body and context", 2239 + "domain": "travel-or-outdoor", 2240 + "tags": [ 2241 + "street art", 2242 + "Venice Beach", 2243 + "graffiti", 2244 + "colorful", 2245 + "iced coffee" 2246 + ], 2247 + "caption": "Living my best life in a riot of colors and caffeine!", 2248 + "n_other_people": 0 2249 + }, 2250 + { 2251 + "shortcode": "CemVHeePjSP", 2252 + "date": "2022-06-09", 2253 + "similarity": 0.5613, 2254 + "confidence": 0.85, 2255 + "confirmed": true, 2256 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CemVHeePjSP.jpg", 2257 + "expression": "neutral with a relaxed gaze", 2258 + "pose": "lying on the ground or propped against something, looking at the camera", 2259 + "description": "Jeffrey has medium-length brown hair and is wearing a white shirt with colorful designs. He appears relaxed and casual, partially visible in the image.", 2260 + "location": "outdoors near a river or water feature", 2261 + "style": "digital collage with art overlay", 2262 + "framing": "medium shot with artistic elements", 2263 + "domain": "art", 2264 + "tags": [ 2265 + "art", 2266 + "digital collage", 2267 + "colorful", 2268 + "river", 2269 + "baseball" 2270 + ], 2271 + "caption": "Mixing art and nature in vibrant chaos.", 2272 + "n_other_people": 0 2273 + }, 2274 + { 2275 + "shortcode": "Ceg-0VZl4_Z", 2276 + "date": "2022-06-07", 2277 + "similarity": 0.5709, 2278 + "confidence": 0.85, 2279 + "confirmed": true, 2280 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Ceg-0VZl4_Z.jpg", 2281 + "expression": "pensive, slight tiredness in eyes", 2282 + "pose": "leaning back with head on hand, reclining on a surface.", 2283 + "description": "Long brown hair, no beard, wearing a white t-shirt with text, resting head on hand.", 2284 + "location": "outdoor café with striped awning, possibly titled Loxie’s.", 2285 + "style": "artistic collage with mixed media", 2286 + "framing": "wide environmental shot with visual focus on the baseball and artwork", 2287 + "domain": "art", 2288 + "tags": [ 2289 + "artistic", 2290 + "baseball", 2291 + "mixed media", 2292 + "café" 2293 + ], 2294 + "caption": "Dreaming up new worlds with a touch of color.", 2295 + "n_other_people": 0 2296 + }, 2297 + { 2298 + "shortcode": "CeW5-NfFOXl", 2299 + "date": "2022-06-03", 2300 + "similarity": 0.767, 2301 + "confidence": 0.95, 2302 + "confirmed": true, 2303 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CeW5-NfFOXl.jpg", 2304 + "expression": "soft smile", 2305 + "pose": "holding up two colorful drawings, seated with elbows on a surface.", 2306 + "description": "medium-length brown hair, wearing a dark green hoodie with a white floral graphic, large round headphones with a pink and blue design around his neck.", 2307 + "location": "indoor room with plain white walls", 2308 + "style": "casual phone selfie", 2309 + "framing": "medium shot waist-up", 2310 + "domain": "kidlisp", 2311 + "tags": [ 2312 + "drawings", 2313 + "headphones", 2314 + "art", 2315 + "indoor", 2316 + "casual" 2317 + ], 2318 + "caption": "Art therapy vibes.", 2319 + "n_other_people": 0 2320 + }, 2321 + { 2322 + "shortcode": "Cd84_RSlDPG", 2323 + "date": "2022-05-24", 2324 + "similarity": 0.5717, 2325 + "confidence": 0.9, 2326 + "confirmed": true, 2327 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Cd84_RSlDPG.jpg", 2328 + "expression": "focused, eyes down", 2329 + "pose": "leaning forward, possibly over a table surface", 2330 + "description": "long, slightly wet hair, wearing a white t-shirt with a blue graphic, and uniquely patterned headphones.", 2331 + "location": "bright room with soft pink walls and a floral curtain", 2332 + "style": "candid smartphone capture", 2333 + "framing": "medium shot waist-up", 2334 + "domain": "other", 2335 + "tags": [ 2336 + "headphones", 2337 + "pink room", 2338 + "casual", 2339 + "focused" 2340 + ], 2341 + "caption": "Lost in tunes and focusing on the moment.", 2342 + "n_other_people": 0 2343 + }, 2344 + { 2345 + "shortcode": "Cd1MSBDFVh5", 2346 + "date": "2022-05-21", 2347 + "similarity": 0.6151, 2348 + "confidence": 0.95, 2349 + "confirmed": true, 2350 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Cd1MSBDFVh5.jpg", 2351 + "expression": "playful with tongue out", 2352 + "pose": "holding a hedge trimmer at arm's length towards the camera, slight lean", 2353 + "description": "Medium-length brown hair, slightly wet. Wearing an orange t-shirt. Large white headphones over ears.", 2354 + "location": "backyard garden", 2355 + "style": "casual outdoor selfie", 2356 + "framing": "tight close-up of face and tool", 2357 + "domain": "other", 2358 + "tags": [ 2359 + "gardening", 2360 + "hedge trimmer", 2361 + "sunny day", 2362 + "headphones" 2363 + ], 2364 + "caption": "Getting creative with garden tools!", 2365 + "n_other_people": 0 2366 + }, 2367 + { 2368 + "shortcode": "CdLxQIOlDEB", 2369 + "date": "2022-05-05", 2370 + "similarity": 0.65, 2371 + "confidence": 0.95, 2372 + "confirmed": true, 2373 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CdLxQIOlDEB.jpg", 2374 + "expression": "broad smile", 2375 + "pose": "sitting on an airport chair with one leg crossed over the other, arms raised in a playful gesture", 2376 + "description": "shoulder-length light brown hair, no beard, wearing a black graphic T-shirt and black pants, with black shoes and holding a small blue object.", 2377 + "location": "airport terminal", 2378 + "style": "candid travel snapshot", 2379 + "framing": "medium shot capturing full body seated and surrounding area", 2380 + "domain": "travel-or-outdoor", 2381 + "tags": [ 2382 + "airport", 2383 + "travel", 2384 + "graphic tee", 2385 + "playful gesture", 2386 + "afternoon", 2387 + "bright lighting" 2388 + ], 2389 + "caption": "Ready for takeoff with a smile!", 2390 + "n_other_people": 0 2391 + }, 2392 + { 2393 + "shortcode": "CdHS-ezvY2O", 2394 + "date": "2022-05-03", 2395 + "similarity": 0.5332, 2396 + "confidence": 0.95, 2397 + "confirmed": true, 2398 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CdHS-ezvY2O.jpg", 2399 + "expression": "cheerful with a wide smile", 2400 + "pose": "kneeling on the floor with one knee up, holding a slice of cheese, looking upwards at the camera", 2401 + "description": "Medium-length brown hair, no beard, wearing an orange t-shirt and green pants.", 2402 + "location": "attic space with a chalkboard covered in drawings and notes", 2403 + "style": "casual group photo", 2404 + "framing": "medium shot of three people with surrounding environment", 2405 + "domain": "social", 2406 + "tags": [ 2407 + "chalkboard", 2408 + "group", 2409 + "attic", 2410 + "casual", 2411 + "playful" 2412 + ], 2413 + "caption": "The ultimate trio of creativity and fun!", 2414 + "n_other_people": 2 2415 + }, 2416 + { 2417 + "shortcode": "Cct7JWSLbEB", 2418 + "date": "2022-04-24", 2419 + "similarity": 0.6027, 2420 + "confidence": 0.95, 2421 + "confirmed": true, 2422 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Cct7JWSLbEB.jpg", 2423 + "expression": "big smile", 2424 + "pose": "standing with one arm raised, holding hair, looking at the camera", 2425 + "description": "Shaggy brown hair, no beard, wearing a worn yellow shirt over an orange undershirt.", 2426 + "location": "small bathroom or similar interior space", 2427 + "style": "casual selfie", 2428 + "framing": "medium shot waist-up", 2429 + "domain": "solo-portrait", 2430 + "tags": [ 2431 + "bathroom", 2432 + "casual", 2433 + "selfie", 2434 + "floral curtain", 2435 + "soft light" 2436 + ], 2437 + "caption": "Casual home selfie moment.", 2438 + "n_other_people": 0 2439 + }, 2440 + { 2441 + "shortcode": "CcOxx2Xpr2g", 2442 + "date": "2022-04-12", 2443 + "similarity": 0.6311, 2444 + "confidence": 0.95, 2445 + "confirmed": true, 2446 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CcOxx2Xpr2g.jpg", 2447 + "expression": "neutral, slight tension at mouth", 2448 + "pose": "leaning close to a vehicle, holding a scraper", 2449 + "description": "shoulder-length brown hair, wearing a yellow quilted jacket and black graphic t-shirt, no beard", 2450 + "location": "outdoors near a camper-style vehicle", 2451 + "style": "candid winter selfie", 2452 + "framing": "tight close-up of face", 2453 + "domain": "other", 2454 + "tags": [ 2455 + "snow", 2456 + "winter", 2457 + "vehicle", 2458 + "yellow jacket" 2459 + ], 2460 + "caption": "Snowy adventures in style!", 2461 + "n_other_people": 0 2462 + }, 2463 + { 2464 + "shortcode": "CcMGUVKPtEn", 2465 + "date": "2022-04-10", 2466 + "similarity": 0.5923, 2467 + "confidence": 0.95, 2468 + "confirmed": true, 2469 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CcMGUVKPtEn.jpg", 2470 + "expression": "calm with a playful touch due to eye patches.", 2471 + "pose": "seated on a couch, looking forward with playful eye patches on.", 2472 + "description": "short, tousled hair, no beard, wearing a dark sweatshirt with print and bright pink pants.", 2473 + "location": "living room with a fireplace and shelves.", 2474 + "style": "casual fun photo", 2475 + "framing": "medium shot waist-up", 2476 + "domain": "kidlisp", 2477 + "tags": [ 2478 + "eye patches", 2479 + "living room", 2480 + "playful", 2481 + "child" 2482 + ], 2483 + "caption": "Masked up and ready for anything!", 2484 + "n_other_people": 1 2485 + }, 2486 + { 2487 + "shortcode": "CbtLAhHJ8BK", 2488 + "date": "2022-03-29", 2489 + "similarity": 0.6639, 2490 + "confidence": 0.95, 2491 + "confirmed": true, 2492 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CbtLAhHJ8BK.jpg", 2493 + "expression": "broad smile", 2494 + "pose": "standing upright, facing the camera", 2495 + "description": "short brown hair, wearing a black tuxedo with a bow tie, no beard", 2496 + "location": "studio-like space with plain walls", 2497 + "style": "formal portrait", 2498 + "framing": "medium shot waist-up", 2499 + "domain": "solo-portrait", 2500 + "tags": [ 2501 + "tuxedo", 2502 + "formal", 2503 + "portrait", 2504 + "indoor", 2505 + "bright lighting" 2506 + ], 2507 + "caption": "Looking sharp for the evening event!", 2508 + "n_other_people": 0 2509 + }, 2510 + { 2511 + "shortcode": "CabskJiroRn", 2512 + "date": "2022-02-26", 2513 + "similarity": 0.5508, 2514 + "confidence": 0.85, 2515 + "confirmed": true, 2516 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CabskJiroRn.jpg", 2517 + "expression": "relaxed, with a slight smile", 2518 + "pose": "sitting on a grassy hill, leaning back on one arm", 2519 + "description": "Medium-length hair, wearing a colorful patterned coat and sunglasses.", 2520 + "location": "open grassy hillside", 2521 + "style": "casual outdoor snapshot", 2522 + "framing": "medium shot", 2523 + "domain": "travel-or-outdoor", 2524 + "tags": [ 2525 + "hill", 2526 + "sunglasses", 2527 + "bright", 2528 + "leisure", 2529 + "nature", 2530 + "colorful coat" 2531 + ], 2532 + "caption": "Enjoying the sunshine on a breezy afternoon hike.", 2533 + "n_other_people": 0 2534 + }, 2535 + { 2536 + "shortcode": "CaRGgswLjc9", 2537 + "date": "2022-02-22", 2538 + "similarity": 0.5728, 2539 + "confidence": 0.95, 2540 + "confirmed": true, 2541 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CaRGgswLjc9.jpg", 2542 + "expression": "soft smile", 2543 + "pose": "seated in a car, leaning head on hand, looking towards the camera", 2544 + "description": "medium-length light brown hair, no beard, wearing a dark hoodie with colorful doodle designs and green headphones around neck.", 2545 + "location": "inside a car", 2546 + "style": "casual phone selfie", 2547 + "framing": "medium shot waist-up", 2548 + "domain": "travel-or-outdoor", 2549 + "tags": [ 2550 + "car", 2551 + "headphones", 2552 + "selfie", 2553 + "morning", 2554 + "casual" 2555 + ], 2556 + "caption": "Road trip vibes with sunshine and tunes.", 2557 + "n_other_people": 0 2558 + }, 2559 + { 2560 + "shortcode": "CZ21hQ8vc90", 2561 + "date": "2022-02-12", 2562 + "similarity": 0.5942, 2563 + "confidence": 0.85, 2564 + "confirmed": true, 2565 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CZ21hQ8vc90.jpg", 2566 + "expression": "neutral, slightly wide-eyed", 2567 + "pose": "seated at a table with hands folded in front, leaning slightly towards the table", 2568 + "description": "Long, slightly tousled hair partially obscured by a hood, no visible beard, wearing a black hoodie with a graphic print and text on the front.", 2569 + "location": "dimly lit room with a candlelit table", 2570 + "style": "casual group snapshot", 2571 + "framing": "medium shot of three people seated and standing at a table", 2572 + "domain": "social", 2573 + "tags": [ 2574 + "candles", 2575 + "hoodie", 2576 + "dim lighting", 2577 + "friends", 2578 + "indoor" 2579 + ], 2580 + "caption": "Hoodie squad goals by candlelight.", 2581 + "n_other_people": 2 2582 + }, 2583 + { 2584 + "shortcode": "CY-qOApARbg", 2585 + "date": "2022-01-21", 2586 + "similarity": 0.6747, 2587 + "confidence": 0.95, 2588 + "confirmed": true, 2589 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CY-qOApARbg.jpg", 2590 + "expression": "neutral, slight focus", 2591 + "pose": "sitting at a desk, facing the camera", 2592 + "description": "Medium-length brown hair, no beard, wearing a blue and white tie-dye shirt and large headphones with a microphone.", 2593 + "location": "wood-paneled room with string lights and paper decorations", 2594 + "style": "casual phone selfie", 2595 + "framing": "medium shot waist-up", 2596 + "domain": "coding", 2597 + "tags": [ 2598 + "headphones", 2599 + "microphone", 2600 + "wood interior", 2601 + "string lights", 2602 + "tie-dye" 2603 + ], 2604 + "caption": "Streaming from my cozy corner!", 2605 + "n_other_people": 0 2606 + }, 2607 + { 2608 + "shortcode": "CY-qOApARbg", 2609 + "date": "2022-01-21", 2610 + "similarity": 0.71, 2611 + "confidence": 0.95, 2612 + "confirmed": true, 2613 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CY-qOApARbg.jpg", 2614 + "expression": "soft smile", 2615 + "pose": "leaning on a wooden counter holding a bag of candy close to the camera", 2616 + "description": "Long, dark hair with a slight wave; wearing a tie-dye shirt in blues and whites; holding an open bag of colorful candy; clean-shaven.", 2617 + "location": "wood-paneled room with a bar", 2618 + "style": "casual phone selfie", 2619 + "framing": "medium shot waist-up", 2620 + "domain": "social", 2621 + "tags": [ 2622 + "candy", 2623 + "indoor", 2624 + "wooden interior", 2625 + "tie-dye", 2626 + "evening" 2627 + ], 2628 + "caption": "Snacking time! What's your favorite treat?", 2629 + "n_other_people": 0 2630 + }, 2631 + { 2632 + "shortcode": "CY-qOApARbg", 2633 + "date": "2022-01-21", 2634 + "similarity": 0.6903, 2635 + "confidence": 0.95, 2636 + "confirmed": true, 2637 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CY-qOApARbg.jpg", 2638 + "expression": "open-mouthed smile", 2639 + "pose": "holding a basketball near the face, standing outdoors", 2640 + "description": "Medium-length brown hair, wearing a green hoodie, holding a basketball. No visible beard, wearing wireless earbuds.", 2641 + "location": "outdoor park or sidewalk", 2642 + "style": "casual phone selfie", 2643 + "framing": "medium close-up of upper body", 2644 + "domain": "social", 2645 + "tags": [ 2646 + "basketball", 2647 + "outdoors", 2648 + "daylight", 2649 + "selfie", 2650 + "green hoodie" 2651 + ], 2652 + "caption": "Ball is life on a cloudy day!", 2653 + "n_other_people": 0 2654 + }, 2655 + { 2656 + "shortcode": "CYhqeAhvHK-", 2657 + "date": "2022-01-09", 2658 + "similarity": 0.5493, 2659 + "confidence": 0.85, 2660 + "confirmed": true, 2661 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CYhqeAhvHK-.jpg", 2662 + "expression": "shouting with mouth wide open", 2663 + "pose": "standing with arms out, making a gesture with both hands", 2664 + "description": "Long brown hair, wearing a long quilted robe with colorful patterns and angel wings. No beard, no glasses.", 2665 + "location": "stage-like setting, possibly concert or performance area", 2666 + "style": "concert performance shot", 2667 + "framing": "medium shot waist-up", 2668 + "domain": "performance", 2669 + "tags": [ 2670 + "angel wings", 2671 + "concert", 2672 + "performance", 2673 + "dramatic", 2674 + "costume" 2675 + ], 2676 + "caption": "Channeling angelic vibes on stage!", 2677 + "n_other_people": 0 2678 + }, 2679 + { 2680 + "shortcode": "CXnYC4Lr1wV", 2681 + "date": "2021-12-18", 2682 + "similarity": 0.6062, 2683 + "confidence": 0.85, 2684 + "confirmed": true, 2685 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CXnYC4Lr1wV.jpg", 2686 + "expression": "soft, slightly tired smile", 2687 + "pose": "standing casually with hands in pockets, leaning slightly against a fridge", 2688 + "description": "Medium length dark hair, damp and unkempt, no beard. Wearing a dark brown zip-up sweater over an orange shirt, with oversized red corduroy pants. Feet in multicolored slippers.", 2689 + "location": "cozy wooden kitchen", 2690 + "style": "candid snapshot with an offbeat aesthetic", 2691 + "framing": "full-body shot, slightly tilted", 2692 + "domain": "solo-portrait", 2693 + "tags": [ 2694 + "kitchen", 2695 + "evening", 2696 + "casual", 2697 + "comfort", 2698 + "unique style" 2699 + ], 2700 + "caption": "Just a quiet evening putting together an unexpected outfit.", 2701 + "n_other_people": 0 2702 + }, 2703 + { 2704 + "shortcode": "CWw2XVel-gU", 2705 + "date": "2021-11-27", 2706 + "similarity": 0.7365, 2707 + "confidence": 0.95, 2708 + "confirmed": true, 2709 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CWw2XVel-gU.jpg", 2710 + "expression": "soft smile", 2711 + "pose": "standing in front of a decorated window", 2712 + "description": "long, straight brown hair, no beard, tie-dye shirt featuring a movie character, casual fit", 2713 + "location": "urban sidewalk with a decorated shop window", 2714 + "style": "casual phone snapshot", 2715 + "framing": "medium shot waist-up", 2716 + "domain": "other", 2717 + "tags": [ 2718 + "window decoration", 2719 + "tie-dye", 2720 + "street", 2721 + "holiday display" 2722 + ], 2723 + "caption": "Feeling festive with my favorite character watching over!", 2724 + "n_other_people": 0 2725 + }, 2726 + { 2727 + "shortcode": "CVb1jFFlow7", 2728 + "date": "2021-10-25", 2729 + "similarity": 0.6501, 2730 + "confidence": 0.95, 2731 + "confirmed": true, 2732 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CVb1jFFlow7.jpg", 2733 + "expression": "neutral, relaxed gaze", 2734 + "pose": "sitting in a car, leaning on the window with his head supported by his hand", 2735 + "description": "long hair, light brown with a hint of wave, wearing an orange t-shirt with graphics and light green pants with flower designs. He has nail polish on his nails.", 2736 + "location": "inside a parked car", 2737 + "style": "casual phone selfie", 2738 + "framing": "medium shot waist-up", 2739 + "domain": "solo-portrait", 2740 + "tags": [ 2741 + "car", 2742 + "casual", 2743 + "greenery", 2744 + "orange shirt", 2745 + "nail polish" 2746 + ], 2747 + "caption": "Contemplating the journey ahead, one park at a time.", 2748 + "n_other_people": 0 2749 + }, 2750 + { 2751 + "shortcode": "CVbCOx6lI5h", 2752 + "date": "2021-10-24", 2753 + "similarity": 0.6922, 2754 + "confidence": 0.95, 2755 + "confirmed": true, 2756 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CVbCOx6lI5h.jpg", 2757 + "expression": "happy smile", 2758 + "pose": "standing next to a woman, arm casually around her back", 2759 + "description": "Long brown hair, clean-shaven, wearing a light green button-up shirt with a floral pin, and light-colored pants.", 2760 + "location": "outdoor wooded area", 2761 + "style": "casual outdoor portrait", 2762 + "framing": "medium shot waist-up", 2763 + "domain": "social", 2764 + "tags": [ 2765 + "outdoors", 2766 + "greenery", 2767 + "floral", 2768 + "smile", 2769 + "couple" 2770 + ], 2771 + "caption": "Celebrating nature and bright moments.", 2772 + "n_other_people": 1 2773 + }, 2774 + { 2775 + "shortcode": "CVN5mI9lPDe", 2776 + "date": "2021-10-19", 2777 + "similarity": 0.6205, 2778 + "confidence": 0.95, 2779 + "confirmed": true, 2780 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CVN5mI9lPDe.jpg", 2781 + "expression": "soft smile", 2782 + "pose": "angled selfie, holding an orange cloth close to face", 2783 + "description": "Long, wet, tousled brown hair, no beard, wearing a light gray shirt and holding an orange cloth.", 2784 + "location": "bedroom with pink wallpaper", 2785 + "style": "casual phone selfie", 2786 + "framing": "tight close-up of face", 2787 + "domain": "solo-portrait", 2788 + "tags": [ 2789 + "selfie", 2790 + "pink wallpaper", 2791 + "orange cloth", 2792 + "soft smile" 2793 + ], 2794 + "caption": "Just a little post-shower selfie to brighten your day.", 2795 + "n_other_people": 0 2796 + }, 2797 + { 2798 + "shortcode": "CVJqGcAFkjJ", 2799 + "date": "2021-10-18", 2800 + "similarity": 0.6315, 2801 + "confidence": 0.9, 2802 + "confirmed": true, 2803 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CVJqGcAFkjJ.jpg", 2804 + "expression": "smiling broadly", 2805 + "pose": "standing with one arm raised behind head, leaning slightly to side", 2806 + "description": "Long hair, wearing a pastel peach t-shirt and pink pants with heart patterns, colorful shoes.", 2807 + "location": "cabin deck surrounded by trees in autumn", 2808 + "style": "casual group photo", 2809 + "framing": "medium shot showing full body", 2810 + "domain": "social", 2811 + "tags": [ 2812 + "group photo", 2813 + "outdoors", 2814 + "casual", 2815 + "autumn", 2816 + "family" 2817 + ], 2818 + "caption": "Pumpkin fun with the family!", 2819 + "n_other_people": 5 2820 + }, 2821 + { 2822 + "shortcode": "CU-wL8vFlJo", 2823 + "date": "2021-10-13", 2824 + "similarity": 0.5015, 2825 + "confidence": 0.95, 2826 + "confirmed": true, 2827 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CU-wL8vFlJo.jpg", 2828 + "expression": "neutral, slightly quizzical", 2829 + "pose": "holding a green smoothie, looking into the camera from below", 2830 + "description": "long flowing brown hair, no beard, wearing a colorful graphic t-shirt and a black crossbody bag.", 2831 + "location": "outdoor urban setting", 2832 + "style": "candid snapshot", 2833 + "framing": "medium shot showing upper body and face", 2834 + "domain": "travel-or-outdoor", 2835 + "tags": [ 2836 + "smoothie", 2837 + "outdoors", 2838 + "blue sky", 2839 + "urban", 2840 + "graphic t-shirt" 2841 + ], 2842 + "caption": "Enjoying the sunshine with a refreshing smoothie!", 2843 + "n_other_people": 0 2844 + }, 2845 + { 2846 + "shortcode": "CU8MMQ1F2Gi", 2847 + "date": "2021-10-12", 2848 + "similarity": 0.6832, 2849 + "confidence": 0.95, 2850 + "confirmed": true, 2851 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CU8MMQ1F2Gi.jpg", 2852 + "expression": "neutral, relaxed", 2853 + "pose": "seated in front of a computer, leaning slightly towards the camera", 2854 + "description": "Short, dark hair, no beard, wearing a light purple graphic t-shirt. No accessories.", 2855 + "location": "small home studio", 2856 + "style": "casual phone selfie", 2857 + "framing": "medium shot waist-up", 2858 + "domain": "art", 2859 + "tags": [ 2860 + "digital art", 2861 + "home studio", 2862 + "computer", 2863 + "casual" 2864 + ], 2865 + "caption": "Creating vibrant worlds from the comfort of home.", 2866 + "n_other_people": 0 2867 + }, 2868 + { 2869 + "shortcode": "CUV4qqDFLz0", 2870 + "date": "2021-09-27", 2871 + "similarity": 0.664, 2872 + "confidence": 0.9, 2873 + "confirmed": true, 2874 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CUV4qqDFLz0.jpg", 2875 + "expression": "neutral with a slight smile", 2876 + "pose": "resting head on colorful abstract painting", 2877 + "description": "Short dark hair, light stubble, and wearing a peach-colored shirt.", 2878 + "location": "art studio or creative space", 2879 + "style": "artistic mixed media", 2880 + "framing": "medium shot showing head and part of the artwork", 2881 + "domain": "art", 2882 + "tags": [ 2883 + "abstract art", 2884 + "vibrant colors", 2885 + "creative", 2886 + "mixed media" 2887 + ], 2888 + "caption": "When your selfie game meets your art.", 2889 + "n_other_people": 0 2890 + }, 2891 + { 2892 + "shortcode": "CUQ_1LIlcVg", 2893 + "date": "2021-09-26", 2894 + "similarity": 0.6715, 2895 + "confidence": 0.95, 2896 + "confirmed": true, 2897 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CUQ_1LIlcVg.jpg", 2898 + "expression": "neutral with slightly parted lips", 2899 + "pose": "lying down with head resting on a multicolored pillow, taking a selfie", 2900 + "description": "long brown hair, no beard, wearing an orange tie-dye shirt with a red string necklace", 2901 + "location": "on a bed or couch", 2902 + "style": "casual phone selfie", 2903 + "framing": "tight close-up of face", 2904 + "domain": "solo-portrait", 2905 + "tags": [ 2906 + "selfie", 2907 + "pillow", 2908 + "casual", 2909 + "tie-dye", 2910 + "relaxed" 2911 + ], 2912 + "caption": "Chilling with my thoughts and colors.", 2913 + "n_other_people": 0 2914 + }, 2915 + { 2916 + "shortcode": "CUAp1s0lRT8", 2917 + "date": "2021-09-19", 2918 + "similarity": 0.5819, 2919 + "confidence": 0.9, 2920 + "confirmed": true, 2921 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CUAp1s0lRT8.jpg", 2922 + "expression": "smiling, slightly playful while looking at the camera", 2923 + "pose": "lying on the ground, leaning back with one arm supporting, other hand making a peace sign", 2924 + "description": "Long hair, wearing a leopard print sweater, pink pants with doodle patterns, and colorful sneakers. Relaxed, outdoor look.", 2925 + "location": "outdoor park area with paved ground and colorful chalk drawings", 2926 + "style": "candid playful park photo", 2927 + "framing": "wide environmental showing full bodies and surrounding chalk art", 2928 + "domain": "social", 2929 + "tags": [ 2930 + "chalk art", 2931 + "outdoor", 2932 + "playful", 2933 + "social", 2934 + "colorful clothing" 2935 + ], 2936 + "caption": "Chalking up some fun in the park!", 2937 + "n_other_people": 1 2938 + }, 2939 + { 2940 + "shortcode": "CUAp1s0lRT8", 2941 + "date": "2021-09-19", 2942 + "similarity": 0.7188, 2943 + "confidence": 0.9, 2944 + "confirmed": true, 2945 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CUAp1s0lRT8.jpg", 2946 + "expression": "cheerful peace sign", 2947 + "pose": "lying on the ground with a peace sign, surrounded by chalk drawings on pavement", 2948 + "description": "shoulder-length hair, wearing a patterned fur coat, pink pants, and colorful shoes with a playful vibe.", 2949 + "location": "outdoor park pathway", 2950 + "style": "candid outdoor capture", 2951 + "framing": "medium wide shot of two people", 2952 + "domain": "social", 2953 + "tags": [ 2954 + "chalk art", 2955 + "outdoors", 2956 + "casual", 2957 + "colorful", 2958 + "park" 2959 + ], 2960 + "caption": "Chalking up some fun in the park!", 2961 + "n_other_people": 1 2962 + }, 2963 + { 2964 + "shortcode": "CTttW-asBO6", 2965 + "date": "2021-09-12", 2966 + "similarity": 0.7075, 2967 + "confidence": 0.9, 2968 + "confirmed": true, 2969 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CTttW-asBO6.jpg", 2970 + "expression": "relaxed, neutral gaze towards the camera", 2971 + "pose": "reclining back on his elbows, with legs slightly bent, near others posing closely together", 2972 + "description": "Long, loose brown hair, clean-shaven, wearing an orange shirt and a green skirt with floral patterns.", 2973 + "location": "outdoor park or garden", 2974 + "style": "casual group photo", 2975 + "framing": "medium shot of four people seated closely together", 2976 + "domain": "social", 2977 + "tags": [ 2978 + "friends", 2979 + "outdoors", 2980 + "relaxed", 2981 + "natural light" 2982 + ], 2983 + "caption": "Chilling with the crew under the open sky.", 2984 + "n_other_people": 3 2985 + }, 2986 + { 2987 + "shortcode": "CTdWY_lIQxI", 2988 + "date": "2021-09-05", 2989 + "similarity": 0.7257, 2990 + "confidence": 0.9, 2991 + "confirmed": true, 2992 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CTdWY_lIQxI.jpg", 2993 + "expression": "neutral, slight focus", 2994 + "pose": "crouching on the ground, holding a sandwich", 2995 + "description": "Long dark hair swept back, no beard, wearing a colorful striped sweater and light patterned pants, holding a sandwich, with multicolored shoes.", 2996 + "location": "outdoor, against a brick wall", 2997 + "style": "candid flash photo", 2998 + "framing": "medium shot, waist-up", 2999 + "domain": "art", 3000 + "tags": [ 3001 + "chalk art", 3002 + "striped sweater", 3003 + "night", 3004 + "brick wall", 3005 + "colorful shoes" 3006 + ], 3007 + "caption": "Catching some late-night inspiration with some cat art.", 3008 + "n_other_people": 0 3009 + }, 3010 + { 3011 + "shortcode": "CSs7jX9swVj", 3012 + "date": "2021-08-18", 3013 + "similarity": 0.7671, 3014 + "confidence": 0.95, 3015 + "confirmed": true, 3016 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CSs7jX9swVj.jpg", 3017 + "expression": "playful smile", 3018 + "pose": "standing with arms raised over head, stretching in a relaxed manner", 3019 + "description": "Long, unkempt brown hair with a clean-shaven face, wearing a loose, beige t-shirt with purple paint stains, and white loose pants.", 3020 + "location": "lush green garden with trees and a stone birdbath", 3021 + "style": "casual outdoor snapshot", 3022 + "framing": "medium full-body shot", 3023 + "domain": "travel-or-outdoor", 3024 + "tags": [ 3025 + "garden", 3026 + "morning", 3027 + "casual", 3028 + "outdoors", 3029 + "stretching" 3030 + ], 3031 + "caption": "Enjoying some sunshine and fresh air!", 3032 + "n_other_people": 0 3033 + }, 3034 + { 3035 + "shortcode": "CSuBwrPFtfN", 3036 + "date": "2021-08-18", 3037 + "similarity": 0.6395, 3038 + "confidence": 0.95, 3039 + "confirmed": true, 3040 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CSuBwrPFtfN.jpg", 3041 + "expression": "excited open-mouthed smile", 3042 + "pose": "standing with both hands making peace signs at face level", 3043 + "description": "Medium-length brown hair slightly tousled, no beard, shirtless with a necklace and painted nails.", 3044 + "location": "pink-walled room with floral curtains", 3045 + "style": "spontaneous Polaroid-style", 3046 + "framing": "tight medium shot waist-up", 3047 + "domain": "solo-portrait", 3048 + "tags": [ 3049 + "excited", 3050 + "shirtless", 3051 + "retro room", 3052 + "polaroid style" 3053 + ], 3054 + "caption": "Throwback vibes with a touch of excitement!", 3055 + "n_other_people": 0 3056 + }, 3057 + { 3058 + "shortcode": "CSXoo1jpOO-", 3059 + "date": "2021-08-09", 3060 + "similarity": 0.5387, 3061 + "confidence": 0.85, 3062 + "confirmed": true, 3063 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CSXoo1jpOO-.jpg", 3064 + "expression": "neutral, relaxed", 3065 + "pose": "close-up facing camera with head slightly tilted", 3066 + "description": "Long brown hair, no beard, wearing a white shirt with graphic elements drawn over the image.", 3067 + "location": "outdoor setting with pixel art overlay", 3068 + "style": "pixelated digital art with selfie aesthetic", 3069 + "framing": "tight close-up of face", 3070 + "domain": "solo-portrait", 3071 + "tags": [ 3072 + "pixel art", 3073 + "close-up", 3074 + "graphic elements", 3075 + "evening", 3076 + "digital art" 3077 + ], 3078 + "caption": "Evenings never looked so pixel-perfect.", 3079 + "n_other_people": 0 3080 + }, 3081 + { 3082 + "shortcode": "CSGNOX3rQ6I", 3083 + "date": "2021-08-03", 3084 + "similarity": 0.5517, 3085 + "confidence": 0.9, 3086 + "confirmed": true, 3087 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CSGNOX3rQ6I.jpg", 3088 + "expression": "varied playful and surprised expressions", 3089 + "pose": "poses differently for each frame, sometimes alongside others making goofy faces", 3090 + "description": "Long dark hair, no visible beard, black tank top, playful face paint and drawn-on glasses or other doodles on some frames.", 3091 + "location": "photo booth with a collage of multiple small photo frames", 3092 + "style": "fun, spontaneous photo booth strip with overlaid doodles", 3093 + "framing": "tight close-ups of faces stacked in a grid", 3094 + "domain": "social", 3095 + "tags": [ 3096 + "photo booth", 3097 + "doodles", 3098 + "fun", 3099 + "collage", 3100 + "playful" 3101 + ], 3102 + "caption": "Captured some booth magic with friends!", 3103 + "n_other_people": 3 3104 + }, 3105 + { 3106 + "shortcode": "CSBEDLvrz3L", 3107 + "date": "2021-08-01", 3108 + "similarity": 0.7053, 3109 + "confidence": 0.95, 3110 + "confirmed": true, 3111 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CSBEDLvrz3L.jpg", 3112 + "expression": "open-mouthed, relaxed", 3113 + "pose": "posing energetically on a sunny street, arms open wide", 3114 + "description": "Medium length brown hair, wearing a loose black and white color-blocked shirt with colorful patches and a light green crossbody bag. Loose light green pants and sneakers.", 3115 + "location": "residential alleyway with greenery and a wooden garage", 3116 + "style": "candid outdoor shot", 3117 + "framing": "medium shot waist-up", 3118 + "domain": "travel-or-outdoor", 3119 + "tags": [ 3120 + "outdoor", 3121 + "street", 3122 + "energetic", 3123 + "daytime", 3124 + "expressive" 3125 + ], 3126 + "caption": "Sunshine vibes in the backyard lane.", 3127 + "n_other_people": 0 3128 + }, 3129 + { 3130 + "shortcode": "CR9U3QkFIFd", 3131 + "date": "2021-07-30", 3132 + "similarity": 0.6545, 3133 + "confidence": 0.95, 3134 + "confirmed": true, 3135 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CR9U3QkFIFd.jpg", 3136 + "expression": "soft smile", 3137 + "pose": "sitting in a car seat, holding a book and a drink, turned slightly towards the camera", 3138 + "description": "Long hair, slightly unkempt and brown. Wearing a light grey t-shirt with a casual fit. Holding a book and an iced coffee.", 3139 + "location": "inside a parked car", 3140 + "style": "casual phone selfie", 3141 + "framing": "medium shot waist-up", 3142 + "domain": "travel-or-outdoor", 3143 + "tags": [ 3144 + "car", 3145 + "iced coffee", 3146 + "book", 3147 + "daylight", 3148 + "selfie" 3149 + ], 3150 + "caption": "Coffee and a good book, the perfect road trip companions.", 3151 + "n_other_people": 0 3152 + }, 3153 + { 3154 + "shortcode": "CR9U3QkFIFd", 3155 + "date": "2021-07-30", 3156 + "similarity": 0.6827, 3157 + "confidence": 0.95, 3158 + "confirmed": true, 3159 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CR9U3QkFIFd.jpg", 3160 + "expression": "soft smile", 3161 + "pose": "sitting in a car, holding a book and a drink up to the face", 3162 + "description": "Medium-length dark hair, no beard, wearing a light gray t-shirt, holding a plastic cup of iced coffee and a book.", 3163 + "location": "inside a car", 3164 + "style": "casual phone selfie", 3165 + "framing": "medium close-up", 3166 + "domain": "travel-or-outdoor", 3167 + "tags": [ 3168 + "car", 3169 + "iced coffee", 3170 + "book", 3171 + "selfie" 3172 + ], 3173 + "caption": "Road trip reads with a side of iced coffee.", 3174 + "n_other_people": 0 3175 + }, 3176 + { 3177 + "shortcode": "CR9U3QkFIFd", 3178 + "date": "2021-07-30", 3179 + "similarity": 0.6666, 3180 + "confidence": 0.95, 3181 + "confirmed": true, 3182 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CR9U3QkFIFd.jpg", 3183 + "expression": "playful with tongue out", 3184 + "pose": "seated in a car, holding a book and a drink, taking a selfie with a wide smile", 3185 + "description": "Medium-length brown hair, no beard, wearing a casual grey t-shirt. Holding a book titled 'The Book of Forks' and a clear cup with iced coffee.", 3186 + "location": "inside a moving car", 3187 + "style": "casual phone selfie", 3188 + "framing": "medium shot waist-up", 3189 + "domain": "travel-or-outdoor", 3190 + "tags": [ 3191 + "selfie", 3192 + "car", 3193 + "book", 3194 + "iced coffee", 3195 + "travel" 3196 + ], 3197 + "caption": "Road trips are better with a good book and iced coffee!", 3198 + "n_other_people": 0 3199 + }, 3200 + { 3201 + "shortcode": "CR6E5RXlRvz", 3202 + "date": "2021-07-29", 3203 + "similarity": 0.6333, 3204 + "confidence": 0.95, 3205 + "confirmed": true, 3206 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CR6E5RXlRvz.jpg", 3207 + "expression": "soft smile, slight smirk", 3208 + "pose": "sitting casually, holding a long brush and playfully interacting with sketches around on screen", 3209 + "description": "Medium-length brown hair, no beard, wearing a light green shirt with faint graphics. The shirt reflects colorful ambient light.", 3210 + "location": "creative art studio with walls covered in sketches", 3211 + "style": "artistic portrait with creative elements", 3212 + "framing": "medium shot waist-up", 3213 + "domain": "art", 3214 + "tags": [ 3215 + "creative", 3216 + "art studio", 3217 + "sketches", 3218 + "colorful lighting" 3219 + ], 3220 + "caption": "Creating magic with every brush stroke.", 3221 + "n_other_people": 0 3222 + }, 3223 + { 3224 + "shortcode": "CRo-sUOFBRJ", 3225 + "date": "2021-07-22", 3226 + "similarity": 0.5853, 3227 + "confidence": 0.95, 3228 + "confirmed": true, 3229 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CRo-sUOFBRJ.jpg", 3230 + "expression": "silly open-mouthed grin", 3231 + "pose": "leaning on a wooden desk, holding up an object to his face", 3232 + "description": "Long, tousled hair, wearing a blue t-shirt. No beard. Holding a yellow object with a playful expression.", 3233 + "location": "wooden cabin interior with various art supplies and posters", 3234 + "style": "candid and playful", 3235 + "framing": "medium shot waist-up", 3236 + "domain": "other", 3237 + "tags": [ 3238 + "cabin", 3239 + "art supplies", 3240 + "playful", 3241 + "colorful lighting", 3242 + "creative environment" 3243 + ], 3244 + "caption": "Feeling creative in the cabin! 🎨", 3245 + "n_other_people": 0 3246 + }, 3247 + { 3248 + "shortcode": "CRkmPIrlGxp", 3249 + "date": "2021-07-21", 3250 + "similarity": 0.6225, 3251 + "confidence": 0.95, 3252 + "confirmed": true, 3253 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CRkmPIrlGxp.jpg", 3254 + "expression": "relaxed with slightly open mouth, gentle eyes", 3255 + "pose": "lying down on a quilted cushion outdoors, head tilted towards the camera", 3256 + "description": "Hair is short and slightly messy, no beard, no clothing visible in frame.", 3257 + "location": "outdoor wooden deck", 3258 + "style": "casual phone selfie", 3259 + "framing": "tight close-up of face", 3260 + "domain": "solo-portrait", 3261 + "tags": [ 3262 + "outdoor", 3263 + "selfie", 3264 + "relaxed", 3265 + "natural light", 3266 + "casual" 3267 + ], 3268 + "caption": "Enjoying a lazy afternoon on the deck.", 3269 + "n_other_people": 0 3270 + }, 3271 + { 3272 + "shortcode": "CRhRZNyllIG", 3273 + "date": "2021-07-19", 3274 + "similarity": 0.5541, 3275 + "confidence": 0.95, 3276 + "confirmed": true, 3277 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CRhRZNyllIG.jpg", 3278 + "expression": "neutral with relaxed eyes", 3279 + "pose": "lying down with hair spread out on a surface", 3280 + "description": "Long light brown hair spread out, faint stubble, no shirt visible.", 3281 + "location": "a bed or soft surface", 3282 + "style": "artistic portrait", 3283 + "framing": "close-up of face", 3284 + "domain": "solo-portrait", 3285 + "tags": [ 3286 + "sunlight", 3287 + "relaxed", 3288 + "artistic", 3289 + "close-up", 3290 + "neutral expression" 3291 + ], 3292 + "caption": "Basking in golden rays.", 3293 + "n_other_people": 0 3294 + }, 3295 + { 3296 + "shortcode": "CRfF2qrlyc-", 3297 + "date": "2021-07-18", 3298 + "similarity": 0.646, 3299 + "confidence": 0.95, 3300 + "confirmed": true, 3301 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CRfF2qrlyc-.jpg", 3302 + "expression": "broad smile, eyes slightly squinted", 3303 + "pose": "taking a selfie, leaning towards the camera", 3304 + "description": "Long, slightly messy hair, no beard, wearing a light blue t-shirt with a camera strap.", 3305 + "location": "outdoor café with colorful walls", 3306 + "style": "casual phone selfie", 3307 + "framing": "medium shot including friend", 3308 + "domain": "social", 3309 + "tags": [ 3310 + "selfie", 3311 + "outdoor café", 3312 + "sunny day", 3313 + "casual", 3314 + "bright colors" 3315 + ], 3316 + "caption": "Enjoying a sunny lunch with great company!", 3317 + "n_other_people": 1 3318 + }, 3319 + { 3320 + "shortcode": "CRfF2qrlyc-", 3321 + "date": "2021-07-18", 3322 + "similarity": 0.5346, 3323 + "confidence": 0.95, 3324 + "confirmed": true, 3325 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CRfF2qrlyc-.jpg", 3326 + "expression": "neutral, focused", 3327 + "pose": "holding up a colorful abstract painting in both hands, partially obscuring the face", 3328 + "description": "Medium-length brown hair, wearing a gray t-shirt, and light green shorts. Visible fingers with painted nails.", 3329 + "location": "outdoor park setting", 3330 + "style": "casual snapshot", 3331 + "framing": "medium close-up, painting in foreground", 3332 + "domain": "art", 3333 + "tags": [ 3334 + "art", 3335 + "painting", 3336 + "park", 3337 + "afternoon", 3338 + "casual" 3339 + ], 3340 + "caption": "Making colorful chaos come to life in the park.", 3341 + "n_other_people": 0 3342 + }, 3343 + { 3344 + "shortcode": "CRfF2qrlyc-", 3345 + "date": "2021-07-18", 3346 + "similarity": 0.6286, 3347 + "confidence": 0.95, 3348 + "confirmed": true, 3349 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CRfF2qrlyc-.jpg", 3350 + "expression": "joyful, open-mouthed smile", 3351 + "pose": "leaning back against a car seat, propping head up with hand and looking at the camera", 3352 + "description": "Long brown hair tied back, clean-shaven, wearing a light blue t-shirt with paint splatters, and a pink scrunchie on the wrist.", 3353 + "location": "inside a car, back seat", 3354 + "style": "casual phone selfie", 3355 + "framing": "close-up of face and upper body", 3356 + "domain": "travel-or-outdoor", 3357 + "tags": [ 3358 + "car", 3359 + "night", 3360 + "smile", 3361 + "bright flash", 3362 + "casual" 3363 + ], 3364 + "caption": "Late-night road trip vibes.", 3365 + "n_other_people": 0 3366 + }, 3367 + { 3368 + "shortcode": "CRI095Vl7AO", 3369 + "date": "2021-07-10", 3370 + "similarity": 0.7382, 3371 + "confidence": 0.9, 3372 + "confirmed": true, 3373 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CRI095Vl7AO.jpg", 3374 + "expression": "soft smile, relaxed demeanor", 3375 + "pose": "lying back, presumably on a bed or couch, with a slight head tilt towards the camera", 3376 + "description": "Jeffrey is lying down, short brown hair spread slightly around his face. He is wearing a light blue top.", 3377 + "location": "unknown space, possibly a bedroom or living area", 3378 + "style": "casual phone selfie", 3379 + "framing": "tight close-up of face", 3380 + "domain": "solo-portrait", 3381 + "tags": [ 3382 + "selfie", 3383 + "relaxed", 3384 + "close-up", 3385 + "soft lighting", 3386 + "yellow background", 3387 + "text overlay" 3388 + ], 3389 + "caption": "Bouncing around with these thoughts.", 3390 + "n_other_people": 0 3391 + }, 3392 + { 3393 + "shortcode": "CRKJXn5FNA6", 3394 + "date": "2021-07-10", 3395 + "similarity": 0.729, 3396 + "confidence": 0.95, 3397 + "confirmed": true, 3398 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CRKJXn5FNA6.jpg", 3399 + "expression": "soft smile", 3400 + "pose": "standing in front of a wooden fence with trees, holding a drink can with both hands.", 3401 + "description": "short hair, brown back in a ponytail, wearing a light blue t-shirt, crossbody bag slung over one shoulder, holding a can. No beard, clean-shaven look.", 3402 + "location": "backyard with wooden fence and lush green trees", 3403 + "style": "casual phone selfie", 3404 + "framing": "medium shot waist-up", 3405 + "domain": "travel-or-outdoor", 3406 + "tags": [ 3407 + "backyard", 3408 + "sunlight", 3409 + "trees", 3410 + "deer", 3411 + "casual" 3412 + ], 3413 + "caption": "Chilling with some unexpected backyard guests!", 3414 + "n_other_people": 0 3415 + }, 3416 + { 3417 + "shortcode": "CRE6MkLF6SD", 3418 + "date": "2021-07-08", 3419 + "similarity": 0.6621, 3420 + "confidence": 0.95, 3421 + "confirmed": true, 3422 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CRE6MkLF6SD.jpg", 3423 + "expression": "soft smile", 3424 + "pose": "holding phone up for a selfie in a reflective room.", 3425 + "description": "Long hair tied back, wearing a bright pink patterned shirt with visible floral tattoos on arms.", 3426 + "location": "decorative room with mirrored walls", 3427 + "style": "stylized selfie", 3428 + "framing": "medium shot waist-up", 3429 + "domain": "solo-portrait", 3430 + "tags": [ 3431 + "mirror", 3432 + "selfie", 3433 + "pink shirt", 3434 + "tattoos", 3435 + "reflections" 3436 + ], 3437 + "caption": "Reflecting on a colorful day.", 3438 + "n_other_people": 0 3439 + }, 3440 + { 3441 + "shortcode": "CQ7CUdPlVyx", 3442 + "date": "2021-07-04", 3443 + "similarity": 0.6968, 3444 + "confidence": 0.95, 3445 + "confirmed": true, 3446 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CQ7CUdPlVyx.jpg", 3447 + "expression": "playful, hand near mouth", 3448 + "pose": "crouching on a sidewalk, close to a star on the Walk of Fame, touching the ground with one hand", 3449 + "description": "Jeffrey has tied-back brown hair and is wearing an orange tie-dye shirt with black shorts and yellow sneakers.", 3450 + "location": "Hollywood Walk of Fame", 3451 + "style": "candid outdoor shot", 3452 + "framing": "medium shot showing upper body and the Walk of Fame star", 3453 + "domain": "travel-or-outdoor", 3454 + "tags": [ 3455 + "Hollywood Walk of Fame", 3456 + "orange shirt", 3457 + "crouched pose", 3458 + "Playful", 3459 + "celebrity star" 3460 + ], 3461 + "caption": "Searching for stars in Hollywood sunshine!", 3462 + "n_other_people": 0 3463 + }, 3464 + { 3465 + "shortcode": "CQpipv6FrOn", 3466 + "date": "2021-06-28", 3467 + "similarity": 0.5892, 3468 + "confidence": 0.93, 3469 + "confirmed": true, 3470 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CQpipv6FrOn.jpg", 3471 + "expression": "relaxed open-mouthed", 3472 + "pose": "lying down with elbow on a surface, head resting on hand", 3473 + "description": "Medium-length brown hair, wet or disheveled, no beard, wearing a bright blue T-shirt.", 3474 + "location": "cozy wooden interior, possibly a cabin or home", 3475 + "style": "casual phone selfie", 3476 + "framing": "medium close-up", 3477 + "domain": "solo-portrait", 3478 + "tags": [ 3479 + "blue shirt", 3480 + "casual", 3481 + "home interior", 3482 + "relaxed" 3483 + ], 3484 + "caption": "Chillin' in my zone 🌿", 3485 + "n_other_people": 0 3486 + }, 3487 + { 3488 + "shortcode": "CQUwIjDlJx9", 3489 + "date": "2021-06-20", 3490 + "similarity": 0.6545, 3491 + "confidence": 0.95, 3492 + "confirmed": true, 3493 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CQUwIjDlJx9.jpg", 3494 + "expression": "focused, eyes forward", 3495 + "pose": "standing close to a mirror, writing on it with a marker", 3496 + "description": "medium-length brown hair, wearing a pink shirt, using a black marker.", 3497 + "location": "bathroom", 3498 + "style": "candid moment capture", 3499 + "framing": "medium shot including reflection in mirror", 3500 + "domain": "art", 3501 + "tags": [ 3502 + "mirror", 3503 + "marker", 3504 + "drawing", 3505 + "bathroom", 3506 + "reflection" 3507 + ], 3508 + "caption": "Getting artsy with a bathroom mirror doodle.", 3509 + "n_other_people": 0 3510 + }, 3511 + { 3512 + "shortcode": "CQNhifwF6il", 3513 + "date": "2021-06-17", 3514 + "similarity": 0.664, 3515 + "confidence": 0.95, 3516 + "confirmed": true, 3517 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CQNhifwF6il.jpg", 3518 + "expression": "neutral with slight curiosity", 3519 + "pose": "lying on a patterned quilt, hand resting on chest, looking directly at the camera overhead", 3520 + "description": "Medium-length brown hair spread out on pillow, clean-shaven face, wearing a vibrant tie-dye pink shirt and a white bead bracelet.", 3521 + "location": "a cozy indoor setting with a wooden ceiling and colorful quilt", 3522 + "style": "candid selfie", 3523 + "framing": "tight close-up of face", 3524 + "domain": "solo-portrait", 3525 + "tags": [ 3526 + "quilt", 3527 + "tie-dye shirt", 3528 + "indoors", 3529 + "flash", 3530 + "selfie" 3531 + ], 3532 + "caption": "Finding comfort in color and pattern.", 3533 + "n_other_people": 0 3534 + }, 3535 + { 3536 + "shortcode": "CQHS8EdlFP3", 3537 + "date": "2021-06-14", 3538 + "similarity": 0.5853, 3539 + "confidence": 0.95, 3540 + "confirmed": true, 3541 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CQHS8EdlFP3.jpg", 3542 + "expression": "soft smile", 3543 + "pose": "seated inside a car, face turned towards the camera", 3544 + "description": "shoulder-length brown hair with wispy strands, no beard, wearing a grey t-shirt.", 3545 + "location": "inside a car", 3546 + "style": "casual phone selfie", 3547 + "framing": "tight close-up of face", 3548 + "domain": "solo-portrait", 3549 + "tags": [ 3550 + "car", 3551 + "selfie", 3552 + "natural light", 3553 + "casual" 3554 + ], 3555 + "caption": "Cruising through sunny days with a smile.", 3556 + "n_other_people": 0 3557 + }, 3558 + { 3559 + "shortcode": "CPwL-n3FyPn", 3560 + "date": "2021-06-05", 3561 + "similarity": 0.6619, 3562 + "confidence": 0.95, 3563 + "confirmed": true, 3564 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CPwL-n3FyPn.jpg", 3565 + "expression": "wide, open smile", 3566 + "pose": "sitting on a picnic blanket with friends, leaning slightly forward towards the camera", 3567 + "description": "Long brown hair, no beard, wearing a blue T-shirt. Casual and relaxed appearance.", 3568 + "location": "outdoor park setting", 3569 + "style": "casual phone selfie", 3570 + "framing": "medium shot, capturing upper bodies", 3571 + "domain": "social", 3572 + "tags": [ 3573 + "picnic", 3574 + "outdoors", 3575 + "friends", 3576 + "sunny day", 3577 + "casual" 3578 + ], 3579 + "caption": "Enjoying a sunny day at the park with great company!", 3580 + "n_other_people": 2 3581 + }, 3582 + { 3583 + "shortcode": "COHMQ-Plan3", 3584 + "date": "2021-04-26", 3585 + "similarity": 0.7223, 3586 + "confidence": 0.98, 3587 + "confirmed": true, 3588 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/COHMQ-Plan3.jpg", 3589 + "expression": "thoughtful gaze into the distance", 3590 + "pose": "standing against a blurred, purple-tinted background, arms crossed holding a notebook and pen", 3591 + "description": "shoulder-length brown hair, clean-shaven, wearing a bright red t-shirt with graphic design, holding a yellow notebook and a pen.", 3592 + "location": "outdoor setting with blurred purple and green foliage", 3593 + "style": "artistic and vibrant image with attention to color and light", 3594 + "framing": "medium shot waist-up", 3595 + "domain": "other", 3596 + "tags": [ 3597 + "notebook", 3598 + "pen", 3599 + "red t-shirt", 3600 + "golden hour", 3601 + "outdoors" 3602 + ], 3603 + "caption": "Embracing the golden hour with some creative thoughts.", 3604 + "n_other_people": 0 3605 + }, 3606 + { 3607 + "shortcode": "COCEG9llXqA", 3608 + "date": "2021-04-24", 3609 + "similarity": 0.743, 3610 + "confidence": 0.95, 3611 + "confirmed": true, 3612 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/COCEG9llXqA.jpg", 3613 + "expression": "neutral, slightly open mouth", 3614 + "pose": "close-up, partially in the frame, looking towards the camera", 3615 + "description": "Long, light brown hair, no beard. Wearing an orange garment.", 3616 + "location": "under a wooden awning outdoors", 3617 + "style": "casual group selfie", 3618 + "framing": "tight close-up, mostly focused on faces", 3619 + "domain": "social", 3620 + "tags": [ 3621 + "group", 3622 + "outdoor", 3623 + "casual", 3624 + "orange", 3625 + "selfie" 3626 + ], 3627 + "caption": "Chilling with friends under the sunny awning.", 3628 + "n_other_people": 2 3629 + }, 3630 + { 3631 + "shortcode": "CNd8_kYFfh-", 3632 + "date": "2021-04-10", 3633 + "similarity": 0.6627, 3634 + "confidence": 0.9, 3635 + "confirmed": true, 3636 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CNd8_kYFfh-.jpg", 3637 + "expression": "playfully wide-mouthed", 3638 + "pose": "crouching on one knee, one hand on head, beside a striped sheet with red bunny drawing", 3639 + "description": "Medium-length hair, light brown, wearing a beige button-up shirt over a neon green t-shirt, black shorts, and colorful sneakers.", 3640 + "location": "residential outdoor space with wooden fence and trees", 3641 + "style": "colorful casual snapshot with lens flare effects", 3642 + "framing": "medium shot capturing two people and a sheet", 3643 + "domain": "social", 3644 + "tags": [ 3645 + "outdoor", 3646 + "playful", 3647 + "art", 3648 + "lens flare", 3649 + "colorful shoes" 3650 + ], 3651 + "caption": "Art and sunshine, the perfect combo!", 3652 + "n_other_people": 1 3653 + }, 3654 + { 3655 + "shortcode": "CNT6NTBFGZR", 3656 + "date": "2021-04-06", 3657 + "similarity": 0.7579, 3658 + "confidence": 0.95, 3659 + "confirmed": true, 3660 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CNT6NTBFGZR.jpg", 3661 + "expression": "neutral, attentive gaze", 3662 + "pose": "standing to the left, holding the edge of a large cardboard piece with a drawn design on it", 3663 + "description": "medium-length dark hair, no visible beard, wearing an orange sweatshirt, and dark textured pants.", 3664 + "location": "outdoor porch", 3665 + "style": "casual group photo", 3666 + "framing": "group shot, waist-up", 3667 + "domain": "social", 3668 + "tags": [ 3669 + "cardboard art", 3670 + "group", 3671 + "casual", 3672 + "orange clothing" 3673 + ], 3674 + "caption": "Creative vibes with friends and some unique cardboard art.", 3675 + "n_other_people": 2 3676 + }, 3677 + { 3678 + "shortcode": "CNOYOtolp0j", 3679 + "date": "2021-04-04", 3680 + "similarity": 0.6616, 3681 + "confidence": 0.95, 3682 + "confirmed": true, 3683 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CNOYOtolp0j.jpg", 3684 + "expression": "wide smile", 3685 + "pose": "standing outdoors, hand touching hair, facing the camera", 3686 + "description": "Medium-length brown hair, no beard, wearing a bright yellow jacket, red shirt underneath, and light blue jeans. Carrying a small black crossbody bag.", 3687 + "location": "snowy landscape with a mountain and trees in the background", 3688 + "style": "casual travel snapshot", 3689 + "framing": "medium shot waist-up", 3690 + "domain": "travel-or-outdoor", 3691 + "tags": [ 3692 + "snow", 3693 + "mountains", 3694 + "yellow jacket", 3695 + "winter", 3696 + "smile" 3697 + ], 3698 + "caption": "Enjoying the snowy mountain vibes.", 3699 + "n_other_people": 0 3700 + }, 3701 + { 3702 + "shortcode": "CNNqzorlMNn", 3703 + "date": "2021-04-03", 3704 + "similarity": 0.5834, 3705 + "confidence": 0.9, 3706 + "confirmed": true, 3707 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CNNqzorlMNn.jpg", 3708 + "expression": "playful with tongue out", 3709 + "pose": "posing in front of a mirror, holding a phone for a selfie", 3710 + "description": "Medium-length dark hair, no beard, wearing a bright orange sweatshirt and blue jeans.", 3711 + "location": "bathroom with a round mirror", 3712 + "style": "casual phone selfie", 3713 + "framing": "medium shot waist-up", 3714 + "domain": "solo-portrait", 3715 + "tags": [ 3716 + "mirror", 3717 + "selfie", 3718 + "orange sweatshirt", 3719 + "playful", 3720 + "phone case" 3721 + ], 3722 + "caption": "Feeling bold in orange! 🍊📸", 3723 + "n_other_people": 0 3724 + }, 3725 + { 3726 + "shortcode": "CNLkHy4F5wl", 3727 + "date": "2021-04-02", 3728 + "similarity": 0.502, 3729 + "confidence": 0.95, 3730 + "confirmed": true, 3731 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CNLkHy4F5wl.jpg", 3732 + "expression": "soft smile", 3733 + "pose": "sitting with knees up, leaning slightly forward, gazing into the camera", 3734 + "description": "Medium-length brown hair blowing in the wind, no beard, wearing a light tan t-shirt with some stains and blue jeans with black boots.", 3735 + "location": "outdoor setting with clear sky", 3736 + "style": "candid outdoor shot", 3737 + "framing": "tight close-up of face with part of the sitting posture visible", 3738 + "domain": "solo-portrait", 3739 + "tags": [ 3740 + "windy", 3741 + "blue jeans", 3742 + "outdoor", 3743 + "sunny", 3744 + "boots" 3745 + ], 3746 + "caption": "Chasing the sunshine vibes.", 3747 + "n_other_people": 0 3748 + }, 3749 + { 3750 + "shortcode": "CNIgdC7Fi8-", 3751 + "date": "2021-04-01", 3752 + "similarity": 0.6391, 3753 + "confidence": 0.9, 3754 + "confirmed": true, 3755 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CNIgdC7Fi8-.jpg", 3756 + "expression": "happy, with a broad smile", 3757 + "pose": "lying in bed, taking a selfie with two children and a dog", 3758 + "description": "Medium-length brown hair, no beard, wearing a pink sweater. He is lying in bed.", 3759 + "location": "bedroom", 3760 + "style": "casual phone selfie", 3761 + "framing": "medium shot waist-up", 3762 + "domain": "social", 3763 + "tags": [ 3764 + "bed", 3765 + "selfie", 3766 + "family", 3767 + "dog", 3768 + "cozy" 3769 + ], 3770 + "caption": "Sunday snuggles with the crew!", 3771 + "n_other_people": 3 3772 + }, 3773 + { 3774 + "shortcode": "CNEO-qHFzrS", 3775 + "date": "2021-03-31", 3776 + "similarity": 0.7521, 3777 + "confidence": 0.95, 3778 + "confirmed": true, 3779 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CNEO-qHFzrS.jpg", 3780 + "expression": "neutral, slightly bored", 3781 + "pose": "standing outdoors, holding a drink in one hand and a puppet in the other", 3782 + "description": "short brown hair slightly damp, no beard, wearing a bright green t-shirt with 'CAPRICORN' text, holding a puppet and a drink with a straw.", 3783 + "location": "grassy backyard with trees and scattered outdoor furniture", 3784 + "style": "candid shot", 3785 + "framing": "medium shot waist-up", 3786 + "domain": "other", 3787 + "tags": [ 3788 + "puppet", 3789 + "outdoors", 3790 + "green t-shirt", 3791 + "drink", 3792 + "afternoon" 3793 + ], 3794 + "caption": "Just a casual day with my puppet friend.", 3795 + "n_other_people": 0 3796 + }, 3797 + { 3798 + "shortcode": "CM5B-SmFLBM", 3799 + "date": "2021-03-26", 3800 + "similarity": 0.7482, 3801 + "confidence": 0.95, 3802 + "confirmed": true, 3803 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CM5B-SmFLBM.jpg", 3804 + "expression": "neutral", 3805 + "pose": "seated with hands resting on thighs, facing camera", 3806 + "description": "shoulder-length brown hair slightly parted, wearing a white shirt and red corduroy pants, with patterns on yellow sneakers.", 3807 + "location": "front porch of a wooden house with bright pink trim", 3808 + "style": "candid group photo", 3809 + "framing": "medium shot showing three people", 3810 + "domain": "social", 3811 + "tags": [ 3812 + "porch", 3813 + "group", 3814 + "casual", 3815 + "social", 3816 + "colorful" 3817 + ], 3818 + "caption": "Chillin' on the porch with good company!", 3819 + "n_other_people": 2 3820 + }, 3821 + { 3822 + "shortcode": "CMg5UaOFRqg", 3823 + "date": "2021-03-17", 3824 + "similarity": 0.5187, 3825 + "confidence": 0.9, 3826 + "confirmed": true, 3827 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CMg5UaOFRqg.jpg", 3828 + "expression": "focused, eyes down", 3829 + "pose": "sitting on the grass, leaning slightly forward", 3830 + "description": "long brown hair, wearing a white button-up shirt, clean-shaven.", 3831 + "location": "outdoor grassy area", 3832 + "style": "casual video snapshot", 3833 + "framing": "medium shot waist-up", 3834 + "domain": "social", 3835 + "tags": [ 3836 + "outdoor", 3837 + "grass", 3838 + "casual", 3839 + "focused" 3840 + ], 3841 + "caption": "Catching up on conversations in the great outdoors.", 3842 + "n_other_people": 1 3843 + }, 3844 + { 3845 + "shortcode": "CMgCaGQFfDz", 3846 + "date": "2021-03-17", 3847 + "similarity": 0.7704, 3848 + "confidence": 0.95, 3849 + "confirmed": true, 3850 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CMgCaGQFfDz.jpg", 3851 + "expression": "pleasant smile", 3852 + "pose": "lying on a picnic blanket facing the camera, leaning on elbows with hands clasped.", 3853 + "description": "medium-length hair, brown, parted in the middle; wearing a loose white shirt, no beard, no accessories visible.", 3854 + "location": "outdoor park or garden, grass lawn", 3855 + "style": "candid group photo", 3856 + "framing": "medium group shot", 3857 + "domain": "social", 3858 + "tags": [ 3859 + "outdoors", 3860 + "picnic", 3861 + "friends", 3862 + "fun", 3863 + "relaxed" 3864 + ], 3865 + "caption": "Chillin' in the park with the best people 🌿", 3866 + "n_other_people": 2 3867 + }, 3868 + { 3869 + "shortcode": "CMdcPyhlY_P", 3870 + "date": "2021-03-16", 3871 + "similarity": 0.6494, 3872 + "confidence": 0.95, 3873 + "confirmed": true, 3874 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CMdcPyhlY_P.jpg", 3875 + "expression": "open-mouthed, intense", 3876 + "pose": "mid-motion, gesturing with hands up", 3877 + "description": "Long brown hair flowing, wearing a white button-down shirt over a gray t-shirt.", 3878 + "location": "outdoor urban area in front of a graffitied wall", 3879 + "style": "candid action shot", 3880 + "framing": "medium close-up", 3881 + "domain": "other", 3882 + "tags": [ 3883 + "graffiti", 3884 + "urban", 3885 + "intense expression", 3886 + "motion", 3887 + "daylight" 3888 + ], 3889 + "caption": "Caught in the moment with vibrant urban vibes!", 3890 + "n_other_people": 0 3891 + }, 3892 + { 3893 + "shortcode": "CMdcPyhlY_P", 3894 + "date": "2021-03-16", 3895 + "similarity": 0.5925, 3896 + "confidence": 0.95, 3897 + "confirmed": true, 3898 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CMdcPyhlY_P.jpg", 3899 + "expression": "soft smile, looking ahead confidently", 3900 + "pose": "walking on a path outdoors, holding a blanket in one arm", 3901 + "description": "medium-length brown hair, wearing a bright yellow jacket and loose red pants, holding a rolled-up blue blanket.", 3902 + "location": "outdoor path with green bushes", 3903 + "style": "candid outdoor photography", 3904 + "framing": "medium full-body shot", 3905 + "domain": "travel-or-outdoor", 3906 + "tags": [ 3907 + "walking", 3908 + "yellow jacket", 3909 + "outdoor", 3910 + "blanket" 3911 + ], 3912 + "caption": "Nature walks with friends are the best adventures.", 3913 + "n_other_people": 2 3914 + }, 3915 + { 3916 + "shortcode": "CMdcPyhlY_P", 3917 + "date": "2021-03-16", 3918 + "similarity": 0.767, 3919 + "confidence": 0.9, 3920 + "confirmed": true, 3921 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CMdcPyhlY_P.jpg", 3922 + "expression": "soft smile", 3923 + "pose": "standing outdoors, walking with a group", 3924 + "description": "medium-length brown hair, wearing a bright yellow jacket and carrying a denim-patterned item.", 3925 + "location": "outdoor natural setting", 3926 + "style": "candid group shot", 3927 + "framing": "medium shot waist-up", 3928 + "domain": "social", 3929 + "tags": [ 3930 + "yellow jacket", 3931 + "group walk", 3932 + "outdoors", 3933 + "soft light" 3934 + ], 3935 + "caption": "Out for a walk with the best crew.", 3936 + "n_other_people": 2 3937 + }, 3938 + { 3939 + "shortcode": "CMdcPyhlY_P", 3940 + "date": "2021-03-16", 3941 + "similarity": 0.776, 3942 + "confidence": 0.95, 3943 + "confirmed": true, 3944 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CMdcPyhlY_P.jpg", 3945 + "expression": "neutral, eyes directed towards camera", 3946 + "pose": "lying on grass with hands under chin", 3947 + "description": "Medium-length brown hair, clean-shaven, wearing a white shirt with a beige t-shirt underneath.", 3948 + "location": "outdoor grassy area", 3949 + "style": "casual outdoor group photo", 3950 + "framing": "medium shot of three people lying on the ground", 3951 + "domain": "social", 3952 + "tags": [ 3953 + "outdoors", 3954 + "friends", 3955 + "relaxed", 3956 + "grass", 3957 + "afternoon" 3958 + ], 3959 + "caption": "Chilling in the great outdoors with the best company.", 3960 + "n_other_people": 2 3961 + }, 3962 + { 3963 + "shortcode": "CMbyPvhlrVg", 3964 + "date": "2021-03-15", 3965 + "similarity": 0.676, 3966 + "confidence": 0.9, 3967 + "confirmed": true, 3968 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CMbyPvhlrVg.jpg", 3969 + "expression": "thoughtful, focused stare", 3970 + "pose": "lying on stomach alongside two others on a blanket, propped up on elbows", 3971 + "description": "Hair is medium length and brown, straight, beard is clean-shaven, wearing a light blue shirt.", 3972 + "location": "outdoor grassy field", 3973 + "style": "informal group photo", 3974 + "framing": "medium shot waist-up", 3975 + "domain": "art", 3976 + "tags": [ 3977 + "whistlegraph", 3978 + "outdoor", 3979 + "collaboration", 3980 + "art", 3981 + "casual" 3982 + ], 3983 + "caption": "Chilling in the grass, creating new art vibes.", 3984 + "n_other_people": 2 3985 + }, 3986 + { 3987 + "shortcode": "CMVv0mOlir2", 3988 + "date": "2021-03-13", 3989 + "similarity": 0.6492, 3990 + "confidence": 0.95, 3991 + "confirmed": true, 3992 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CMVv0mOlir2.jpg", 3993 + "expression": "snarling with an exaggerated grimace", 3994 + "pose": "holding one hand up with fingers spread, looking directly at the camera", 3995 + "description": "Long, dark hair, wearing a green t-shirt.", 3996 + "location": "cozy kitchen with wood paneling", 3997 + "style": "casual phone selfie", 3998 + "framing": "tight close-up of face", 3999 + "domain": "solo-portrait", 4000 + "tags": [ 4001 + "kitchen", 4002 + "green t-shirt", 4003 + "afternoon", 4004 + "natural light", 4005 + "funny expression" 4006 + ], 4007 + "caption": "When you run out of coffee on a Monday!", 4008 + "n_other_people": 0 4009 + }, 4010 + { 4011 + "shortcode": "CMVv0mOlir2", 4012 + "date": "2021-03-13", 4013 + "similarity": 0.6766, 4014 + "confidence": 0.95, 4015 + "confirmed": true, 4016 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CMVv0mOlir2.jpg", 4017 + "expression": "neutral, slight pout", 4018 + "pose": "head tilted slightly forward, looking at camera", 4019 + "description": "long brown hair slightly tousled, wearing a bright green t-shirt", 4020 + "location": "wood-paneled room with some decor", 4021 + "style": "casual phone selfie", 4022 + "framing": "medium close-up of face and shoulders", 4023 + "domain": "solo-portrait", 4024 + "tags": [ 4025 + "green shirt", 4026 + "wood paneling", 4027 + "natural light", 4028 + "selfie" 4029 + ], 4030 + "caption": "Sunny vibes and wooden walls.", 4031 + "n_other_people": 0 4032 + }, 4033 + { 4034 + "shortcode": "CMVv0mOlir2", 4035 + "date": "2021-03-13", 4036 + "similarity": 0.686, 4037 + "confidence": 0.95, 4038 + "confirmed": true, 4039 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CMVv0mOlir2.jpg", 4040 + "expression": "neutral, focused on eating", 4041 + "pose": "standing close to the camera, eating with a hand raised to mouth", 4042 + "description": "Medium-length brown hair, no beard, wearing a green t-shirt.", 4043 + "location": "wood-paneled kitchen", 4044 + "style": "casual phone selfie", 4045 + "framing": "tight close-up of face", 4046 + "domain": "cooking-or-eating", 4047 + "tags": [ 4048 + "eating", 4049 + "kitchen", 4050 + "rustic", 4051 + "selfie" 4052 + ], 4053 + "caption": "Snack time in a cozy cabin kitchen.", 4054 + "n_other_people": 0 4055 + }, 4056 + { 4057 + "shortcode": "CMVv0mOlir2", 4058 + "date": "2021-03-13", 4059 + "similarity": 0.667, 4060 + "confidence": 0.9, 4061 + "confirmed": true, 4062 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CMVv0mOlir2.jpg", 4063 + "expression": "playful snarl, biting into food", 4064 + "pose": "close-up shot, holding food to mouth", 4065 + "description": "long brown hair, slightly unkempt, wearing a green t-shirt. No beard.", 4066 + "location": "a wooden-paneled room, possibly a cabin", 4067 + "style": "casual phone selfie", 4068 + "framing": "tight close-up of face", 4069 + "domain": "solo-portrait", 4070 + "tags": [ 4071 + "eating", 4072 + "close-up", 4073 + "selfie", 4074 + "wooden interior", 4075 + "casual" 4076 + ], 4077 + "caption": "Snacking in style!", 4078 + "n_other_people": 0 4079 + }, 4080 + { 4081 + "shortcode": "CMDRJ_3l8pH", 4082 + "date": "2021-03-05", 4083 + "similarity": 0.7039, 4084 + "confidence": 0.95, 4085 + "confirmed": true, 4086 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CMDRJ_3l8pH.jpg", 4087 + "expression": "neutral look, eyes wide open.", 4088 + "pose": "holding a section of hair up with one hand, looking directly at the camera.", 4089 + "description": "long brown hair, slightly wet looking, brushed back, wearing a loose pink sweater.", 4090 + "location": "wooden interior, likely a cabin.", 4091 + "style": "casual phone selfie", 4092 + "framing": "tight close-up of face", 4093 + "domain": "solo-portrait", 4094 + "tags": [ 4095 + "hair", 4096 + "pink sweater", 4097 + "selfie", 4098 + "indoor" 4099 + ], 4100 + "caption": "New style experiment vibes.", 4101 + "n_other_people": 0 4102 + }, 4103 + { 4104 + "shortcode": "CLOJEOvlWsO", 4105 + "date": "2021-02-13", 4106 + "similarity": 0.5604, 4107 + "confidence": 0.9, 4108 + "confirmed": true, 4109 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CLOJEOvlWsO.jpg", 4110 + "expression": "neutral, looking over the cup", 4111 + "pose": "seated at a table, sipping from a black mug with a skull design", 4112 + "description": "Short, tousled brown hair, no beard, wearing a patterned white shirt with colorful shapes. A white headband is on his head.", 4113 + "location": "casual cafe with wooden booths", 4114 + "style": "casual snapshot", 4115 + "framing": "medium shot waist-up", 4116 + "domain": "cooking-or-eating", 4117 + "tags": [ 4118 + "cafe", 4119 + "coffee mug", 4120 + "casual", 4121 + "inside", 4122 + "headband" 4123 + ], 4124 + "caption": "Morning vibes with a side of mystery.", 4125 + "n_other_people": 0 4126 + }, 4127 + { 4128 + "shortcode": "CKBIxZPFmPn", 4129 + "date": "2021-01-14", 4130 + "similarity": 0.6654, 4131 + "confidence": 0.95, 4132 + "confirmed": true, 4133 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CKBIxZPFmPn.jpg", 4134 + "expression": "intense gaze", 4135 + "pose": "holding both hands near face with fingers splayed", 4136 + "description": "short dark hair, no beard, wearing a red shirt with infinity symbol and blue nail polish", 4137 + "location": "interior with wooden beams", 4138 + "style": "bold and vibrant portrait", 4139 + "framing": "tight close-up of face", 4140 + "domain": "solo-portrait", 4141 + "tags": [ 4142 + "red shirt", 4143 + "blue nail polish", 4144 + "dynamic lighting", 4145 + "artistic pose" 4146 + ], 4147 + "caption": "Capturing the essence of creativity and style.", 4148 + "n_other_people": 0 4149 + }, 4150 + { 4151 + "shortcode": "CI9guJBlBji", 4152 + "date": "2020-12-19", 4153 + "similarity": 0.7166, 4154 + "confidence": 0.95, 4155 + "confirmed": true, 4156 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CI9guJBlBji.jpg", 4157 + "expression": "serious, focused gaze", 4158 + "pose": "standing against a tree with both hands resting behind head", 4159 + "description": "Medium-length light brown hair, no beard, wearing a black sweatshirt with a colorful graphic and a light blue shirt underneath.", 4160 + "location": "wooded outdoor area with large trees", 4161 + "style": "casual outdoor portrait", 4162 + "framing": "medium shot waist-up", 4163 + "domain": "travel-or-outdoor", 4164 + "tags": [ 4165 + "nature", 4166 + "tree", 4167 + "outdoor", 4168 + "casual", 4169 + "graphic sweatshirt" 4170 + ], 4171 + "caption": "Finding peace among the trees.", 4172 + "n_other_people": 0 4173 + }, 4174 + { 4175 + "shortcode": "CIljok2lMgA", 4176 + "date": "2020-12-09", 4177 + "similarity": 0.5207, 4178 + "confidence": 0.95, 4179 + "confirmed": true, 4180 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CIljok2lMgA.jpg", 4181 + "expression": "neutral gaze into the camera", 4182 + "pose": "holding a plush toy close to the face, partially obscuring facial features", 4183 + "description": "Medium-length brown hair, unkempt. Wearing a dark purple shirt with a simple drawing. Holding a colorful plush toy with large eyes.", 4184 + "location": "room with wooden ceiling", 4185 + "style": "casual phone selfie", 4186 + "framing": "tight close-up of face", 4187 + "domain": "solo-portrait", 4188 + "tags": [ 4189 + "plush toy", 4190 + "sunlight", 4191 + "selfie", 4192 + "drawing on shirt" 4193 + ], 4194 + "caption": "Chilling with my colorful friend 🌈", 4195 + "n_other_people": 0 4196 + }, 4197 + { 4198 + "shortcode": "CIZByiClsok", 4199 + "date": "2020-12-04", 4200 + "similarity": 0.6882, 4201 + "confidence": 0.95, 4202 + "confirmed": true, 4203 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CIZByiClsok.jpg", 4204 + "expression": "slightly open mouth, neutral expression", 4205 + "pose": "lying down on a surface, looking up at the camera", 4206 + "description": "Medium-length hair, slightly messy and dark brown, wearing a black t-shirt.", 4207 + "location": "unknown indoor setting", 4208 + "style": "artistic with digital drawings", 4209 + "framing": "tight close-up of face", 4210 + "domain": "art", 4211 + "tags": [ 4212 + "whistlegraph", 4213 + "illustrations", 4214 + "artistic", 4215 + "lying down" 4216 + ], 4217 + "caption": "Whistlegraph dreams come to life.", 4218 + "n_other_people": 0 4219 + }, 4220 + { 4221 + "shortcode": "CIIdDGuFc_d", 4222 + "date": "2020-11-28", 4223 + "similarity": 0.5918, 4224 + "confidence": 0.9, 4225 + "confirmed": true, 4226 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CIIdDGuFc_d.jpg", 4227 + "expression": "wide smile with a touch of surprise", 4228 + "pose": "face close-up, looking slightly upwards at the camera, hand touching chin.", 4229 + "description": "Medium-length brown hair, no beard, wearing a red sweatshirt. Playful doodles are drawn around.", 4230 + "location": "indoor space with a digitally doodled backdrop", 4231 + "style": "digital art enhancement with playful overlays", 4232 + "framing": "tight close-up of face", 4233 + "domain": "solo-portrait", 4234 + "tags": [ 4235 + "digital art", 4236 + "doodles", 4237 + "playful", 4238 + "close-up", 4239 + "colorful", 4240 + "high contrast" 4241 + ], 4242 + "caption": "Creative vibes and doodle dreams.", 4243 + "n_other_people": 0 4244 + }, 4245 + { 4246 + "shortcode": "CH7gPoNFeD6", 4247 + "date": "2020-11-23", 4248 + "similarity": 0.6663, 4249 + "confidence": 0.95, 4250 + "confirmed": true, 4251 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CH7gPoNFeD6.jpg", 4252 + "expression": "neutral face with relaxed lips", 4253 + "pose": "looking directly at the camera from below, likely holding the camera himself", 4254 + "description": "short, tousled hair, light stubble, wearing a puffy blue jacket and lime green earbuds.", 4255 + "location": "outdoor under a shelter or pavilion with green and beige structure visible", 4256 + "style": "candid casual selfie", 4257 + "framing": "tight close-up of face", 4258 + "domain": "solo-portrait", 4259 + "tags": [ 4260 + "selfie", 4261 + "outdoor", 4262 + "earbuds", 4263 + "puffy jacket" 4264 + ], 4265 + "caption": "Morning commutes and chill vibes.", 4266 + "n_other_people": 0 4267 + }, 4268 + { 4269 + "shortcode": "CH121V-l54j", 4270 + "date": "2020-11-21", 4271 + "similarity": 0.5872, 4272 + "confidence": 0.95, 4273 + "confirmed": true, 4274 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CH121V-l54j.jpg", 4275 + "expression": "slightly open mouth, relaxed gaze", 4276 + "pose": "lying down on a wooden floor, camera facing directly above", 4277 + "description": "medium-length brown hair styled casually, no beard, wearing a bright yellow shirt with abstract patterns on it. Blue face paint covers most of the face.", 4278 + "location": "indoor space with wooden floor", 4279 + "style": "artistic selfie", 4280 + "framing": "tight close-up of face", 4281 + "domain": "solo-portrait", 4282 + "tags": [ 4283 + "blue face paint", 4284 + "yellow shirt", 4285 + "abstract art", 4286 + "wooden floor", 4287 + "selfie" 4288 + ], 4289 + "caption": "Feeling a bit blue but loving the art vibes.", 4290 + "n_other_people": 0 4291 + }, 4292 + { 4293 + "shortcode": "CHrN4tuFnr_", 4294 + "date": "2020-11-17", 4295 + "similarity": 0.6894, 4296 + "confidence": 0.85, 4297 + "confirmed": true, 4298 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CHrN4tuFnr_.jpg", 4299 + "expression": "neutral, slightly wide-eyed", 4300 + "pose": "standing in the middle of a room with hands in pockets", 4301 + "description": "Short tousled brown hair, wearing a colorful striped button-up shirt and dark pants, holding a small black bag.", 4302 + "location": "simple bedroom", 4303 + "style": "casual snapshot", 4304 + "framing": "medium shot waist-up", 4305 + "domain": "solo-portrait", 4306 + "tags": [ 4307 + "striped shirt", 4308 + "bedroom", 4309 + "casual", 4310 + "standing", 4311 + "indoor" 4312 + ], 4313 + "caption": "When your shirt is as vibrant as your personality.", 4314 + "n_other_people": 0 4315 + }, 4316 + { 4317 + "shortcode": "CHlC8P3l1FZ", 4318 + "date": "2020-11-14", 4319 + "similarity": 0.7007, 4320 + "confidence": 0.95, 4321 + "confirmed": true, 4322 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CHlC8P3l1FZ.jpg", 4323 + "expression": "soft smile", 4324 + "pose": "standing in an attic room, one hand touching hair, looking at the camera", 4325 + "description": "Medium-length brown hair, no beard, wearing a light pink hoodie with a teal shirt underneath, loose red corduroy pants, bright orange socks, and a crossbody bag.", 4326 + "location": "cozy attic room with wooden walls and floor", 4327 + "style": "casual snapshot", 4328 + "framing": "medium shot full-body", 4329 + "domain": "studio-or-workshop", 4330 + "tags": [ 4331 + "attic", 4332 + "casual", 4333 + "colorful", 4334 + "studio", 4335 + "artistic" 4336 + ], 4337 + "caption": "Cozy vibes in my creative space 🌼✨", 4338 + "n_other_people": 0 4339 + }, 4340 + { 4341 + "shortcode": "CHa4X0hFwM4", 4342 + "date": "2020-11-10", 4343 + "similarity": 0.614, 4344 + "confidence": 0.95, 4345 + "confirmed": true, 4346 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CHa4X0hFwM4.jpg", 4347 + "expression": "neutral, slight smile", 4348 + "pose": "looking directly at camera, head slightly tilted", 4349 + "description": "Blond hair, slightly tousled, wearing a light blue and white checkered shirt with a dark blue puffer jacket. No beard.", 4350 + "location": "wooden outdoor structure, possibly a cabin", 4351 + "style": "casual phone selfie", 4352 + "framing": "tight close-up of face", 4353 + "domain": "solo-portrait", 4354 + "tags": [ 4355 + "outdoor", 4356 + "sunlight", 4357 + "selfie", 4358 + "puffer jacket", 4359 + "wooden structure" 4360 + ], 4361 + "caption": "Catching some sunlit vibes.", 4362 + "n_other_people": 0 4363 + }, 4364 + { 4365 + "shortcode": "CHDro8Bl-TC", 4366 + "date": "2020-11-01", 4367 + "similarity": 0.574, 4368 + "confidence": 0.9, 4369 + "confirmed": true, 4370 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CHDro8Bl-TC.jpg", 4371 + "expression": "playful with tongue out", 4372 + "pose": "holding a carved pumpkin above his head", 4373 + "description": "Medium-length brown hair, messy, wearing a white button-up shirt. No visible beard or accessories.", 4374 + "location": "front of a house with Halloween decorations", 4375 + "style": "casual smartphone snapshot", 4376 + "framing": "medium shot waist-up", 4377 + "domain": "social", 4378 + "tags": [ 4379 + "Halloween", 4380 + "pumpkin", 4381 + "flash photography", 4382 + "night", 4383 + "playful" 4384 + ], 4385 + "caption": "Getting spooky with some pumpkin fun! 🎃👻", 4386 + "n_other_people": 0 4387 + }, 4388 + { 4389 + "shortcode": "CGaqtIKlznO", 4390 + "date": "2020-10-16", 4391 + "similarity": 0.6114, 4392 + "confidence": 0.95, 4393 + "confirmed": true, 4394 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CGaqtIKlznO.jpg", 4395 + "expression": "broad smile", 4396 + "pose": "facing the camera closely with an engaging expression", 4397 + "description": "short, tousled dark brown hair, wearing a casual dark t-shirt.", 4398 + "location": "interior space with wood-paneled ceiling", 4399 + "style": "casual phone selfie", 4400 + "framing": "tight close-up of face", 4401 + "domain": "solo-portrait", 4402 + "tags": [ 4403 + "selfie", 4404 + "pink lighting", 4405 + "close-up", 4406 + "smile" 4407 + ], 4408 + "caption": "Feeling the good vibes today!", 4409 + "n_other_people": 0 4410 + }, 4411 + { 4412 + "shortcode": "CGRXmZJl5bM", 4413 + "date": "2020-10-13", 4414 + "similarity": 0.6864, 4415 + "confidence": 0.95, 4416 + "confirmed": true, 4417 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CGRXmZJl5bM.jpg", 4418 + "expression": "wide smile, eyes bright", 4419 + "pose": "holding a yellow tube near his mouth, looking directly at the camera", 4420 + "description": "Short brown hair with a wild style, no beard, wearing a blue sweatshirt, and holding a yellow tube-like object near his mouth.", 4421 + "location": "outdoor garden with pale pink walls and flowers", 4422 + "style": "casual portrait", 4423 + "framing": "medium shot showing head and upper torso", 4424 + "domain": "solo-portrait", 4425 + "tags": [ 4426 + "garden", 4427 + "blue sweatshirt", 4428 + "evening light", 4429 + "happy" 4430 + ], 4431 + "caption": "Enjoying a beautiful evening outdoors.", 4432 + "n_other_people": 0 4433 + }, 4434 + { 4435 + "shortcode": "CFqWsTElYR-", 4436 + "date": "2020-09-28", 4437 + "similarity": 0.7508, 4438 + "confidence": 0.92, 4439 + "confirmed": true, 4440 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CFqWsTElYR-.jpg", 4441 + "expression": "playful, slightly open mouth with pencil between teeth", 4442 + "pose": "lying back in a car seat, holding a phone close to face", 4443 + "description": "medium length brown hair, no beard, wearing a light pink t-shirt, holding a smartphone.", 4444 + "location": "inside a car", 4445 + "style": "casual phone selfie", 4446 + "framing": "medium shot, primarily head and shoulders", 4447 + "domain": "other", 4448 + "tags": [ 4449 + "car", 4450 + "sunlight", 4451 + "selfie", 4452 + "playful", 4453 + "digital art" 4454 + ], 4455 + "caption": "Experimenting with light and colors.", 4456 + "n_other_people": 0 4457 + }, 4458 + { 4459 + "shortcode": "CFgFjqCFPeL", 4460 + "date": "2020-09-24", 4461 + "similarity": 0.6254, 4462 + "confidence": 0.9, 4463 + "confirmed": true, 4464 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CFgFjqCFPeL.jpg", 4465 + "expression": "neutral, slightly pensive", 4466 + "pose": "seated, leaning slightly towards the camera", 4467 + "description": "Long, tousled light brown hair, clean-shaven face, wearing a red and white striped button-up shirt over a blue undershirt, and a white strap across the body.", 4468 + "location": "public transport setting, possibly a bus", 4469 + "style": "candid selfie", 4470 + "framing": "medium close-up of upper body", 4471 + "domain": "travel-or-outdoor", 4472 + "tags": [ 4473 + "public transport", 4474 + "selfie", 4475 + "red shirt", 4476 + "long hair", 4477 + "travel" 4478 + ], 4479 + "caption": "Just another adventure, commute style.", 4480 + "n_other_people": 0 4481 + }, 4482 + { 4483 + "shortcode": "CEsGksqFt9U", 4484 + "date": "2020-09-03", 4485 + "similarity": 0.6419, 4486 + "confidence": 0.95, 4487 + "confirmed": true, 4488 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CEsGksqFt9U.jpg", 4489 + "expression": "wide-eyed, intense focus", 4490 + "pose": "holding a small snack close to mouth", 4491 + "description": "wild, spiky hair, no beard, wearing a light-colored shirt", 4492 + "location": "dimly lit room", 4493 + "style": "TikTok video snapshot", 4494 + "framing": "tight close-up of face", 4495 + "domain": "solo-portrait", 4496 + "tags": [ 4497 + "TikTok", 4498 + "snack", 4499 + "intense", 4500 + "close-up" 4501 + ], 4502 + "caption": "Hair game on another level tonight!", 4503 + "n_other_people": 0 4504 + }, 4505 + { 4506 + "shortcode": "CEpxlO2FOvD", 4507 + "date": "2020-09-02", 4508 + "similarity": 0.7463, 4509 + "confidence": 0.95, 4510 + "confirmed": true, 4511 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CEpxlO2FOvD.jpg", 4512 + "expression": "neutral, slightly contemplative", 4513 + "pose": "leaning forward with an arm resting on a raised knee, looking directly at the camera", 4514 + "description": "Medium-length brown hair, slight stubble, wearing a light blue shirt with casual folds, light from behind emphasizes the face features.", 4515 + "location": "outdoor setting under a bright blue sky with white clouds", 4516 + "style": "bright outdoor portrait", 4517 + "framing": "medium close-up", 4518 + "domain": "solo-portrait", 4519 + "tags": [ 4520 + "outdoor", 4521 + "sunlight", 4522 + "blue sky", 4523 + "medium close-up", 4524 + "contemplative" 4525 + ], 4526 + "caption": "Floating through a sunny afternoon 🌞", 4527 + "n_other_people": 0 4528 + }, 4529 + { 4530 + "shortcode": "CEhueQiF1lg", 4531 + "date": "2020-08-30", 4532 + "similarity": 0.6352, 4533 + "confidence": 0.9, 4534 + "confirmed": true, 4535 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CEhueQiF1lg.jpg", 4536 + "expression": "soft smile, relaxed", 4537 + "pose": "lying on grass, propped on one elbow, looking at the camera", 4538 + "description": "Longer tousled brown hair, no beard, wearing a bright blue t-shirt with neon green earphones.", 4539 + "location": "park lawn", 4540 + "style": "casual outdoor selfie", 4541 + "framing": "close-up including some shoulder and background", 4542 + "domain": "solo-portrait", 4543 + "tags": [ 4544 + "park", 4545 + "afternoon", 4546 + "relaxed", 4547 + "selfie", 4548 + "greenery" 4549 + ], 4550 + "caption": "Lazy afternoons in the sun 🌞", 4551 + "n_other_people": 0 4552 + }, 4553 + { 4554 + "shortcode": "CEVXD4OFE0J", 4555 + "date": "2020-08-26", 4556 + "similarity": 0.6441, 4557 + "confidence": 0.95, 4558 + "confirmed": true, 4559 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CEVXD4OFE0J.jpg", 4560 + "expression": "slightly open mouth, focused gaze", 4561 + "pose": "holding a marker close to the camera, inspecting it closely", 4562 + "description": "Medium-length brown hair, no beard, wearing a light button-up shirt. Holding a marker with focused attention.", 4563 + "location": "indoor room with wooden elements", 4564 + "style": "informal social media video capture", 4565 + "framing": "tight close-up of face and hands", 4566 + "domain": "kidlisp", 4567 + "tags": [ 4568 + "marker", 4569 + "close-up", 4570 + "social media", 4571 + "focus", 4572 + "handheld" 4573 + ], 4574 + "caption": "Exploring new art tools for the next big project!", 4575 + "n_other_people": 0 4576 + }, 4577 + { 4578 + "shortcode": "CDSUF5SF3T5", 4579 + "date": "2020-07-31", 4580 + "similarity": 0.6989, 4581 + "confidence": 0.98, 4582 + "confirmed": true, 4583 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CDSUF5SF3T5.jpg", 4584 + "expression": "intent gaze at the camera", 4585 + "pose": "sitting outdoors, clutching a sketchbook to his chest", 4586 + "description": "Short brown hair, wearing a bright blue t-shirt, holding a notebook with colorful sketches. A colorful bracelet is visible on his wrist.", 4587 + "location": "outdoor park bench", 4588 + "style": "colorful and vibrant", 4589 + "framing": "medium close-up of face and upper body", 4590 + "domain": "art", 4591 + "tags": [ 4592 + "art", 4593 + "sketchbook", 4594 + "outdoor", 4595 + "vibrant" 4596 + ], 4597 + "caption": "Creative energy radiates with every sketch.", 4598 + "n_other_people": 0 4599 + }, 4600 + { 4601 + "shortcode": "CCbJrcnlMh2", 4602 + "date": "2020-07-09", 4603 + "similarity": 0.6405, 4604 + "confidence": 0.95, 4605 + "confirmed": true, 4606 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CCbJrcnlMh2.jpg", 4607 + "expression": "neutral with slight intrigue", 4608 + "pose": "leaning slightly into the frame from the side, looking directly at the camera", 4609 + "description": "Medium-length brown hair, clean-shaven, wearing a light blue button-up shirt and a yellow undershirt.", 4610 + "location": "wooden interior space, possibly a cabin", 4611 + "style": "stylized digital composite", 4612 + "framing": "medium close-up of face", 4613 + "domain": "other", 4614 + "tags": [ 4615 + "digital effect", 4616 + "cabin", 4617 + "afternoon", 4618 + "collar shirt", 4619 + "natural light" 4620 + ], 4621 + "caption": "Exploring new digital art styles in my cozy corner.", 4622 + "n_other_people": 0 4623 + }, 4624 + { 4625 + "shortcode": "CCFxuLdFeTR", 4626 + "date": "2020-07-01", 4627 + "similarity": 0.6158, 4628 + "confidence": 0.95, 4629 + "confirmed": true, 4630 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CCFxuLdFeTR.jpg", 4631 + "expression": "eyes closed, light smile", 4632 + "pose": "close-up face shot, a finger touching his face with a small sticker on it", 4633 + "description": "Short, messy hair, no beard, shirtless with a playful expression, tattoo sticker on face.", 4634 + "location": "outdoor sunny setting", 4635 + "style": "casual candid", 4636 + "framing": "tight close-up of face", 4637 + "domain": "other", 4638 + "tags": [ 4639 + "sticker", 4640 + "sunny", 4641 + "playful", 4642 + "outdoors" 4643 + ], 4644 + "caption": "Sunny days and playful vibes.", 4645 + "n_other_people": 0 4646 + }, 4647 + { 4648 + "shortcode": "CArAvEUFIaS", 4649 + "date": "2020-05-27", 4650 + "similarity": 0.6354, 4651 + "confidence": 0.9, 4652 + "confirmed": true, 4653 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CArAvEUFIaS.jpg", 4654 + "expression": "soft smile", 4655 + "pose": "leaning into the camera, outdoors with shoulder visible", 4656 + "description": "disheveled dark brown hair, lightly unshaved beard, shirtless.", 4657 + "location": "outdoor beach or park area", 4658 + "style": "digital photo with glitch effect", 4659 + "framing": "tight close-up of face", 4660 + "domain": "travel-or-outdoor", 4661 + "tags": [ 4662 + "beach", 4663 + "sunlight", 4664 + "glitch", 4665 + "close-up", 4666 + "outdoor" 4667 + ], 4668 + "caption": "Glitch in the sunshine 🌞✨", 4669 + "n_other_people": 0 4670 + }, 4671 + { 4672 + "shortcode": "CAWyYK-l40_", 4673 + "date": "2020-05-19", 4674 + "similarity": 0.7254, 4675 + "confidence": 0.95, 4676 + "confirmed": true, 4677 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/CAWyYK-l40_.jpg", 4678 + "expression": "soft smile", 4679 + "pose": "standing casually on a gravel path, holding a plastic palette and brush.", 4680 + "description": "Medium-length brown hair, no beard, wearing a pink hoodie with 'Southern Oregon' text, khaki jacket, cropped dark pants, and neon green Crocs.", 4681 + "location": "backyard with wooden fence", 4682 + "style": "casual outdoor snapshot", 4683 + "framing": "medium shot full-body", 4684 + "domain": "art", 4685 + "tags": [ 4686 + "outdoor", 4687 + "art supplies", 4688 + "casual", 4689 + "backyard", 4690 + "afternoon" 4691 + ], 4692 + "caption": "Exploring art wherever I go.", 4693 + "n_other_people": 0 4694 + }, 4695 + { 4696 + "shortcode": "B_ympa1lcoY", 4697 + "date": "2020-05-05", 4698 + "similarity": 0.6274, 4699 + "confidence": 0.95, 4700 + "confirmed": true, 4701 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B_ympa1lcoY.jpg", 4702 + "expression": "excited, wide smile", 4703 + "pose": "holding a video game controller, looking towards the camera", 4704 + "description": "Medium-length purple hair, doodles drawn on the face, wearing a light-green T-shirt with a playful print.", 4705 + "location": "indoor play area", 4706 + "style": "playful candid portrait", 4707 + "framing": "medium close-up", 4708 + "domain": "kidlisp", 4709 + "tags": [ 4710 + "gaming", 4711 + "fun", 4712 + "purple hair", 4713 + "doodles", 4714 + "playful" 4715 + ], 4716 + "caption": "Leveling up with a smile and some creativity!", 4717 + "n_other_people": 0 4718 + }, 4719 + { 4720 + "shortcode": "B_Wl8b1lmio", 4721 + "date": "2020-04-24", 4722 + "similarity": 0.515, 4723 + "confidence": 0.9, 4724 + "confirmed": true, 4725 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B_Wl8b1lmio.jpg", 4726 + "expression": "neutral, slight brow raise", 4727 + "pose": "standing next to a woman, hand behind head", 4728 + "description": "short brown hair, masked with a pink pattern face covering, wearing a gray t-shirt", 4729 + "location": "wooden interior room", 4730 + "style": "casual selfie", 4731 + "framing": "medium shot waist-up", 4732 + "domain": "social", 4733 + "tags": [ 4734 + "mask", 4735 + "indoor", 4736 + "casual", 4737 + "selfie", 4738 + "wooden interior" 4739 + ], 4740 + "caption": "Masked up and ready for a colorful day!", 4741 + "n_other_people": 1 4742 + }, 4743 + { 4744 + "shortcode": "B_NofBoFBaY", 4745 + "date": "2020-04-20", 4746 + "similarity": 0.5439, 4747 + "confidence": 0.9, 4748 + "confirmed": true, 4749 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B_NofBoFBaY.jpg", 4750 + "expression": "soft, with a slight hint of curiosity or surprise.", 4751 + "pose": "leaning closely towards another person, face intimately close.", 4752 + "description": "Long, light brown hair, clean-shaven, wearing a white shirt.", 4753 + "location": "outdoor setting with vibrant, digital effects overlay.", 4754 + "style": "digitally enhanced, glitch art style.", 4755 + "framing": "tight close-up of faces.", 4756 + "domain": "social", 4757 + "tags": [ 4758 + "glitch art", 4759 + "close-up", 4760 + "intimate", 4761 + "outdoors", 4762 + "digital effect" 4763 + ], 4764 + "caption": "When reality and digital worlds collide.", 4765 + "n_other_people": 1 4766 + }, 4767 + { 4768 + "shortcode": "B_EUGpKljcB", 4769 + "date": "2020-04-17", 4770 + "similarity": 0.6411, 4771 + "confidence": 0.9, 4772 + "confirmed": true, 4773 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B_EUGpKljcB.jpg", 4774 + "expression": "soft smile squinting in the sunlight", 4775 + "pose": "standing outdoors, facing the camera, with a slight turn to the left", 4776 + "description": "Short, light brown hair with bangs, wearing a white button-up shirt with pens in the pocket and a small green propeller accessory.", 4777 + "location": "small town street with shops", 4778 + "style": "casual phone selfie", 4779 + "framing": "medium shot waist-up", 4780 + "domain": "travel-or-outdoor", 4781 + "tags": [ 4782 + "outdoor", 4783 + "sunlight", 4784 + "street", 4785 + "pens", 4786 + "propeller" 4787 + ], 4788 + "caption": "Exploring a sunny corner of town.", 4789 + "n_other_people": 0 4790 + }, 4791 + { 4792 + "shortcode": "B-YMuTvF59v", 4793 + "date": "2020-03-31", 4794 + "similarity": 0.7163, 4795 + "confidence": 0.95, 4796 + "confirmed": true, 4797 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B-YMuTvF59v.jpg", 4798 + "expression": "soft smile", 4799 + "pose": "standing outdoors with hand touching chin thoughtfully", 4800 + "description": "Medium-length brown hair, wearing a pink hoodie with a tan jacket layered on top. No visible beard. Appears casual and stylish, with painted nails.", 4801 + "location": "outdoor park area with a large tree", 4802 + "style": "stylized portrait with digital enhancements", 4803 + "framing": "medium shot chest-up", 4804 + "domain": "solo-portrait", 4805 + "tags": [ 4806 + "outdoor", 4807 + "pink hoodie", 4808 + "stylized", 4809 + "dreamy", 4810 + "nature" 4811 + ], 4812 + "caption": "Chasing sunsets and soft breezes. 🌅✨", 4813 + "n_other_people": 0 4814 + }, 4815 + { 4816 + "shortcode": "B8Iq2C9FXdr", 4817 + "date": "2020-02-04", 4818 + "similarity": 0.6553, 4819 + "confidence": 0.95, 4820 + "confirmed": true, 4821 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B8Iq2C9FXdr.jpg", 4822 + "expression": "neutral, slight intrigue in eyes", 4823 + "pose": "seated, turned slightly over shoulder towards the camera holding a small object.", 4824 + "description": "medium-length brown hair slightly tousled, clean-shaven face, wearing a purple jacket with a denim collar, multicolored beaded bracelet on wrist.", 4825 + "location": "indoor cafe or similar seating area", 4826 + "style": "candid snapshot", 4827 + "framing": "tight close-up of face", 4828 + "domain": "social", 4829 + "tags": [ 4830 + "cafe", 4831 + "purple jacket", 4832 + "casual", 4833 + "indoor" 4834 + ], 4835 + "caption": "Lost in thought over a warm cup of creativity.", 4836 + "n_other_people": 0 4837 + }, 4838 + { 4839 + "shortcode": "B74lvDwlNK3", 4840 + "date": "2020-01-29", 4841 + "similarity": 0.5834, 4842 + "confidence": 0.9, 4843 + "confirmed": true, 4844 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B74lvDwlNK3.jpg", 4845 + "expression": "smiling and looking to the side", 4846 + "pose": "standing and interacting with another person, receiving an award", 4847 + "description": "shoulder-length brown hair, no beard. Wearing a pink graphic t-shirt with a light pink sweater tied around waist, and a crossbody bag.", 4848 + "location": "art gallery", 4849 + "style": "event capture", 4850 + "framing": "medium shot waist-up", 4851 + "domain": "social", 4852 + "tags": [ 4853 + "art gallery", 4854 + "award", 4855 + "pink shirt", 4856 + "interaction" 4857 + ], 4858 + "caption": "Big smiles and awards at the gallery event.", 4859 + "n_other_people": 3 4860 + }, 4861 + { 4862 + "shortcode": "B74lvDwlNK3", 4863 + "date": "2020-01-29", 4864 + "similarity": 0.7647, 4865 + "confidence": 0.95, 4866 + "confirmed": true, 4867 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B74lvDwlNK3.jpg", 4868 + "expression": "soft smile", 4869 + "pose": "seated on a bench, hands resting on lap, facing forward towards the camera", 4870 + "description": "Long brown hair, wearing a light pink long-sleeve shirt with printed design, colorful painted nails, and a white strap across the shoulder.", 4871 + "location": "art gallery interior with framed portrait on wall", 4872 + "style": "candid snapshot", 4873 + "framing": "medium shot waist-up", 4874 + "domain": "social", 4875 + "tags": [ 4876 + "art gallery", 4877 + "portrait", 4878 + "social", 4879 + "pink shirt", 4880 + "painted nails" 4881 + ], 4882 + "caption": "Celebrating art and good company.", 4883 + "n_other_people": 1 4884 + }, 4885 + { 4886 + "shortcode": "B74lvDwlNK3", 4887 + "date": "2020-01-29", 4888 + "similarity": 0.6847, 4889 + "confidence": 0.95, 4890 + "confirmed": true, 4891 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B74lvDwlNK3.jpg", 4892 + "expression": "broad smile", 4893 + "pose": "standing and holding a glass award in one hand", 4894 + "description": "long brown hair worn down, no beard, wearing a light pink graphic t-shirt and a bracelet.", 4895 + "location": "indoor event space", 4896 + "style": "staged event portrait", 4897 + "framing": "medium shot waist-up", 4898 + "domain": "social", 4899 + "tags": [ 4900 + "award", 4901 + "event", 4902 + "pink shirt", 4903 + "bracelet", 4904 + "long hair" 4905 + ], 4906 + "caption": "Celebrating achievements with a smile! 🏆😊", 4907 + "n_other_people": 1 4908 + }, 4909 + { 4910 + "shortcode": "B7tluDYl9GS", 4911 + "date": "2020-01-24", 4912 + "similarity": 0.6466, 4913 + "confidence": 0.95, 4914 + "confirmed": true, 4915 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B7tluDYl9GS.jpg", 4916 + "expression": "soft, contemplative", 4917 + "pose": "resting chin on hand, looking directly at the camera", 4918 + "description": "Hair is long and slightly messy, light brown; no beard; wearing a pale pink graphic sweatshirt, with bracelets on the wrist and subtle nail polish.", 4919 + "location": "outdoors under a vibrant sky with digitally enhanced clouds", 4920 + "style": "artistic with digital enhancement", 4921 + "framing": "medium close-up capturing head and upper torso", 4922 + "domain": "solo-portrait", 4923 + "tags": [ 4924 + "artistic", 4925 + "digital enhancement", 4926 + "pink sweater", 4927 + "bracelet", 4928 + "outdoors" 4929 + ], 4930 + "caption": "Dreaming under a cotton candy sky.", 4931 + "n_other_people": 0 4932 + }, 4933 + { 4934 + "shortcode": "B6_pnAllvN9", 4935 + "date": "2020-01-06", 4936 + "similarity": 0.672, 4937 + "confidence": 0.95, 4938 + "confirmed": true, 4939 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B6_pnAllvN9.jpg", 4940 + "expression": "soft smile", 4941 + "pose": "standing, head turned slightly towards the camera with arms not visible.", 4942 + "description": "Medium-length brown hair, clean-shaven, wearing a light blue button-up shirt.", 4943 + "location": "feature article in a printed newspaper", 4944 + "style": "newsprint feature photo", 4945 + "framing": "medium shot waist-up", 4946 + "domain": "lecture-or-teaching", 4947 + "tags": [ 4948 + "newspaper", 4949 + "feature article", 4950 + "profile picture", 4951 + "art professor" 4952 + ], 4953 + "caption": "Exploring the intersection of art and technology.", 4954 + "n_other_people": 0 4955 + }, 4956 + { 4957 + "shortcode": "B66A-nSlmVt", 4958 + "date": "2020-01-04", 4959 + "similarity": 0.7163, 4960 + "confidence": 0.95, 4961 + "confirmed": true, 4962 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B66A-nSlmVt.jpg", 4963 + "expression": "soft smile", 4964 + "pose": "seated at a table, holding a pen in one hand and a mug in the other", 4965 + "description": "long, light brown hair hanging loose, no beard, wearing a pink 'Southern University' hoodie, holding a green pen and a white mug.", 4966 + "location": "casual cafe setting", 4967 + "style": "casual phone snapshot", 4968 + "framing": "medium shot waist-up", 4969 + "domain": "solo-portrait", 4970 + "tags": [ 4971 + "cafe", 4972 + "artwork on wall", 4973 + "casual", 4974 + "pink hoodie", 4975 + "holding mug" 4976 + ], 4977 + "caption": "Sipping on creativity and caffeine.", 4978 + "n_other_people": 0 4979 + }, 4980 + { 4981 + "shortcode": "B6tKdwolt-1", 4982 + "date": "2019-12-30", 4983 + "similarity": 0.6961, 4984 + "confidence": 0.95, 4985 + "confirmed": true, 4986 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B6tKdwolt-1.jpg", 4987 + "expression": "open-mouthed smile", 4988 + "pose": "standing on a sidewalk, facing the camera with a backpack on one shoulder.", 4989 + "description": "Long brown hair, clean-shaven face, wearing a light purple hoodie and a taupe quilted jacket. Accessorized with a blue lanyard-style item around the neck.", 4990 + "location": "London suburban street.", 4991 + "style": "casual snapshot", 4992 + "framing": "medium shot waist-up", 4993 + "domain": "travel-or-outdoor", 4994 + "tags": [ 4995 + "sunset", 4996 + "suburban", 4997 + "backpack", 4998 + "evening" 4999 + ], 5000 + "caption": "Chasing sunsets in the city!", 5001 + "n_other_people": 0 5002 + }, 5003 + { 5004 + "shortcode": "B6qPijKlPws", 5005 + "date": "2019-12-29", 5006 + "similarity": 0.6985, 5007 + "confidence": 0.95, 5008 + "confirmed": true, 5009 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B6qPijKlPws.jpg", 5010 + "expression": "calm, neutral gaze", 5011 + "pose": "sitting indoors, looking directly at the camera, with someone else adjusting his hair", 5012 + "description": "short dark hair, wearing a lavender sweatshirt with a small pendant necklace.", 5013 + "location": "casual cafe or restaurant", 5014 + "style": "candid social snapshot", 5015 + "framing": "medium close-up shot focused on face", 5016 + "domain": "social", 5017 + "tags": [ 5018 + "cafe", 5019 + "soft light", 5020 + "lavender sweatshirt", 5021 + "social", 5022 + "indoors" 5023 + ], 5024 + "caption": "Catching candid moments in cozy places.", 5025 + "n_other_people": 1 5026 + }, 5027 + { 5028 + "shortcode": "B6OA94Dla6v", 5029 + "date": "2019-12-18", 5030 + "similarity": 0.5821, 5031 + "confidence": 0.95, 5032 + "confirmed": true, 5033 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B6OA94Dla6v.jpg", 5034 + "expression": "slight smile", 5035 + "pose": "sitting in a chair, facing right, mid-side profile", 5036 + "description": "long light brown hair tied in a bun, wearing a purple barber's cape, small blue earring", 5037 + "location": "hair salon or home setup for haircut", 5038 + "style": "colorful candid", 5039 + "framing": "close-up of face and shoulders", 5040 + "domain": "other", 5041 + "tags": [ 5042 + "haircut", 5043 + "bright lighting", 5044 + "side profile", 5045 + "barber's cape" 5046 + ], 5047 + "caption": "New hair, who’s this?", 5048 + "n_other_people": 1 5049 + }, 5050 + { 5051 + "shortcode": "B585svZFLsL", 5052 + "date": "2019-12-12", 5053 + "similarity": 0.5541, 5054 + "confidence": 0.85, 5055 + "confirmed": true, 5056 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B585svZFLsL.jpg", 5057 + "expression": "peaceful, eyes closed", 5058 + "pose": "lying down, surrounded by two dolls under a quilt", 5059 + "description": "Long dark hair, wearing a blue and white floral hat, wrapped in a layered, colorful quilt with various patterns.", 5060 + "location": "cozy indoor setting with textiles", 5061 + "style": "bold and playful aesthetic", 5062 + "framing": "tight close-up of face", 5063 + "domain": "solo-portrait", 5064 + "tags": [ 5065 + "floral hat", 5066 + "colorful textiles", 5067 + "dolls", 5068 + "cozy", 5069 + "top-down view" 5070 + ], 5071 + "caption": "Wrapped in a cozy patchwork fairytale 🌼", 5072 + "n_other_people": 0 5073 + }, 5074 + { 5075 + "shortcode": "B5tTdvUl7Xl", 5076 + "date": "2019-12-05", 5077 + "similarity": 0.7215, 5078 + "confidence": 0.95, 5079 + "confirmed": true, 5080 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B5tTdvUl7Xl.jpg", 5081 + "expression": "neutral with slight smile", 5082 + "pose": "reclined outdoors, leaning back with head tilted slightly, holding what appears to be markers or pens in hand.", 5083 + "description": "Long brown hair blowing in the wind, clean-shaven, wearing a gray puffy jacket over a yellow hoodie and a light-colored button-up shirt.", 5084 + "location": "outdoor area with a brick wall and distant trees", 5085 + "style": "candid outdoor shot", 5086 + "framing": "medium shot waist-up", 5087 + "domain": "social", 5088 + "tags": [ 5089 + "outdoor", 5090 + "sunlight", 5091 + "casual", 5092 + "yellow hoodie", 5093 + "art supplies" 5094 + ], 5095 + "caption": "Embracing the sunny vibes with a creative touch.", 5096 + "n_other_people": 0 5097 + }, 5098 + { 5099 + "shortcode": "B4drQrplRYK", 5100 + "date": "2019-11-05", 5101 + "similarity": 0.6598, 5102 + "confidence": 0.95, 5103 + "confirmed": true, 5104 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B4drQrplRYK.jpg", 5105 + "expression": "soft smile with a slightly open mouth", 5106 + "pose": "sitting and leaning against the window side of a vehicle, possibly an airplane, with headphones on", 5107 + "description": "Long hair, light brown and slightly messy, no beard. Wearing a pink hoodie with large printed text, over-ear headphones, and a neon green ribbon visible on one side.", 5108 + "location": "inside an airplane", 5109 + "style": "casual selfie", 5110 + "framing": "tight close-up of face", 5111 + "domain": "travel-or-outdoor", 5112 + "tags": [ 5113 + "airplane", 5114 + "travel", 5115 + "selfie", 5116 + "headphones", 5117 + "pink hoodie" 5118 + ], 5119 + "caption": "Off on an airborne adventure with tunes and comfy vibes!", 5120 + "n_other_people": 0 5121 + }, 5122 + { 5123 + "shortcode": "B4bfeNHFvQV", 5124 + "date": "2019-11-04", 5125 + "similarity": 0.6357, 5126 + "confidence": 0.9, 5127 + "confirmed": true, 5128 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B4bfeNHFvQV.jpg", 5129 + "expression": "engaged, slight smile", 5130 + "pose": "standing sideways, holding objects in hands, in conversation with someone", 5131 + "description": "Shoulder-length brown hair, no beard, wearing a light blue shirt over a blue tee, accessorized with a lanyard and a bright green wristband.", 5132 + "location": "modern concrete academic campus", 5133 + "style": "casual interaction", 5134 + "framing": "medium shot showing full upper body", 5135 + "domain": "social", 5136 + "tags": [ 5137 + "conversation", 5138 + "academic setting", 5139 + "lanyard", 5140 + "casual interaction" 5141 + ], 5142 + "caption": "Caught in deep conversation at the campus!", 5143 + "n_other_people": 1 5144 + }, 5145 + { 5146 + "shortcode": "B4bfeNHFvQV", 5147 + "date": "2019-11-04", 5148 + "similarity": 0.5792, 5149 + "confidence": 0.95, 5150 + "confirmed": true, 5151 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B4bfeNHFvQV.jpg", 5152 + "expression": "thoughtful, hand on chin", 5153 + "pose": "crouched down on one knee, looking at the camera", 5154 + "description": "Long brown hair, slightly tousled, wearing a bright green oversized t-shirt and black pants. No beard. A yellow scrunchie on the wrist.", 5155 + "location": "outdoor street scene, near a sign reading 'Bombay Parking'", 5156 + "style": "casual group photo", 5157 + "framing": "medium shot showing full bodies of three subjects", 5158 + "domain": "social", 5159 + "tags": [ 5160 + "street", 5161 + "group", 5162 + "night", 5163 + "casual", 5164 + "green shirt", 5165 + "thoughtful pose" 5166 + ], 5167 + "caption": "Late-night street adventures.", 5168 + "n_other_people": 3 5169 + }, 5170 + { 5171 + "shortcode": "B4Sd2rpliYM", 5172 + "date": "2019-10-31", 5173 + "similarity": 0.5933, 5174 + "confidence": 0.95, 5175 + "confirmed": true, 5176 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B4Sd2rpliYM.jpg", 5177 + "expression": "focused concentration", 5178 + "pose": "sitting cross-legged on the floor, working on a laptop surrounded by items like a tablet and a drink bottle", 5179 + "description": "straight, chin-length brown hair, clean-shaven, wearing a white long-sleeve shirt and green pants, no accessories.", 5180 + "location": "minimalist studio space", 5181 + "style": "candid snapshot", 5182 + "framing": "wide environmental", 5183 + "domain": "other", 5184 + "tags": [ 5185 + "laptop", 5186 + "studio", 5187 + "flowers", 5188 + "art supplies", 5189 + "workspace", 5190 + "indoor" 5191 + ], 5192 + "caption": "Focused creativity in the studio.", 5193 + "n_other_people": 0 5194 + }, 5195 + { 5196 + "shortcode": "B3I-ZpZFTDr", 5197 + "date": "2019-10-03", 5198 + "similarity": 0.6799, 5199 + "confidence": 0.95, 5200 + "confirmed": true, 5201 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B3I-ZpZFTDr.jpg", 5202 + "expression": "wide smile", 5203 + "pose": "appearing in a visa application form with only headshot visible.", 5204 + "description": "mid-length brown hair, clean-shaven, wearing a white collared shirt.", 5205 + "location": "Hyderabad Airport visa application form", 5206 + "style": "official document photograph", 5207 + "framing": "tight close-up of face", 5208 + "domain": "other", 5209 + "tags": [ 5210 + "visa", 5211 + "application", 5212 + "official", 5213 + "document", 5214 + "ID" 5215 + ], 5216 + "caption": null, 5217 + "n_other_people": 0 5218 + }, 5219 + { 5220 + "shortcode": "B1gfK-jFqai", 5221 + "date": "2019-08-23", 5222 + "similarity": 0.6968, 5223 + "confidence": 0.9, 5224 + "confirmed": true, 5225 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B1gfK-jFqai.jpg", 5226 + "expression": "warm smile, leaning cheek on hand", 5227 + "pose": "leaning onto his hand, looking directly at the camera", 5228 + "description": "Long brown hair, clean-shaven, wearing a light gray shirt over a white collared top.", 5229 + "location": "studio with colorful abstract art background", 5230 + "style": "studio portrait", 5231 + "framing": "medium shot, focusing on face and shoulders", 5232 + "domain": "solo-portrait", 5233 + "tags": [ 5234 + "studio", 5235 + "portrait", 5236 + "colorful background", 5237 + "smile" 5238 + ], 5239 + "caption": "Feeling artsy in the studio!", 5240 + "n_other_people": 0 5241 + }, 5242 + { 5243 + "shortcode": "B0Wu5tYlIeH", 5244 + "date": "2019-07-25", 5245 + "similarity": 0.6199, 5246 + "confidence": 0.95, 5247 + "confirmed": true, 5248 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B0Wu5tYlIeH.jpg", 5249 + "expression": "slightly open-mouthed, relaxed", 5250 + "pose": "sitting inside a vehicle, one knee bent up close", 5251 + "description": "Long, tousled brown hair, no beard, wearing a bright neon green t-shirt and light tan pants. No visible accessories.", 5252 + "location": "inside a vehicle", 5253 + "style": "candid smartphone capture", 5254 + "framing": "tight close-up of face and part of knee", 5255 + "domain": "travel-or-outdoor", 5256 + "tags": [ 5257 + "vehicle", 5258 + "sunlight", 5259 + "green shirt", 5260 + "close-up" 5261 + ], 5262 + "caption": "Sunshine and road trips.", 5263 + "n_other_people": 0 5264 + }, 5265 + { 5266 + "shortcode": "B0Maji3FbYN", 5267 + "date": "2019-07-21", 5268 + "similarity": 0.6324, 5269 + "confidence": 0.9, 5270 + "confirmed": true, 5271 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B0Maji3FbYN.jpg", 5272 + "expression": "bright smile", 5273 + "pose": "sitting closely beside someone, leaning in with head tilted slightly towards the camera, holding a plush toy.", 5274 + "description": "Medium-length brown hair, no beard, wearing a bright green shirt with a pin.", 5275 + "location": "car interior", 5276 + "style": "casual phone selfie", 5277 + "framing": "tight close-up of faces", 5278 + "domain": "social", 5279 + "tags": [ 5280 + "car", 5281 + "selfie", 5282 + "green shirt", 5283 + "plush toy", 5284 + "smiling" 5285 + ], 5286 + "caption": "Road trip vibes with Groot!", 5287 + "n_other_people": 1 5288 + }, 5289 + { 5290 + "shortcode": "B0ChaNhFAJU", 5291 + "date": "2019-07-18", 5292 + "similarity": 0.6037, 5293 + "confidence": 0.95, 5294 + "confirmed": true, 5295 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/B0ChaNhFAJU.jpg", 5296 + "expression": "focused, intense gaze", 5297 + "pose": "lying prone on the floor, supporting head with one hand, interacting with pipe cleaners on table", 5298 + "description": "Medium-length brown hair, slightly wet, wearing a bright green T-shirt. Engaged with colorful bent pipe cleaners forming shapes in front of him.", 5299 + "location": "living room with vintage floral-patterned couch", 5300 + "style": "candid playful moment", 5301 + "framing": "tight close-up of face and hands", 5302 + "domain": "other", 5303 + "tags": [ 5304 + "focus", 5305 + "pipe cleaners", 5306 + "living room", 5307 + "green shirt", 5308 + "casual" 5309 + ], 5310 + "caption": "Lost in the creative flow with pipe cleaners.", 5311 + "n_other_people": 0 5312 + }, 5313 + { 5314 + "shortcode": "Bz3cjM2lCsb", 5315 + "date": "2019-07-13", 5316 + "similarity": 0.6419, 5317 + "confidence": 0.95, 5318 + "confirmed": true, 5319 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bz3cjM2lCsb.jpg", 5320 + "expression": "neutral, slightly parted lips", 5321 + "pose": "facing camera, close-up with visible shoulders", 5322 + "description": "wet hair, shoulder-length and tousled, no beard, shirtless", 5323 + "location": "outdoor sky, likely beach or poolside", 5324 + "style": "casual phone selfie", 5325 + "framing": "tight close-up of face", 5326 + "domain": "solo-portrait", 5327 + "tags": [ 5328 + "outdoors", 5329 + "summer", 5330 + "selfie", 5331 + "bright sky" 5332 + ], 5333 + "caption": "Soaking up the sun and the moment.", 5334 + "n_other_people": 0 5335 + }, 5336 + { 5337 + "shortcode": "BzzLLjFl0zU", 5338 + "date": "2019-07-12", 5339 + "similarity": 0.7363, 5340 + "confidence": 0.95, 5341 + "confirmed": true, 5342 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BzzLLjFl0zU.jpg", 5343 + "expression": "engaged, mouth slightly open", 5344 + "pose": "seated in a kitchen, speaking toward the camera", 5345 + "description": "Short brown hair, no beard, wearing a bright green sweatshirt and silver earrings.", 5346 + "location": "kitchen interior", 5347 + "style": "casual interview frame", 5348 + "framing": "medium shot waist-up", 5349 + "domain": "kidlisp", 5350 + "tags": [ 5351 + "kitchen", 5352 + "interview", 5353 + "green sweatshirt", 5354 + "speaking" 5355 + ], 5356 + "caption": "Jeffrey diving deep into Kid Pix nostalgia.", 5357 + "n_other_people": 0 5358 + }, 5359 + { 5360 + "shortcode": "BzbKiDIH020", 5361 + "date": "2019-07-02", 5362 + "similarity": 0.6043, 5363 + "confidence": 0.95, 5364 + "confirmed": true, 5365 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BzbKiDIH020.jpg", 5366 + "expression": "soft smile, looking at the puppet", 5367 + "pose": "standing outdoors holding and looking at a green puppet with stitched features", 5368 + "description": "Jeffrey has medium-length, dark blond hair with a slightly tousled look. He is wearing a bright green T-shirt with 'Capricorn I'm too busy for my nap' written on it. He has no beard or visible accessories.", 5369 + "location": "outdoor garden or park", 5370 + "style": "candid", 5371 + "framing": "medium shot from chest up", 5372 + "domain": "solo-portrait", 5373 + "tags": [ 5374 + "puppet", 5375 + "green shirt", 5376 + "Capricorn", 5377 + "outdoors", 5378 + "nature" 5379 + ], 5380 + "caption": "Just me and my little green friend enjoying the afternoon.", 5381 + "n_other_people": 0 5382 + }, 5383 + { 5384 + "shortcode": "By9v_soFDaT", 5385 + "date": "2019-06-21", 5386 + "similarity": 0.6972, 5387 + "confidence": 0.95, 5388 + "confirmed": true, 5389 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/By9v_soFDaT.jpg", 5390 + "expression": "neutral, slight curiosity", 5391 + "pose": "sitting on the floor, holding a Kid Pix Professional box and floppy disk with one hand while looking over his shoulder towards the camera", 5392 + "description": "Shoulder-length brown hair, clean-shaven, wearing a bright green sweatshirt and a denim shirt underneath, accessorized with a beaded bracelet.", 5393 + "location": "living room with assorted items", 5394 + "style": "casual candid photo", 5395 + "framing": "medium shot, waist-up", 5396 + "domain": "kidlisp", 5397 + "tags": [ 5398 + "Kid Pix", 5399 + "living room", 5400 + "floppy disk", 5401 + "green sweatshirt", 5402 + "casual" 5403 + ], 5404 + "caption": "Throwback to the Kid Pix days!", 5405 + "n_other_people": 0 5406 + }, 5407 + { 5408 + "shortcode": "Bykrvj3Fn0G", 5409 + "date": "2019-06-11", 5410 + "similarity": 0.7188, 5411 + "confidence": 0.95, 5412 + "confirmed": true, 5413 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bykrvj3Fn0G.jpg", 5414 + "expression": "playful with whipped cream on upper lip", 5415 + "pose": "seated at a table holding a cup with whipped cream and a pastry", 5416 + "description": "short brown hair, wearing a yellow hoodie with a white shirt collar peeking out. No visible beard, and a playful expression with whipped cream on his upper lip.", 5417 + "location": "fancy tea room", 5418 + "style": "candid dining snapshot", 5419 + "framing": "medium shot waist-up", 5420 + "domain": "cooking-or-eating", 5421 + "tags": [ 5422 + "tea", 5423 + "cafe", 5424 + "pastry", 5425 + "yellow hoodie", 5426 + "whipped cream" 5427 + ], 5428 + "caption": "Afternoon tea adventures with a sweet twist!", 5429 + "n_other_people": 2 5430 + }, 5431 + { 5432 + "shortcode": "ByDEg8hH-9n", 5433 + "date": "2019-05-29", 5434 + "similarity": 0.7261, 5435 + "confidence": 0.9, 5436 + "confirmed": true, 5437 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/ByDEg8hH-9n.jpg", 5438 + "expression": "casual eating", 5439 + "pose": "seated at a table, holding a burrito mid-bite", 5440 + "description": "Long brown hair, wearing a bright yellow hoodie with 'ANDREW' text, and a sticker on the chest.", 5441 + "location": "small casual eatery", 5442 + "style": "casual phone selfie", 5443 + "framing": "medium shot waist-up", 5444 + "domain": "cooking-or-eating", 5445 + "tags": [ 5446 + "yellow hoodie", 5447 + "eating", 5448 + "casual", 5449 + "indoor", 5450 + "burrito" 5451 + ], 5452 + "caption": "Eating my favorite burrito in style.", 5453 + "n_other_people": 0 5454 + }, 5455 + { 5456 + "shortcode": "Bx9XalrFis9", 5457 + "date": "2019-05-27", 5458 + "similarity": 0.6156, 5459 + "confidence": 0.95, 5460 + "confirmed": true, 5461 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bx9XalrFis9.jpg", 5462 + "expression": "neutral with lips slightly parted", 5463 + "pose": "leaning against a kitchen cabinet with head tilted, gaze directed at camera", 5464 + "description": "Medium-length light brown hair slightly messy, no beard, wearing a bright green sweater with a casual fit, and small green earring in the left ear.", 5465 + "location": "minimalist kitchen with light-colored tiles and a cabinet", 5466 + "style": "casual phone selfie", 5467 + "framing": "tight close-up of face", 5468 + "domain": "solo-portrait", 5469 + "tags": [ 5470 + "kitchen", 5471 + "green sweater", 5472 + "rainbow effect", 5473 + "earring" 5474 + ], 5475 + "caption": "Feeling the colors of the day.", 5476 + "n_other_people": 0 5477 + }, 5478 + { 5479 + "shortcode": "Bxs4XdZlzeK", 5480 + "date": "2019-05-20", 5481 + "similarity": 0.604, 5482 + "confidence": 0.95, 5483 + "confirmed": true, 5484 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bxs4XdZlzeK.jpg", 5485 + "expression": "neutral, slight squint from sunlight", 5486 + "pose": "looking up with a tilted head, holding camera at arm's length for a selfie", 5487 + "description": "Medium-length brown hair slightly wind-blown, wearing a pale yellow t-shirt. No beard visible. No additional accessories.", 5488 + "location": "outdoor urban setting with fire escape visible", 5489 + "style": "casual phone selfie", 5490 + "framing": "tight close-up of face", 5491 + "domain": "solo-portrait", 5492 + "tags": [ 5493 + "selfie", 5494 + "outdoor", 5495 + "sunlight", 5496 + "urban", 5497 + "sky" 5498 + ], 5499 + "caption": "Chasing the sun and city vibes.", 5500 + "n_other_people": 0 5501 + }, 5502 + { 5503 + "shortcode": "Bxnkj7vFOc4", 5504 + "date": "2019-05-18", 5505 + "similarity": 0.6753, 5506 + "confidence": 0.85, 5507 + "confirmed": true, 5508 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bxnkj7vFOc4.jpg", 5509 + "expression": "neutral, focused on task", 5510 + "pose": "standing behind a colorful painting, partially obscured by it", 5511 + "description": "long brown hair pulled back, wearing a beige t-shirt.", 5512 + "location": "studio or room with pink walls and floral curtains", 5513 + "style": "casual documentary style", 5514 + "framing": "medium shot focusing on the painting with jeffrey partially visible behind it", 5515 + "domain": "art", 5516 + "tags": [ 5517 + "painting", 5518 + "studio", 5519 + "art", 5520 + "mirror", 5521 + "focus" 5522 + ], 5523 + "caption": "Getting lost in the colors of creation.", 5524 + "n_other_people": 0 5525 + }, 5526 + { 5527 + "shortcode": "Bw5YTOSFzUm", 5528 + "date": "2019-04-30", 5529 + "similarity": 0.5306, 5530 + "confidence": 0.9, 5531 + "confirmed": true, 5532 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bw5YTOSFzUm.jpg", 5533 + "expression": "focused, looking down", 5534 + "pose": "leaning over a projector with another person, engaged in activity", 5535 + "description": "Medium-length brown hair, wearing a purple and white hoodie or jacket. Partial profile view.", 5536 + "location": "dimly lit room with projector and colorful visuals", 5537 + "style": "collage of candid moments", 5538 + "framing": "multiple scenes in a collage format", 5539 + "domain": "performance", 5540 + "tags": [ 5541 + "projector", 5542 + "collaborative", 5543 + "illustration", 5544 + "focus" 5545 + ], 5546 + "caption": "Projecting creativity in every sense.", 5547 + "n_other_people": 1 5548 + }, 5549 + { 5550 + "shortcode": "Bwi4srsFg37", 5551 + "date": "2019-04-22", 5552 + "similarity": 0.7214, 5553 + "confidence": 0.95, 5554 + "confirmed": true, 5555 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bwi4srsFg37.jpg", 5556 + "expression": "playful, sticking out tongue slightly", 5557 + "pose": "looking directly at the camera with hands in hair", 5558 + "description": "Long brown hair, slightly messy. Wearing a light denim jacket over a pastel blue shirt. A colorful button on the jacket and a red bracelet.", 5559 + "location": "indoor room with mural", 5560 + "style": "casual phone selfie", 5561 + "framing": "tight close-up of face", 5562 + "domain": "solo-portrait", 5563 + "tags": [ 5564 + "playful", 5565 + "denim jacket", 5566 + "button accessory", 5567 + "indoors" 5568 + ], 5569 + "caption": "Messy hair, don't care.", 5570 + "n_other_people": 0 5571 + }, 5572 + { 5573 + "shortcode": "BwDNssNl2S1", 5574 + "date": "2019-04-09", 5575 + "similarity": 0.6486, 5576 + "confidence": 0.95, 5577 + "confirmed": true, 5578 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BwDNssNl2S1.jpg", 5579 + "expression": "soft smile with a relaxed gaze", 5580 + "pose": "leaning against a green cushion, face close to the cushion", 5581 + "description": "Long brown hair styled with a headband, clean-shaven face, wearing a black graphic t-shirt with a silver necklace featuring a cross.", 5582 + "location": "cafe with a rustic brick wall", 5583 + "style": "casual phone selfie", 5584 + "framing": "tight close-up of face", 5585 + "domain": "solo-portrait", 5586 + "tags": [ 5587 + "headband", 5588 + "cafe", 5589 + "green cushion", 5590 + "graphic tee", 5591 + "soft lighting" 5592 + ], 5593 + "caption": "Just a cozy day in the cafe.", 5594 + "n_other_people": 0 5595 + }, 5596 + { 5597 + "shortcode": "BwA0SI4F-z8", 5598 + "date": "2019-04-08", 5599 + "similarity": 0.6734, 5600 + "confidence": 0.95, 5601 + "confirmed": true, 5602 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BwA0SI4F-z8.jpg", 5603 + "expression": "soft smile", 5604 + "pose": "sitting cross-legged by a pool, one hand touching hair", 5605 + "description": "shoulder-length brown hair, no beard, wearing a bright green sweatshirt and colorful shoes, holding a green bag with a strap.", 5606 + "location": "outdoors by a luxurious hotel pool", 5607 + "style": "casual vacation snapshot", 5608 + "framing": "medium shot waist-up", 5609 + "domain": "travel-or-outdoor", 5610 + "tags": [ 5611 + "pool", 5612 + "green sweatshirt", 5613 + "casual", 5614 + "sunny", 5615 + "travel" 5616 + ], 5617 + "caption": "Sunny days by the pool are the best days.", 5618 + "n_other_people": 0 5619 + }, 5620 + { 5621 + "shortcode": "Bt-aWCSliHq", 5622 + "date": "2019-02-17", 5623 + "similarity": 0.6975, 5624 + "confidence": 0.9, 5625 + "confirmed": true, 5626 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bt-aWCSliHq.jpg", 5627 + "expression": "engaged expression, mouth slightly open.", 5628 + "pose": "gesturing with one hand, standing in front of a glass board with ocean view.", 5629 + "description": "medium length brown hair, no beard, wearing a black one-piece swimsuit, and no accessories.", 5630 + "location": "outdoor setting next to pool with ocean view.", 5631 + "style": "candid outdoor shot", 5632 + "framing": "medium shot waist-up", 5633 + "domain": "other", 5634 + "tags": [ 5635 + "swimsuit", 5636 + "outdoors", 5637 + "ocean", 5638 + "glass board", 5639 + "daylight" 5640 + ], 5641 + "caption": "Software takes center stage, even by the ocean.", 5642 + "n_other_people": 1 5643 + }, 5644 + { 5645 + "shortcode": "Btv8rOll0SY", 5646 + "date": "2019-02-11", 5647 + "similarity": 0.6835, 5648 + "confidence": 0.95, 5649 + "confirmed": true, 5650 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Btv8rOll0SY.jpg", 5651 + "expression": "relaxed smile", 5652 + "pose": "sitting on a couch with legs crossed up, holding a phone with both hands.", 5653 + "description": "medium-length straight brown hair, no beard, wearing a light purple shirt and black pants, holding a smartphone with a colorful case.", 5654 + "location": "cozy living room", 5655 + "style": "casual phone selfie", 5656 + "framing": "medium shot showing upper body and feet", 5657 + "domain": "solo-portrait", 5658 + "tags": [ 5659 + "couch", 5660 + "phone", 5661 + "casual", 5662 + "indoor", 5663 + "smile" 5664 + ], 5665 + "caption": "Finding comfort in unexpected poses.", 5666 + "n_other_people": 0 5667 + }, 5668 + { 5669 + "shortcode": "BtgO2HHlLWI", 5670 + "date": "2019-02-05", 5671 + "similarity": 0.6654, 5672 + "confidence": 0.95, 5673 + "confirmed": true, 5674 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BtgO2HHlLWI.jpg", 5675 + "expression": "gentle smile", 5676 + "pose": "standing in a courtyard, holding a puppet towards the camera.", 5677 + "description": "medium-length brown hair, clean-shaven, wearing a blue and brown jacket over a hoodie and bright green pants with white text and graphics, holding a yellow puppet.", 5678 + "location": "residential courtyard with brick and yellow-painted houses.", 5679 + "style": "casual outdoor snapshot", 5680 + "framing": "medium shot showing full body", 5681 + "domain": "travel-or-outdoor", 5682 + "tags": [ 5683 + "puppet", 5684 + "outdoor", 5685 + "courtyard", 5686 + "casual", 5687 + "green pants" 5688 + ], 5689 + "caption": "Puppet adventures in the neighborhood 🌳", 5690 + "n_other_people": 0 5691 + }, 5692 + { 5693 + "shortcode": "BtAu7sHlGfI", 5694 + "date": "2019-01-24", 5695 + "similarity": 0.5687, 5696 + "confidence": 0.9, 5697 + "confirmed": true, 5698 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BtAu7sHlGfI.jpg", 5699 + "expression": "smile, looking up", 5700 + "pose": "slightly leaning forward, looking at something above", 5701 + "description": "Short hair, light brown, wearing a light-colored t-shirt.", 5702 + "location": "dark interior with ceiling pipes", 5703 + "style": "candid shot", 5704 + "framing": "medium shot showing face and upper torso", 5705 + "domain": "other", 5706 + "tags": [ 5707 + "purple lighting", 5708 + "interior", 5709 + "smile", 5710 + "focused upward" 5711 + ], 5712 + "caption": "Catching the light and the moment.", 5713 + "n_other_people": 0 5714 + }, 5715 + { 5716 + "shortcode": "BswZV_TFGQ7", 5717 + "date": "2019-01-18", 5718 + "similarity": 0.7336, 5719 + "confidence": 0.95, 5720 + "confirmed": true, 5721 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BswZV_TFGQ7.jpg", 5722 + "expression": "thoughtful, slight pout", 5723 + "pose": "posing with left hand touching chin in a relaxed manner", 5724 + "description": "Medium-length brown hair, slicked back. Wearing a white sweater with a bright green collar. Multiple colorful bracelets on left wrist.", 5725 + "location": "indoor setting with pastel-colored walls, possibly a home.", 5726 + "style": "casual phone selfie", 5727 + "framing": "medium shot waist-up", 5728 + "domain": "solo-portrait", 5729 + "tags": [ 5730 + "pastel walls", 5731 + "bracelets", 5732 + "casual", 5733 + "indoor" 5734 + ], 5735 + "caption": "Thinking about my next art project.", 5736 + "n_other_people": 0 5737 + }, 5738 + { 5739 + "shortcode": "BsskHbJF2a2", 5740 + "date": "2019-01-16", 5741 + "similarity": 0.6379, 5742 + "confidence": 0.95, 5743 + "confirmed": true, 5744 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BsskHbJF2a2.jpg", 5745 + "expression": "neutral, slightly focused", 5746 + "pose": "leaning forward slightly, sitting in an airport chair", 5747 + "description": "short, straight brown hair, no beard, wearing a white sweatshirt with a colorful patch on it and green pants.", 5748 + "location": "airport terminal", 5749 + "style": "casual photo", 5750 + "framing": "medium shot waist-up", 5751 + "domain": "travel-or-outdoor", 5752 + "tags": [ 5753 + "airport", 5754 + "casual", 5755 + "travel", 5756 + "sitting", 5757 + "JetBlue" 5758 + ], 5759 + "caption": "Waiting for takeoff ✈️", 5760 + "n_other_people": 0 5761 + }, 5762 + { 5763 + "shortcode": "BsqT7yJFEeE", 5764 + "date": "2019-01-15", 5765 + "similarity": 0.6422, 5766 + "confidence": 0.95, 5767 + "confirmed": true, 5768 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BsqT7yJFEeE.jpg", 5769 + "expression": "smiling with eyes open, looking at figurine", 5770 + "pose": "standing beside a rack of personalized name plates, holding a small pilgrim figurine close to face", 5771 + "description": "medium-length brown hair parted to the side, no beard, wearing a red puffer jacket, visible earring.", 5772 + "location": "souvenir shop with personalized name plates", 5773 + "style": "casual phone selfie", 5774 + "framing": "medium shot waist-up", 5775 + "domain": "other", 5776 + "tags": [ 5777 + "souvenir", 5778 + "name plates", 5779 + "pilgrim figurine", 5780 + "indoor", 5781 + "smile" 5782 + ], 5783 + "caption": "Found my name and a new friend at the Plymouth shop!", 5784 + "n_other_people": 0 5785 + }, 5786 + { 5787 + "shortcode": "Bro0ZGuFB7b", 5788 + "date": "2018-12-21", 5789 + "similarity": 0.6591, 5790 + "confidence": 0.85, 5791 + "confirmed": true, 5792 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bro0ZGuFB7b.jpg", 5793 + "expression": "neutral, slightly introspective gaze", 5794 + "pose": "sitting with hand on head, looking to the side", 5795 + "description": "Medium-length dark hair, styled messily. Wearing a blue shirt with decorative bracelets and a sticker on the forehead.", 5796 + "location": "indoor space with houseplants visible", 5797 + "style": "casual flash photo", 5798 + "framing": "tight close-up of face and upper torso", 5799 + "domain": "solo-portrait", 5800 + "tags": [ 5801 + "stickers", 5802 + "bracelets", 5803 + "flash", 5804 + "casual", 5805 + "indoor" 5806 + ], 5807 + "caption": "Reflecting on a chill evening indoors.", 5808 + "n_other_people": 0 5809 + }, 5810 + { 5811 + "shortcode": "BrdBV61lxky", 5812 + "date": "2018-12-16", 5813 + "similarity": 0.624, 5814 + "confidence": 0.95, 5815 + "confirmed": true, 5816 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BrdBV61lxky.jpg", 5817 + "expression": "neutral, slightly focused gaze", 5818 + "pose": "standing at a table, holding a plate with food", 5819 + "description": "Short brown hair, clean-shaven, wearing a light green t-shirt with a colorful graphic on it.", 5820 + "location": "casual dining venue with decorative mural", 5821 + "style": "casual phone snapshot", 5822 + "framing": "medium shot waist-up", 5823 + "domain": "cooking-or-eating", 5824 + "tags": [ 5825 + "dinner", 5826 + "mural", 5827 + "casual dining", 5828 + "social" 5829 + ], 5830 + "caption": "Just enjoying a cozy meal with good company.", 5831 + "n_other_people": 1 5832 + }, 5833 + { 5834 + "shortcode": "BrdkGI6li7Z", 5835 + "date": "2018-12-16", 5836 + "similarity": 0.6063, 5837 + "confidence": 0.9, 5838 + "confirmed": true, 5839 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BrdkGI6li7Z.jpg", 5840 + "expression": "neutral, slightly open mouth", 5841 + "pose": "standing close together in a casual pose with another person, facing the camera", 5842 + "description": "Medium-length brown hair, slight stubble, wearing a dark jacket over a blue shirt.", 5843 + "location": "indoor shopping center or similar public venue", 5844 + "style": "casual phone selfie", 5845 + "framing": "tight close-up of faces", 5846 + "domain": "social", 5847 + "tags": [ 5848 + "selfie", 5849 + "indoors", 5850 + "casual", 5851 + "holiday", 5852 + "friends" 5853 + ], 5854 + "caption": "Holiday season vibes with friends!", 5855 + "n_other_people": 1 5856 + }, 5857 + { 5858 + "shortcode": "BrYH-UJFsEF", 5859 + "date": "2018-12-14", 5860 + "similarity": 0.6612, 5861 + "confidence": 0.95, 5862 + "confirmed": true, 5863 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BrYH-UJFsEF.jpg", 5864 + "expression": "soft, contemplative gaze", 5865 + "pose": "sitting in a car, hand resting on the cheek, looking out the window", 5866 + "description": "Medium-length brown hair, slight stubble, wearing a white sweater with multicolored details and a colorful beaded bracelet.", 5867 + "location": "car interior", 5868 + "style": "casual phone selfie", 5869 + "framing": "medium shot waist-up", 5870 + "domain": "travel-or-outdoor", 5871 + "tags": [ 5872 + "car ride", 5873 + "colorful bracelet", 5874 + "casual", 5875 + "soft gaze" 5876 + ], 5877 + "caption": "Road trip vibes with a hint of color.", 5878 + "n_other_people": 0 5879 + }, 5880 + { 5881 + "shortcode": "BrIIk-6Fk54", 5882 + "date": "2018-12-08", 5883 + "similarity": 0.6119, 5884 + "confidence": 0.9, 5885 + "confirmed": true, 5886 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BrIIk-6Fk54.jpg", 5887 + "expression": "playful, mouth open slightly.", 5888 + "pose": "leaning close to another person, holding a yellow plush toy close to the camera.", 5889 + "description": "Medium-length brown hair, clean-shaven, wearing a white shirt, no accessories.", 5890 + "location": "inside a train or subway car.", 5891 + "style": "casual phone selfie", 5892 + "framing": "tight close-up of face with another person.", 5893 + "domain": "social", 5894 + "tags": [ 5895 + "train", 5896 + "plush toy", 5897 + "fun", 5898 + "friendship", 5899 + "selfie" 5900 + ], 5901 + "caption": "Just some plush toy adventures on the go!", 5902 + "n_other_people": 1 5903 + }, 5904 + { 5905 + "shortcode": "Bq4ckGFFNtW", 5906 + "date": "2018-12-02", 5907 + "similarity": 0.7615, 5908 + "confidence": 0.95, 5909 + "confirmed": true, 5910 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bq4ckGFFNtW.jpg", 5911 + "expression": "neutral, slightly tired look", 5912 + "pose": "sitting on a bed with one knee up, taking a selfie with extended arm", 5913 + "description": "Medium length brown hair, no beard, wearing a light beige t-shirt with pink pants, sitting casually.", 5914 + "location": "bedroom corner", 5915 + "style": "casual phone selfie", 5916 + "framing": "medium shot waist-up", 5917 + "domain": "solo-portrait", 5918 + "tags": [ 5919 + "selfie", 5920 + "bedroom", 5921 + "night", 5922 + "casual", 5923 + "flash photography", 5924 + "home setting" 5925 + ], 5926 + "caption": "Late night thoughts and cozy vibes.", 5927 + "n_other_people": 0 5928 + }, 5929 + { 5930 + "shortcode": "BqBQZQ7FOpd", 5931 + "date": "2018-11-11", 5932 + "similarity": 0.6005, 5933 + "confidence": 0.95, 5934 + "confirmed": true, 5935 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BqBQZQ7FOpd.jpg", 5936 + "expression": "neutral, slight smile", 5937 + "pose": "standing between two people, making a peace sign.", 5938 + "description": "Medium-length brown hair, clean-shaven, wearing a green shirt with a patterned tie and suspenders.", 5939 + "location": "indoor event space", 5940 + "style": "casual event snapshot", 5941 + "framing": "medium shot waist-up", 5942 + "domain": "social", 5943 + "tags": [ 5944 + "event", 5945 + "suspenders", 5946 + "green shirt", 5947 + "peace sign" 5948 + ], 5949 + "caption": "Throwing peace signs and good vibes!", 5950 + "n_other_people": 2 5951 + }, 5952 + { 5953 + "shortcode": "BpvRHisFYFY", 5954 + "date": "2018-11-04", 5955 + "similarity": 0.5923, 5956 + "confidence": 0.85, 5957 + "confirmed": true, 5958 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BpvRHisFYFY.jpg", 5959 + "expression": "neutral, with focused eyes looking slightly upward.", 5960 + "pose": "seated, facing the camera, with a direct gaze.", 5961 + "description": "Medium-length hair, slightly tousled, and a light mustache. Wearing a white sweater and a headset with a microphone.", 5962 + "location": "dimly-lit studio or rehearsal space.", 5963 + "style": "candid black-and-white", 5964 + "framing": "tight close-up of face", 5965 + "domain": "performance", 5966 + "tags": [ 5967 + "headset", 5968 + "black-and-white", 5969 + "focused", 5970 + "performance", 5971 + "studio" 5972 + ], 5973 + "caption": "Channeling focus amidst the dim lights and rehearsed lines.", 5974 + "n_other_people": 0 5975 + }, 5976 + { 5977 + "shortcode": "BpvRHisFYFY", 5978 + "date": "2018-11-04", 5979 + "similarity": 0.6551, 5980 + "confidence": 0.95, 5981 + "confirmed": true, 5982 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BpvRHisFYFY.jpg", 5983 + "expression": "attentive, slightly open mouth", 5984 + "pose": "seated, looking slightly to the side with a microphone headset on", 5985 + "description": "medium-length hair tucked behind ears, no beard, wearing a white sweatshirt, earring visible on left ear, microphone headset.", 5986 + "location": "studio or recording space", 5987 + "style": "black and white candid", 5988 + "framing": "medium shot chest-up", 5989 + "domain": "performance", 5990 + "tags": [ 5991 + "black and white", 5992 + "recording", 5993 + "headset", 5994 + "studio" 5995 + ], 5996 + "caption": "In the zone with the mic on 🎤", 5997 + "n_other_people": 0 5998 + }, 5999 + { 6000 + "shortcode": "BpvRHisFYFY", 6001 + "date": "2018-11-04", 6002 + "similarity": 0.6021, 6003 + "confidence": 0.95, 6004 + "confirmed": true, 6005 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BpvRHisFYFY.jpg", 6006 + "expression": "engaged and focused", 6007 + "pose": "seated, gesturing with right hand while speaking into a headset microphone", 6008 + "description": "Medium-length light brown hair, pushed back with hair clips, and no beard. Wearing a light crewneck sweatshirt with a headset microphone.", 6009 + "location": "dimly lit indoor venue, possibly a stage or event space.", 6010 + "style": "candid event portrait", 6011 + "framing": "medium close-up focus on head and upper body", 6012 + "domain": "performance", 6013 + "tags": [ 6014 + "headset", 6015 + "microphone", 6016 + "stage", 6017 + "engaged", 6018 + "event" 6019 + ], 6020 + "caption": "Deep in conversation on stage.", 6021 + "n_other_people": 0 6022 + }, 6023 + { 6024 + "shortcode": "BptaXsflViy", 6025 + "date": "2018-11-03", 6026 + "similarity": 0.6651, 6027 + "confidence": 0.95, 6028 + "confirmed": true, 6029 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BptaXsflViy.jpg", 6030 + "expression": "neutral, with a soft gaze", 6031 + "pose": "leaning into the camera, seated in a vehicle", 6032 + "description": "Medium-length brown hair, light stubble beard, wearing a white sweater with colorful patch, neon green earphones, and a crossbody strap.", 6033 + "location": "inside a bus or train", 6034 + "style": "casual phone selfie", 6035 + "framing": "tight close-up of face", 6036 + "domain": "travel-or-outdoor", 6037 + "tags": [ 6038 + "travel", 6039 + "public transport", 6040 + "casual", 6041 + "patch", 6042 + "earphones" 6043 + ], 6044 + "caption": "Exploring new places, one ride at a time.", 6045 + "n_other_people": 0 6046 + }, 6047 + { 6048 + "shortcode": "Bpo0mihlNU8", 6049 + "date": "2018-11-01", 6050 + "similarity": 0.7111, 6051 + "confidence": 0.95, 6052 + "confirmed": true, 6053 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bpo0mihlNU8.jpg", 6054 + "expression": "slightly open mouth, looking at the camera", 6055 + "pose": "seated holding a teddy bear and other objects, engaging with the camera", 6056 + "description": "Medium-length brown hair, wearing a pink shirt. Holding a teddy bear and a plaid cloth.", 6057 + "location": "room with a bed and window", 6058 + "style": "casual and colorful snapshot", 6059 + "framing": "medium shot waist-up", 6060 + "domain": "studio-or-workshop", 6061 + "tags": [ 6062 + "teddy bear", 6063 + "festival", 6064 + "pink shirt", 6065 + "casual", 6066 + "room", 6067 + "plaid cloth" 6068 + ], 6069 + "caption": "Always a joy to mix creativity with a touch of the whimsical!", 6070 + "n_other_people": 0 6071 + }, 6072 + { 6073 + "shortcode": "BpJrxC5BeRi", 6074 + "date": "2018-10-20", 6075 + "similarity": 0.6785, 6076 + "confidence": 0.9, 6077 + "confirmed": true, 6078 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BpJrxC5BeRi.jpg", 6079 + "expression": "open-mouthed laugh", 6080 + "pose": "leaning against a railing, looking up and to the side", 6081 + "description": "Medium-length dark hair, clean-shaven, wearing a white sweatshirt with a bag strap across the chest.", 6082 + "location": "outdoor urban street view with a tram and buildings", 6083 + "style": "casual travel snapshot", 6084 + "framing": "medium shot waist-up", 6085 + "domain": "travel-or-outdoor", 6086 + "tags": [ 6087 + "urban", 6088 + "railing", 6089 + "tram", 6090 + "afternoon", 6091 + "cityscape" 6092 + ], 6093 + "caption": "Enjoying the city views on a sunny afternoon!", 6094 + "n_other_people": 0 6095 + }, 6096 + { 6097 + "shortcode": "BpJrxC5BeRi", 6098 + "date": "2018-10-20", 6099 + "similarity": 0.6858, 6100 + "confidence": 0.9, 6101 + "confirmed": true, 6102 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BpJrxC5BeRi.jpg", 6103 + "expression": "neutral, eyes looking slightly up", 6104 + "pose": "standing relaxed, leaning back against a glass wall", 6105 + "description": "mid-length brown hair, no beard, wearing a white sweatshirt with a small logo, blue shirt underneath, black pants, and a black crossbody bag.", 6106 + "location": "urban rooftop with a REX sign, overlooking a busy street", 6107 + "style": "candid urban portrait", 6108 + "framing": "medium shot from knees up", 6109 + "domain": "travel-or-outdoor", 6110 + "tags": [ 6111 + "urban", 6112 + "city", 6113 + "rooftop", 6114 + "REX sign", 6115 + "casual" 6116 + ], 6117 + "caption": "Soaking in the city vibes from above.", 6118 + "n_other_people": 0 6119 + }, 6120 + { 6121 + "shortcode": "BpJPZGgBoRz", 6122 + "date": "2018-10-20", 6123 + "similarity": 0.5715, 6124 + "confidence": 0.85, 6125 + "confirmed": true, 6126 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BpJPZGgBoRz.jpg", 6127 + "expression": "neutral, slightly amused", 6128 + "pose": "standing in a public restroom taking a mirror selfie", 6129 + "description": "Short light brown hair, no beard, wearing a cream long-sleeve top and green pants with a black and white print. A large, colorful backpack is on the back, and small black shoes are worn.", 6130 + "location": "public restroom or changing area", 6131 + "style": "casual phone selfie", 6132 + "framing": "full body", 6133 + "domain": "travel-or-outdoor", 6134 + "tags": [ 6135 + "restroom", 6136 + "selfie", 6137 + "backpack", 6138 + "mirror", 6139 + "casual" 6140 + ], 6141 + "caption": "Adventure ready with style and my trusty backpack!", 6142 + "n_other_people": 0 6143 + }, 6144 + { 6145 + "shortcode": "BpJrxC5BeRi", 6146 + "date": "2018-10-20", 6147 + "similarity": 0.7318, 6148 + "confidence": 0.95, 6149 + "confirmed": true, 6150 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BpJrxC5BeRi.jpg", 6151 + "expression": "neutral, slightly contemplative", 6152 + "pose": "leaning against a glass wall with a street view visible in the background", 6153 + "description": "Shoulder-length brown hair, clean-shaven face, wearing a white sweater and carrying a black shoulder bag.", 6154 + "location": "urban street near the REX sign", 6155 + "style": "candid urban street photo", 6156 + "framing": "medium shot waist-up", 6157 + "domain": "travel-or-outdoor", 6158 + "tags": [ 6159 + "urban", 6160 + "REX sign", 6161 + "cityscape", 6162 + "afternoon" 6163 + ], 6164 + "caption": "Exploring the city vibes.", 6165 + "n_other_people": 0 6166 + }, 6167 + { 6168 + "shortcode": "BpCVd2NBs3S", 6169 + "date": "2018-10-17", 6170 + "similarity": 0.6798, 6171 + "confidence": 0.95, 6172 + "confirmed": true, 6173 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BpCVd2NBs3S.jpg", 6174 + "expression": "neutral, slightly surprised eyes wide", 6175 + "pose": "standing sideways near a wall, looking toward the camera over shoulder", 6176 + "description": "shoulder-length brown hair, no beard, wearing a bright red mesh-patterned shirt with a few accessories like hoop earrings.", 6177 + "location": "interior with textured green wall and butterfly artwork", 6178 + "style": "candid bright flash", 6179 + "framing": "medium shot waist-up", 6180 + "domain": "other", 6181 + "tags": [ 6182 + "green wall", 6183 + "butterfly artwork", 6184 + "red mesh shirt", 6185 + "flash photography" 6186 + ], 6187 + "caption": "Caught in thought by the wall of nature.", 6188 + "n_other_people": 0 6189 + }, 6190 + { 6191 + "shortcode": "BpAY8naBqHx", 6192 + "date": "2018-10-16", 6193 + "similarity": 0.6073, 6194 + "confidence": 0.95, 6195 + "confirmed": true, 6196 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BpAY8naBqHx.jpg", 6197 + "expression": "playfully sticking out tongue, wide-eyed", 6198 + "pose": "taking a selfie with one arm up, face close to camera", 6199 + "description": "Short brown hair, clean-shaven, wearing a casual blue t-shirt with 'Have A Nice Day' text on the sleeve.", 6200 + "location": "indoor kitchen or similar space with a blue cabinet and wooden shelves", 6201 + "style": "casual phone selfie", 6202 + "framing": "tight close-up of face", 6203 + "domain": "solo-portrait", 6204 + "tags": [ 6205 + "selfie", 6206 + "bright flash", 6207 + "playful", 6208 + "kitchen", 6209 + "blue shirt" 6210 + ], 6211 + "caption": "Flavor check: is my tongue neon enough?", 6212 + "n_other_people": 0 6213 + }, 6214 + { 6215 + "shortcode": "Bo6XSB0hc3w", 6216 + "date": "2018-10-14", 6217 + "similarity": 0.7086, 6218 + "confidence": 0.95, 6219 + "confirmed": true, 6220 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bo6XSB0hc3w.jpg", 6221 + "expression": "pensive, soft gaze", 6222 + "pose": "lying down with one hand on the chest and the other touching the face", 6223 + "description": "short brown hair, pensive expression, wearing a pink shirt with floral decorations tucked into the shirt.", 6224 + "location": "indoors, possibly in a bedroom", 6225 + "style": "casual phone selfie", 6226 + "framing": "tight close-up of face and chest", 6227 + "domain": "solo-portrait", 6228 + "tags": [ 6229 + "flowers", 6230 + "casual", 6231 + "flash photography", 6232 + "indoors" 6233 + ], 6234 + "caption": "Blossoming into a new day.", 6235 + "n_other_people": 0 6236 + }, 6237 + { 6238 + "shortcode": "BouBldthXrR", 6239 + "date": "2018-10-09", 6240 + "similarity": 0.6332, 6241 + "confidence": 0.95, 6242 + "confirmed": true, 6243 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BouBldthXrR.jpg", 6244 + "expression": "slightly open mouth", 6245 + "pose": "standing outdoors holding a lollipop near his mouth", 6246 + "description": "short dark hair under a white beanie with 'Finland' text, no visible beard, wearing a dark puffer jacket and holding red-and-grey striped mittens", 6247 + "location": "outdoor field by a lake", 6248 + "style": "candid smartphone snapshot", 6249 + "framing": "medium shot chest-up", 6250 + "domain": "travel-or-outdoor", 6251 + "tags": [ 6252 + "beanie", 6253 + "outdoors", 6254 + "lollipop", 6255 + "winter clothes", 6256 + "travel" 6257 + ], 6258 + "caption": "Chilly days and sweet treats!", 6259 + "n_other_people": 0 6260 + }, 6261 + { 6262 + "shortcode": "Boo1X1-hS1_", 6263 + "date": "2018-10-07", 6264 + "similarity": 0.6674, 6265 + "confidence": 0.95, 6266 + "confirmed": true, 6267 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Boo1X1-hS1_.jpg", 6268 + "expression": "open-mouthed smile", 6269 + "pose": "leaning slightly forward, partially turning towards the camera", 6270 + "description": "Medium-length brown hair, slightly messy, no beard, wearing a dark blue puffer jacket over a green shirt.", 6271 + "location": "dockside with a view of water and small boats, colorful buildings in the background", 6272 + "style": "candid snapshot", 6273 + "framing": "medium close-up framing with focus on the face and upper torso", 6274 + "domain": "travel-or-outdoor", 6275 + "tags": [ 6276 + "lake", 6277 + "boats", 6278 + "outdoor", 6279 + "sunlight", 6280 + "jacket" 6281 + ], 6282 + "caption": "Chasing swans and sunshine by the dock.", 6283 + "n_other_people": 0 6284 + }, 6285 + { 6286 + "shortcode": "BohWTjFh3UW", 6287 + "date": "2018-10-04", 6288 + "similarity": 0.6808, 6289 + "confidence": 0.9, 6290 + "confirmed": true, 6291 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BohWTjFh3UW.jpg", 6292 + "expression": "slightly open mouth, neutral expression.", 6293 + "pose": "standing behind a flower box, looking at the camera.", 6294 + "description": "medium-length brown hair, wearing a white hoodie with a graphic patch, a panda hat with ears, and earrings.", 6295 + "location": "outdoor urban balcony at night.", 6296 + "style": "flash photography with night setting", 6297 + "framing": "medium shot chest-up", 6298 + "domain": "travel-or-outdoor", 6299 + "tags": [ 6300 + "night", 6301 + "panda hat", 6302 + "urban", 6303 + "flowers", 6304 + "flash photography" 6305 + ], 6306 + "caption": "A night out with floral vibes.", 6307 + "n_other_people": 0 6308 + }, 6309 + { 6310 + "shortcode": "BoKY5dZh2tb", 6311 + "date": "2018-09-25", 6312 + "similarity": 0.5215, 6313 + "confidence": 0.95, 6314 + "confirmed": true, 6315 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BoKY5dZh2tb.jpg", 6316 + "expression": "playful, sticking out his tongue", 6317 + "pose": "sitting with one finger on his lips, engaging in a humorous moment with clay on his face.", 6318 + "description": "short brown hair, no beard, wearing a light green T-shirt with a colorful pocket, and a bright blue clay sculpture on his face.", 6319 + "location": "living room with green walls", 6320 + "style": "casual phone selfie", 6321 + "framing": "medium shot waist-up", 6322 + "domain": "kidlisp", 6323 + "tags": [ 6324 + "living room", 6325 + "playful", 6326 + "green T-shirt", 6327 + "clay sculpture", 6328 + "night" 6329 + ], 6330 + "caption": "When the art just sticks with you!", 6331 + "n_other_people": 0 6332 + }, 6333 + { 6334 + "shortcode": "Bn_W1LeBYXM", 6335 + "date": "2018-09-21", 6336 + "similarity": 0.7443, 6337 + "confidence": 0.85, 6338 + "confirmed": true, 6339 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bn_W1LeBYXM.jpg", 6340 + "expression": "neutral expression", 6341 + "pose": "sitting on the ground, slightly leaning on another person", 6342 + "description": "medium-length brown hair, no beard, wearing a light green shirt", 6343 + "location": "outdoor group setting against a white wall", 6344 + "style": "candid group photo", 6345 + "framing": "medium shot, showing upper bodies of group", 6346 + "domain": "social", 6347 + "tags": [ 6348 + "group photo", 6349 + "social", 6350 + "casual", 6351 + "outdoor", 6352 + "friends" 6353 + ], 6354 + "caption": "Squad goals, always.", 6355 + "n_other_people": 7 6356 + }, 6357 + { 6358 + "shortcode": "Bn3aukuhgFY", 6359 + "date": "2018-09-18", 6360 + "similarity": 0.6465, 6361 + "confidence": 0.95, 6362 + "confirmed": true, 6363 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bn3aukuhgFY.jpg", 6364 + "expression": "neutral, with a slight inquisitive look", 6365 + "pose": "close-up selfie with hand in hair, looking into camera", 6366 + "description": "medium-length dark hair slicked back, light stubble, wearing a pink t-shirt", 6367 + "location": "outdoor area with leafy background", 6368 + "style": "casual phone selfie", 6369 + "framing": "tight close-up of face", 6370 + "domain": "solo-portrait", 6371 + "tags": [ 6372 + "selfie", 6373 + "pink shirt", 6374 + "earring", 6375 + "natural light" 6376 + ], 6377 + "caption": "Gallery vibes tomorrow! 🌿✨", 6378 + "n_other_people": 0 6379 + }, 6380 + { 6381 + "shortcode": "BnspiLrBGsr", 6382 + "date": "2018-09-14", 6383 + "similarity": 0.6495, 6384 + "confidence": 0.9, 6385 + "confirmed": true, 6386 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BnspiLrBGsr.jpg", 6387 + "expression": "neutral", 6388 + "pose": "looking at the camera in a digital photograph inset on a webpage.", 6389 + "description": "short hair, clean-shaven, wearing a casual t-shirt with a colorful print visible at the shoulder.", 6390 + "location": "computer screen document", 6391 + "style": "digital document screenshot", 6392 + "framing": "tight crop of a computer screen", 6393 + "domain": "lecture-or-teaching", 6394 + "tags": [ 6395 + "screen", 6396 + "internship", 6397 + "art program", 6398 + "digital", 6399 + "profile photo" 6400 + ], 6401 + "caption": "Back in 2018, diving into the world of digital painting!", 6402 + "n_other_people": 0 6403 + }, 6404 + { 6405 + "shortcode": "BnspiLrBGsr", 6406 + "date": "2018-09-14", 6407 + "similarity": 0.7261, 6408 + "confidence": 0.8, 6409 + "confirmed": true, 6410 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BnspiLrBGsr.jpg", 6411 + "expression": "neutral", 6412 + "pose": "appearing in a small portrait view at the bottom right corner of a digital artwork.", 6413 + "description": "short dark hair, stubble, wearing a pink T-shirt.", 6414 + "location": "digital artwork display", 6415 + "style": "digital composite", 6416 + "framing": "small corner portrait inset within a larger composition", 6417 + "domain": "art", 6418 + "tags": [ 6419 + "digital artwork", 6420 + "abstract", 6421 + "small portrait", 6422 + "colorful" 6423 + ], 6424 + "caption": "Sneak peek into my latest digital art project!", 6425 + "n_other_people": 0 6426 + }, 6427 + { 6428 + "shortcode": "BnltmCIhq6i", 6429 + "date": "2018-09-11", 6430 + "similarity": 0.6869, 6431 + "confidence": 0.95, 6432 + "confirmed": true, 6433 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BnltmCIhq6i.jpg", 6434 + "expression": "neutral, slightly tired eyes", 6435 + "pose": "close-up selfie, slightly above eye level, looking directly at camera", 6436 + "description": "medium-length brown hair, no beard, wearing a white sweater with colorful patches and a pink undershirt. Green earbuds around neck.", 6437 + "location": "Oslo, Norway", 6438 + "style": "casual phone selfie", 6439 + "framing": "tight close-up of face", 6440 + "domain": "travel-or-outdoor", 6441 + "tags": [ 6442 + "Oslo", 6443 + "selfie", 6444 + "casual", 6445 + "travel", 6446 + "indoor" 6447 + ], 6448 + "caption": "Exploring Oslo one selfie at a time!", 6449 + "n_other_people": 0 6450 + }, 6451 + { 6452 + "shortcode": "BngUgN2hkZt", 6453 + "date": "2018-09-09", 6454 + "similarity": 0.5855, 6455 + "confidence": 0.95, 6456 + "confirmed": true, 6457 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BngUgN2hkZt.jpg", 6458 + "expression": "contemplative, slightly puzzled", 6459 + "pose": "seated outdoors, reclined against a red wall, hand near mouth", 6460 + "description": "Medium-length dark hair, no beard, wearing a white shirt with a casual fit.", 6461 + "location": "rooftop or outdoor patio area with red wall", 6462 + "style": "candid snapshot", 6463 + "framing": "medium shot from waist up", 6464 + "domain": "social", 6465 + "tags": [ 6466 + "outdoors", 6467 + "sunny", 6468 + "casual", 6469 + "beverage" 6470 + ], 6471 + "caption": "Chillin' with good company and sunshine vibes.", 6472 + "n_other_people": 1 6473 + }, 6474 + { 6475 + "shortcode": "BnTt2o8B1tt", 6476 + "date": "2018-09-04", 6477 + "similarity": 0.5512, 6478 + "confidence": 0.9, 6479 + "confirmed": true, 6480 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BnTt2o8B1tt.jpg", 6481 + "expression": "peaceful sleep", 6482 + "pose": "lying on a pillow, asleep, facing the camera's direction", 6483 + "description": "short dark hair, no beard, floral earring, asleep in bed, dressed in a white t-shirt.", 6484 + "location": "bed with white pillows and sheets", 6485 + "style": "candid bedroom snapshot", 6486 + "framing": "tight close-up of face, pillow occupying majority of background", 6487 + "domain": "solo-portrait", 6488 + "tags": [ 6489 + "sleep", 6490 + "bedroom", 6491 + "rest", 6492 + "plush toy", 6493 + "night" 6494 + ], 6495 + "caption": "Dreaming of adventures in a cozy, plush world.", 6496 + "n_other_people": 0 6497 + }, 6498 + { 6499 + "shortcode": "BnRw4yvhzrm", 6500 + "date": "2018-09-03", 6501 + "similarity": 0.7466, 6502 + "confidence": 0.98, 6503 + "confirmed": true, 6504 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BnRw4yvhzrm.jpg", 6505 + "expression": "soft smile", 6506 + "pose": "standing outdoors, facing the camera", 6507 + "description": "Medium-length brown hair, wearing a white sweatshirt with a small patch design and a black shoulder strap. No visible beard.", 6508 + "location": "outdoor urban area with scaffolding structure", 6509 + "style": "casual outdoor snapshot", 6510 + "framing": "medium shot waist-up", 6511 + "domain": "travel-or-outdoor", 6512 + "tags": [ 6513 + "outdoor", 6514 + "evening", 6515 + "urban", 6516 + "scaffolding", 6517 + "white sweatshirt" 6518 + ], 6519 + "caption": "Enjoying a beautiful evening by the tower.", 6520 + "n_other_people": 0 6521 + }, 6522 + { 6523 + "shortcode": "BnBhrRCBw24", 6524 + "date": "2018-08-28", 6525 + "similarity": 0.7488, 6526 + "confidence": 0.9, 6527 + "confirmed": true, 6528 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BnBhrRCBw24.jpg", 6529 + "expression": "relaxed gaze", 6530 + "pose": "leaning against a stone sculpture, arm resting on the chest", 6531 + "description": "Medium-length brown hair, no beard, wearing a white sweater with yellow and pink abstract patterns. Carrying a black strap across the shoulder.", 6532 + "location": "outdoor garden with a stone angel statue", 6533 + "style": "artistic outdoor portrait", 6534 + "framing": "medium shot waist-up", 6535 + "domain": "solo-portrait", 6536 + "tags": [ 6537 + "stone sculpture", 6538 + "artistic", 6539 + "outdoor", 6540 + "sweater", 6541 + "relaxed" 6542 + ], 6543 + "caption": "Chillin' with my stone angel buddy. 🌿🕊️", 6544 + "n_other_people": 0 6545 + }, 6546 + { 6547 + "shortcode": "BmiZTD6h66W", 6548 + "date": "2018-08-16", 6549 + "similarity": 0.6861, 6550 + "confidence": 0.95, 6551 + "confirmed": true, 6552 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BmiZTD6h66W.jpg", 6553 + "expression": "soft, curious look", 6554 + "pose": "resting head on knee, looking directly at the camera", 6555 + "description": "Short tousled hair, wearing a light green shirt with colorful graphic, and black pants. No visible beard. Wears a silver earring.", 6556 + "location": "outdoor setting under a metal canopy", 6557 + "style": "casual selfie", 6558 + "framing": "close-up, focusing on face and shoulder", 6559 + "domain": "solo-portrait", 6560 + "tags": [ 6561 + "selfie", 6562 + "green shirt", 6563 + "outdoor", 6564 + "afternoon", 6565 + "tousled hair" 6566 + ], 6567 + "caption": "Chillin' with a curious mind.", 6568 + "n_other_people": 0 6569 + }, 6570 + { 6571 + "shortcode": "Bmdfnwoh_UO", 6572 + "date": "2018-08-14", 6573 + "similarity": 0.6694, 6574 + "confidence": 0.95, 6575 + "confirmed": true, 6576 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bmdfnwoh_UO.jpg", 6577 + "expression": "focused gaze, neutral lips.", 6578 + "pose": "seated at an outdoor café table, pointing at his own face while looking at the camera.", 6579 + "description": "Hair is chin-length and slightly messy; wearing glasses with thick black frames. Dressed in a blue shirt with a graphic patch on the shoulder.", 6580 + "location": "outdoor café in Berlin", 6581 + "style": "casual phone selfie", 6582 + "framing": "medium shot waist-up", 6583 + "domain": "social", 6584 + "tags": [ 6585 + "Berlin", 6586 + "café", 6587 + "glasses", 6588 + "outdoor", 6589 + "casual" 6590 + ], 6591 + "caption": "Exploring Berlin vibes with friends.", 6592 + "n_other_people": 1 6593 + }, 6594 + { 6595 + "shortcode": "BlTvNt-BJQ5", 6596 + "date": "2018-07-16", 6597 + "similarity": 0.672, 6598 + "confidence": 0.95, 6599 + "confirmed": true, 6600 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BlTvNt-BJQ5.jpg", 6601 + "expression": "engaged, speaking mid-sentence", 6602 + "pose": "standing in a room, holding a smartphone with one hand, looking towards his right", 6603 + "description": "short brown hair, wearing a white sweatshirt with a patch and holding a smartphone.", 6604 + "location": "studio with books and a screen", 6605 + "style": "candid interior snapshot", 6606 + "framing": "medium shot waist-up", 6607 + "domain": "lecture-or-teaching", 6608 + "tags": [ 6609 + "lecture", 6610 + "teaching", 6611 + "studio", 6612 + "books", 6613 + "presentation" 6614 + ], 6615 + "caption": "Engaging the crowd with some new insights.", 6616 + "n_other_people": 0 6617 + }, 6618 + { 6619 + "shortcode": "BlLaWCkBHVX", 6620 + "date": "2018-07-13", 6621 + "similarity": 0.621, 6622 + "confidence": 0.85, 6623 + "confirmed": true, 6624 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BlLaWCkBHVX.jpg", 6625 + "expression": "focused, looking down at phone", 6626 + "pose": "standing with a microphone in one hand and looking at a smartphone in the other hand", 6627 + "description": "Medium-length, tousled dark hair, wearing a light blue T-shirt with a patterned front pocket.", 6628 + "location": "small indoor space with a projector screen", 6629 + "style": "candid event photo", 6630 + "framing": "medium shot waist-up", 6631 + "domain": "performance (stage, AV show, music)", 6632 + "tags": [ 6633 + "projector", 6634 + "microphone", 6635 + "digital display", 6636 + "evening lighting", 6637 + "event" 6638 + ], 6639 + "caption": "Tech and art collide in a dimly lit creative space.", 6640 + "n_other_people": 0 6641 + }, 6642 + { 6643 + "shortcode": "BkyGXYaBpr7", 6644 + "date": "2018-07-03", 6645 + "similarity": 0.5366, 6646 + "confidence": 0.9, 6647 + "confirmed": true, 6648 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BkyGXYaBpr7.jpg", 6649 + "expression": "soft smile", 6650 + "pose": "seated, leaning slightly to the side, engaged in a video call with headphones on", 6651 + "description": "Short, wavy dark hair, wearing a pink shirt. No visible beard. Relaxed and informal clothing.", 6652 + "location": "porch or outdoor area with white doors and windows", 6653 + "style": "casual phone screenshot", 6654 + "framing": "medium shot, upper body in view", 6655 + "domain": "social", 6656 + "tags": [ 6657 + "video call", 6658 + "casual", 6659 + "pink shirt", 6660 + "headphones" 6661 + ], 6662 + "caption": "Just hanging out on a chill video call.", 6663 + "n_other_people": 1 6664 + }, 6665 + { 6666 + "shortcode": "BkmXDICB7wv", 6667 + "date": "2018-06-29", 6668 + "similarity": 0.5988, 6669 + "confidence": 0.9, 6670 + "confirmed": true, 6671 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BkmXDICB7wv.jpg", 6672 + "expression": "curious, slightly tilted head", 6673 + "pose": "lying on the floor, looking at the camera", 6674 + "description": "Medium-length brown hair, wearing a red jacket.", 6675 + "location": "under a desk or table, likely in a home or office setting", 6676 + "style": "candid webcam shot", 6677 + "framing": "medium shot with two people", 6678 + "domain": "social", 6679 + "tags": [ 6680 + "floor", 6681 + "webcam", 6682 + "curious pose", 6683 + "red jacket" 6684 + ], 6685 + "caption": "Exploring under the desk with a friend.", 6686 + "n_other_people": 1 6687 + }, 6688 + { 6689 + "shortcode": "BkGbKcdhAHg", 6690 + "date": "2018-06-16", 6691 + "similarity": 0.6386, 6692 + "confidence": 0.85, 6693 + "confirmed": true, 6694 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BkGbKcdhAHg.jpg", 6695 + "expression": "intense stare", 6696 + "pose": "standing with a rifle across his shoulders, hands holding the rifle from both sides", 6697 + "description": "short brown hair, wearing a black NRA cap, shirtless, with a rifle resting on his shoulders, black painted fingernails.", 6698 + "location": "outdoors in a wooded area", 6699 + "style": "posed outdoor shot", 6700 + "framing": "medium shot waist-up", 6701 + "domain": "travel-or-outdoor", 6702 + "tags": [ 6703 + "forest", 6704 + "outdoor", 6705 + "rifle", 6706 + "NRA cap", 6707 + "shirtless" 6708 + ], 6709 + "caption": "Summer vibes gone wild.", 6710 + "n_other_people": 0 6711 + }, 6712 + { 6713 + "shortcode": "BjVv-pPBX2K", 6714 + "date": "2018-05-28", 6715 + "similarity": 0.7115, 6716 + "confidence": 0.95, 6717 + "confirmed": true, 6718 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BjVv-pPBX2K.jpg", 6719 + "expression": "neutral, slightly curious.", 6720 + "pose": "lying on a bed, holding a camera at arm's length for a selfie.", 6721 + "description": "short dark hair, clean-shaven, wearing a green and blue striped sweater.", 6722 + "location": "cozy bedroom with floral wallpaper.", 6723 + "style": "casual phone selfie", 6724 + "framing": "medium shot, capturing heads and shoulders.", 6725 + "domain": "social", 6726 + "tags": [ 6727 + "bedroom", 6728 + "selfie", 6729 + "night", 6730 + "casual", 6731 + "children" 6732 + ], 6733 + "caption": "Bedtime chaos with the little ones!", 6734 + "n_other_people": 2 6735 + }, 6736 + { 6737 + "shortcode": "BjLH3XtBKY6", 6738 + "date": "2018-05-24", 6739 + "similarity": 0.6982, 6740 + "confidence": 0.95, 6741 + "confirmed": true, 6742 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BjLH3XtBKY6.jpg", 6743 + "expression": "neutral with a slight gaze at camera", 6744 + "pose": "sitting inside a car, holding a drink close to face", 6745 + "description": "short spiky brown hair, wearing a pink shirt with a colorful patch, holding a drink with a striped straw, nails painted blue.", 6746 + "location": "inside a car", 6747 + "style": "casual phone selfie", 6748 + "framing": "tight close-up of face", 6749 + "domain": "solo-portrait", 6750 + "tags": [ 6751 + "car", 6752 + "drink", 6753 + "pink shirt", 6754 + "blue nails", 6755 + "casual" 6756 + ], 6757 + "caption": "Sipping on sunshine with a side of car karaoke.", 6758 + "n_other_people": 0 6759 + }, 6760 + { 6761 + "shortcode": "BjJugMEBZTb", 6762 + "date": "2018-05-24", 6763 + "similarity": 0.7228, 6764 + "confidence": 0.9, 6765 + "confirmed": true, 6766 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BjJugMEBZTb.jpg", 6767 + "expression": "neutral, slight tension at mouth", 6768 + "pose": "sitting at a desk, facing the camera for a selfie", 6769 + "description": "Medium-length brown hair in a disheveled state, no beard, wearing a pink t-shirt with a 'Have a Nice Day' patch.", 6770 + "location": "home studio or personal workspace", 6771 + "style": "casual phone selfie", 6772 + "framing": "medium shot waist-up", 6773 + "domain": "studio-or-workshop", 6774 + "tags": [ 6775 + "selfie", 6776 + "workspace", 6777 + "digital art", 6778 + "pink t-shirt", 6779 + "flash photography" 6780 + ], 6781 + "caption": "Creative chaos in my workspace today.", 6782 + "n_other_people": 0 6783 + }, 6784 + { 6785 + "shortcode": "BiwaxJvhvxG", 6786 + "date": "2018-05-14", 6787 + "similarity": 0.6718, 6788 + "confidence": 0.9, 6789 + "confirmed": true, 6790 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BiwaxJvhvxG.jpg", 6791 + "expression": "neutral, direct gaze into the camera", 6792 + "pose": "kneeling on a bed, holding a foot and a magazine", 6793 + "description": "Short dark hair, no beard, wearing black briefs, holding a magazine.", 6794 + "location": "bedroom with wood paneling and art on walls", 6795 + "style": "casual phone selfie", 6796 + "framing": "medium shot waist-up", 6797 + "domain": "solo-portrait", 6798 + "tags": [ 6799 + "bedroom", 6800 + "magazine", 6801 + "mirror", 6802 + "casual", 6803 + "nightwear" 6804 + ], 6805 + "caption": "Reading and relaxing on a cozy night in.", 6806 + "n_other_people": 0 6807 + }, 6808 + { 6809 + "shortcode": "Bip5mXYBPEJ", 6810 + "date": "2018-05-11", 6811 + "similarity": 0.6634, 6812 + "confidence": 0.95, 6813 + "confirmed": true, 6814 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bip5mXYBPEJ.jpg", 6815 + "expression": "wide smile with open eyes", 6816 + "pose": "seated at a desk, leaning back slightly, holding a toy with one hand and supporting the chair with the other.", 6817 + "description": "short, tousled dark hair, no beard, wearing a loose blue top and black pants with colorful socks, holding a plush yellow toy with a humorous expression.", 6818 + "location": "a cluttered home workspace with a computer displaying digital art", 6819 + "style": "casual phone snapshot", 6820 + "framing": "medium shot waist-up", 6821 + "domain": "art", 6822 + "tags": [ 6823 + "workspace", 6824 + "digital art", 6825 + "colorful socks", 6826 + "sunflowers", 6827 + "plush toy" 6828 + ], 6829 + "caption": "Always creating something fun and colorful!", 6830 + "n_other_people": 0 6831 + }, 6832 + { 6833 + "shortcode": "Bic7r7ohhKf", 6834 + "date": "2018-05-06", 6835 + "similarity": 0.7198, 6836 + "confidence": 0.85, 6837 + "confirmed": true, 6838 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bic7r7ohhKf.jpg", 6839 + "expression": "introspective with a soft gaze", 6840 + "pose": "standing in front of flowering branches, one hand behind head, cradling a book with the other hand", 6841 + "description": "short spiky brown hair, clean-shaven, wearing a white sweatshirt with abstract orange and yellow patterns, layered over a light blue shirt", 6842 + "location": "garden with flowering trees", 6843 + "style": "casual and artistic portrait", 6844 + "framing": "medium shot, showing upper body", 6845 + "domain": "solo-portrait", 6846 + "tags": [ 6847 + "nature", 6848 + "flowers", 6849 + "book", 6850 + "artistic" 6851 + ], 6852 + "caption": "Lost in the beauty of spring blossoms.", 6853 + "n_other_people": 0 6854 + }, 6855 + { 6856 + "shortcode": "BiVqg14h5Xl", 6857 + "date": "2018-05-04", 6858 + "similarity": 0.6831, 6859 + "confidence": 0.95, 6860 + "confirmed": true, 6861 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BiVqg14h5Xl.jpg", 6862 + "expression": "wide, friendly smile", 6863 + "pose": "resting chin on hand, slightly leaning forward", 6864 + "description": "Short, spiky brown hair, clean-shaven face, wearing a green sweatshirt with a round neckline.", 6865 + "location": "café with red accents", 6866 + "style": "casual phone selfie", 6867 + "framing": "tight close-up of face", 6868 + "domain": "solo-portrait", 6869 + "tags": [ 6870 + "café", 6871 + "casual", 6872 + "selfie", 6873 + "red background", 6874 + "relaxed pose" 6875 + ], 6876 + "caption": "Enjoying a cozy moment at my favorite café.", 6877 + "n_other_people": 0 6878 + }, 6879 + { 6880 + "shortcode": "BiQL8rmhXEM", 6881 + "date": "2018-05-01", 6882 + "similarity": 0.6461, 6883 + "confidence": 0.9, 6884 + "confirmed": true, 6885 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BiQL8rmhXEM.jpg", 6886 + "expression": "thoughtful, observing something", 6887 + "pose": "seated at a table, hand on chin, looking towards a projection screen", 6888 + "description": "short brown hair, wearing a blue t-shirt, no beard, seated with a thoughtful pose, no visible accessories.", 6889 + "location": "classroom or lecture room", 6890 + "style": "candid educational setting", 6891 + "framing": "medium shot including surrounding context", 6892 + "domain": "lecture-or-teaching", 6893 + "tags": [ 6894 + "lecture", 6895 + "projection", 6896 + "discussion", 6897 + "classroom", 6898 + "group setting" 6899 + ], 6900 + "caption": "Deep in thought during the discussion.", 6901 + "n_other_people": 4 6902 + }, 6903 + { 6904 + "shortcode": "Bh2BzrdB4Fm", 6905 + "date": "2018-04-21", 6906 + "similarity": 0.723, 6907 + "confidence": 0.85, 6908 + "confirmed": true, 6909 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bh2BzrdB4Fm.jpg", 6910 + "expression": "neutral with a slight hint of curiosity", 6911 + "pose": "standing in a snowy outdoor setting, facing the camera directly", 6912 + "description": "Medium-length brown hair, no beard, wearing a black T-shirt with a graphic on the front.", 6913 + "location": "outdoor snowy forest area", 6914 + "style": "outdoor portrait", 6915 + "framing": "medium shot waist-up", 6916 + "domain": "travel-or-outdoor", 6917 + "tags": [ 6918 + "snow", 6919 + "outdoors", 6920 + "forest", 6921 + "winter", 6922 + "NIN shirt" 6923 + ], 6924 + "caption": "Embracing the chill with a focused gaze.", 6925 + "n_other_people": 0 6926 + }, 6927 + { 6928 + "shortcode": "Bhu_rNehcJl", 6929 + "date": "2018-04-19", 6930 + "similarity": 0.5966, 6931 + "confidence": 0.85, 6932 + "confirmed": true, 6933 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bhu_rNehcJl.jpg", 6934 + "expression": "intense focus, slight frown.", 6935 + "pose": "crouched in a garden setting with hands clasped, looking directly at the camera.", 6936 + "description": "short hair concealed by a gray hood, light stubble, wearing a gray hoodie and black t-shirt with a logo, green pants.", 6937 + "location": "garden area with a wooden fence", 6938 + "style": "candid outdoor shot", 6939 + "framing": "medium shot waist-up", 6940 + "domain": "other", 6941 + "tags": [ 6942 + "hoodie", 6943 + "garden", 6944 + "intense gaze", 6945 + "outdoor", 6946 + "rose" 6947 + ], 6948 + "caption": "Embracing the calm amidst nature's beauty.", 6949 + "n_other_people": 0 6950 + }, 6951 + { 6952 + "shortcode": "Bhp3cKmnFfb", 6953 + "date": "2018-04-17", 6954 + "similarity": 0.7822, 6955 + "confidence": 0.95, 6956 + "confirmed": true, 6957 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bhp3cKmnFfb.jpg", 6958 + "expression": "neutral, relaxed mouth", 6959 + "pose": "sitting side by side with another person, facing the camera directly", 6960 + "description": "Short dark hair, light beard, wearing a cream sweater with a small red stain on the collar.", 6961 + "location": "outdoor cafe with flowers", 6962 + "style": "casual phone selfie", 6963 + "framing": "tight close-up of faces", 6964 + "domain": "social", 6965 + "tags": [ 6966 + "flowers", 6967 + "outdoor", 6968 + "neutral expression", 6969 + "close-up", 6970 + "together" 6971 + ], 6972 + "caption": "Chillin' among the blooms 🌸", 6973 + "n_other_people": 1 6974 + }, 6975 + { 6976 + "shortcode": "BhZtIoTB1JF", 6977 + "date": "2018-04-10", 6978 + "similarity": 0.6301, 6979 + "confidence": 0.9, 6980 + "confirmed": true, 6981 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BhZtIoTB1JF.jpg", 6982 + "expression": "eyes closed, peaceful", 6983 + "pose": "seated, head tilted slightly to the side, resting against a seat back", 6984 + "description": "Short dark hair, light stubble beard, cream hooded sweatshirt; earbuds with bright green accents.", 6985 + "location": "airplane cabin", 6986 + "style": "casual phone selfie", 6987 + "framing": "tight close-up of face", 6988 + "domain": "travel-or-outdoor", 6989 + "tags": [ 6990 + "airplane", 6991 + "earbuds", 6992 + "hoodie", 6993 + "relaxing" 6994 + ], 6995 + "caption": "Catching some rest on the flight.", 6996 + "n_other_people": 0 6997 + }, 6998 + { 6999 + "shortcode": "BhRvECcjz6W", 7000 + "date": "2018-04-07", 7001 + "similarity": 0.6899, 7002 + "confidence": 0.85, 7003 + "confirmed": true, 7004 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BhRvECcjz6W.jpg", 7005 + "expression": "intense gaze", 7006 + "pose": "standing in snow, one hand tousled in hair", 7007 + "description": "short brown hair, wearing a black NIN t-shirt and black pants with initials 'JAS', holding a green patterned fabric in one hand.", 7008 + "location": "snowy forest outdoors", 7009 + "style": "casual snapshot", 7010 + "framing": "medium shot waist-up", 7011 + "domain": "travel-or-outdoor", 7012 + "tags": [ 7013 + "snow", 7014 + "forest", 7015 + "outdoor", 7016 + "bright sunlight", 7017 + "casual" 7018 + ], 7019 + "caption": "Embracing the chill with a winter gaze.", 7020 + "n_other_people": 0 7021 + }, 7022 + { 7023 + "shortcode": "BhOx_ZCjthv", 7024 + "date": "2018-04-06", 7025 + "similarity": 0.7336, 7026 + "confidence": 0.95, 7027 + "confirmed": true, 7028 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BhOx_ZCjthv.jpg", 7029 + "expression": "playful, tongue sticking out", 7030 + "pose": "sitting in a car, holding a mug close to his face, buckled with a seatbelt", 7031 + "description": "Short dark hair, minimal beard stubble, wearing a blue and green tie-dye sweater, holding a 'Yale Dad' mug.", 7032 + "location": "inside a car", 7033 + "style": "casual phone selfie", 7034 + "framing": "close-up of face and upper torso", 7035 + "domain": "solo-portrait", 7036 + "tags": [ 7037 + "car", 7038 + "selfie", 7039 + "Yale Dad mug", 7040 + "tie-dye sweater", 7041 + "playful expression" 7042 + ], 7043 + "caption": "Rocking the road trip vibes with my trusty mug!", 7044 + "n_other_people": 0 7045 + }, 7046 + { 7047 + "shortcode": "BhHNBhfjhcU", 7048 + "date": "2018-04-03", 7049 + "similarity": 0.6832, 7050 + "confidence": 0.9, 7051 + "confirmed": true, 7052 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BhHNBhfjhcU.jpg", 7053 + "expression": "neutral, slightly open mouth", 7054 + "pose": "lounging back on a red chair with one knee bent, fist near chin, foot partially in frame", 7055 + "description": "messy short brown hair, clean-shaven face, wearing a loose-fitting blue t-shirt", 7056 + "location": "cozy interior with a red chair", 7057 + "style": "casual phone selfie", 7058 + "framing": "medium shot waist-up", 7059 + "domain": "solo-portrait", 7060 + "tags": [ 7061 + "casual", 7062 + "indoor", 7063 + "relaxed", 7064 + "home", 7065 + "blue shirt" 7066 + ], 7067 + "caption": "Lazy afternoon vibes.", 7068 + "n_other_people": 0 7069 + }, 7070 + { 7071 + "shortcode": "Bg6LaZVD4Oq", 7072 + "date": "2018-03-29", 7073 + "similarity": 0.6557, 7074 + "confidence": 0.95, 7075 + "confirmed": true, 7076 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bg6LaZVD4Oq.jpg", 7077 + "expression": "playful grin", 7078 + "pose": "seated, leaning back slightly in the bus seat, looking directly at the camera", 7079 + "description": "Short damp hair, no beard, wearing a gray puffer jacket and white shirt with earbuds.", 7080 + "location": "inside a public bus", 7081 + "style": "casual phone selfie", 7082 + "framing": "tight close-up of face", 7083 + "domain": "travel-or-outdoor", 7084 + "tags": [ 7085 + "bus", 7086 + "earbuds", 7087 + "jacket", 7088 + "selfie", 7089 + "public transport" 7090 + ], 7091 + "caption": "Commuting with a smile!", 7092 + "n_other_people": 0 7093 + }, 7094 + { 7095 + "shortcode": "BgqtfV1DJHJ", 7096 + "date": "2018-03-23", 7097 + "similarity": 0.7388, 7098 + "confidence": 0.95, 7099 + "confirmed": true, 7100 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BgqtfV1DJHJ.jpg", 7101 + "expression": "neutral, slightly tired-looking eyes", 7102 + "pose": "close-up while sitting in a car seat, looking directly at the camera", 7103 + "description": "Short, slightly tousled dark hair, wearing a white collared shirt and a multicolored, tie-dyed sweater.", 7104 + "location": "inside a vehicle", 7105 + "style": "casual phone selfie", 7106 + "framing": "tight close-up of face", 7107 + "domain": "travel-or-outdoor", 7108 + "tags": [ 7109 + "car", 7110 + "travel", 7111 + "selfie", 7112 + "natural light", 7113 + "close-up" 7114 + ], 7115 + "caption": "Road trip vibes and casual car moments.", 7116 + "n_other_people": 0 7117 + }, 7118 + { 7119 + "shortcode": "Bgha1jgDRuo", 7120 + "date": "2018-03-19", 7121 + "similarity": 0.6326, 7122 + "confidence": 0.9, 7123 + "confirmed": true, 7124 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bgha1jgDRuo.jpg", 7125 + "expression": "playful with tongue out", 7126 + "pose": "leaning slightly forward with tongue sticking out towards the camera", 7127 + "description": "medium-length brown hair, clean-shaven, wearing a multicolored striped shirt.", 7128 + "location": "studio space with a bold yellow background", 7129 + "style": "vibrant and playful studio portrait", 7130 + "framing": "tight close-up of face", 7131 + "domain": "solo-portrait", 7132 + "tags": [ 7133 + "playful", 7134 + "yellow background", 7135 + "striped shirt", 7136 + "studio portrait" 7137 + ], 7138 + "caption": "When life gives you lemons, just smile and stick your tongue out!", 7139 + "n_other_people": 0 7140 + }, 7141 + { 7142 + "shortcode": "BfjukkiDx58", 7143 + "date": "2018-02-23", 7144 + "similarity": 0.7154, 7145 + "confidence": 0.95, 7146 + "confirmed": true, 7147 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BfjukkiDx58.jpg", 7148 + "expression": "neutral, soft gaze toward the camera.", 7149 + "pose": "sitting against a textured blue wall, facing forward.", 7150 + "description": "short, dark hair; clean-shaven; wearing a navy fleece with colorful embroidery of 'One fish, two fish' and a blue shirt underneath.", 7151 + "location": "outdoor setting against a blue textured wall.", 7152 + "style": "casual portrait", 7153 + "framing": "medium shot waist-up", 7154 + "domain": "solo-portrait", 7155 + "tags": [ 7156 + "blue wall", 7157 + "fleece", 7158 + "casual", 7159 + "one fish two fish", 7160 + "neutral expression" 7161 + ], 7162 + "caption": "Just enjoying the cool breeze and peaceful moments.", 7163 + "n_other_people": 0 7164 + }, 7165 + { 7166 + "shortcode": "Belb-dklw_y", 7167 + "date": "2018-01-30", 7168 + "similarity": 0.5157, 7169 + "confidence": 0.9, 7170 + "confirmed": true, 7171 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Belb-dklw_y.jpg", 7172 + "expression": "relaxed, neutral look upwards.", 7173 + "pose": "lying on a colorful quilt, partially covering face with hand.", 7174 + "description": "short dark hair, wearing a dark green and blue sweatshirt.", 7175 + "location": "bedroom lying on a quilt with floral patterns.", 7176 + "style": "casual phone selfie", 7177 + "framing": "tight close-up of face", 7178 + "domain": "solo-portrait", 7179 + "tags": [ 7180 + "sunlight", 7181 + "quilt", 7182 + "cozy", 7183 + "relaxed", 7184 + "selfie" 7185 + ], 7186 + "caption": "Sunlight and quilts make the perfect setting for a lazy day.", 7187 + "n_other_people": 0 7188 + }, 7189 + { 7190 + "shortcode": "BeO8IrCjLvR", 7191 + "date": "2018-01-22", 7192 + "similarity": 0.6825, 7193 + "confidence": 0.95, 7194 + "confirmed": true, 7195 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BeO8IrCjLvR.jpg", 7196 + "expression": "neutral with slight smile", 7197 + "pose": "seated at a table, holding a pen close to the camera", 7198 + "description": "Medium-length brown hair, no beard, wearing a blue shirt in a casual style.", 7199 + "location": "dimly lit dining room", 7200 + "style": "casual phone selfie", 7201 + "framing": "tight close-up of face", 7202 + "domain": "solo-portrait", 7203 + "tags": [ 7204 + "blue shirt", 7205 + "dining room", 7206 + "night", 7207 + "flash", 7208 + "pen" 7209 + ], 7210 + "caption": "Chilling out with some late-night thoughts.", 7211 + "n_other_people": 0 7212 + }, 7213 + { 7214 + "shortcode": "BdYJlhqDiRh", 7215 + "date": "2017-12-31", 7216 + "similarity": 0.6914, 7217 + "confidence": 0.9, 7218 + "confirmed": true, 7219 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BdYJlhqDiRh.jpg", 7220 + "expression": "neutral, slight inquisitive look", 7221 + "pose": "holding a blue and white checkered mug close to face", 7222 + "description": "Short dark hair, clean-shaven, wearing a dark green sweater.", 7223 + "location": "inside a car", 7224 + "style": "casual phone selfie", 7225 + "framing": "tight close-up of face", 7226 + "domain": "solo-portrait", 7227 + "tags": [ 7228 + "car", 7229 + "checkered mug", 7230 + "neutral expression", 7231 + "dark hair" 7232 + ], 7233 + "caption": "Morning coffee vibes in the car.", 7234 + "n_other_people": 0 7235 + }, 7236 + { 7237 + "shortcode": "BbpA53sDrNZ", 7238 + "date": "2017-11-18", 7239 + "similarity": 0.6501, 7240 + "confidence": 0.9, 7241 + "confirmed": true, 7242 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BbpA53sDrNZ.jpg", 7243 + "expression": "neutral, eyes forward.", 7244 + "pose": "standing with hands joined in front, slightly leaning to one side.", 7245 + "description": "Medium length disheveled brown hair, wearing a colorful striped shirt, green pants, holding pens in shirt pocket.", 7246 + "location": "indoor space with computers and equipment.", 7247 + "style": "casual group snapshot", 7248 + "framing": "medium shot including group.", 7249 + "domain": "social", 7250 + "tags": [ 7251 + "group", 7252 + "casual", 7253 + "indoors", 7254 + "technology", 7255 + "dim lighting" 7256 + ], 7257 + "caption": "Tech crew vibes in dim lighting.", 7258 + "n_other_people": 3 7259 + }, 7260 + { 7261 + "shortcode": "BblVe3ajhW6", 7262 + "date": "2017-11-17", 7263 + "similarity": 0.63, 7264 + "confidence": 0.95, 7265 + "confirmed": true, 7266 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BblVe3ajhW6.jpg", 7267 + "expression": "wide playful smile", 7268 + "pose": "leaning slightly forward in a playful manner at a door entrance", 7269 + "description": "Medium-length brown hair, no beard, wearing a dark green sweater over a white shirt with a purple backpack.", 7270 + "location": "hallway with a door labeled 'JAS'", 7271 + "style": "casual phone snapshot", 7272 + "framing": "medium shot waist-up", 7273 + "domain": "other", 7274 + "tags": [ 7275 + "door", 7276 + "sweater", 7277 + "backpack", 7278 + "interior", 7279 + "hallway" 7280 + ], 7281 + "caption": "Popping into the weekend like… 🏃‍♂️🌟", 7282 + "n_other_people": 0 7283 + }, 7284 + { 7285 + "shortcode": "Bbe9tjwjv9L", 7286 + "date": "2017-11-14", 7287 + "similarity": 0.6239, 7288 + "confidence": 0.9, 7289 + "confirmed": true, 7290 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bbe9tjwjv9L.jpg", 7291 + "expression": "neutral, eyes looking into the camera", 7292 + "pose": "standing in front of a wall, holding a mug to his mouth", 7293 + "description": "short brown hair, clean-shaven, wearing a maroon sweatshirt with patches over a green tie-dye shirt", 7294 + "location": "indoor hallway with wall art", 7295 + "style": "casual phone snapshot", 7296 + "framing": "medium shot waist-up", 7297 + "domain": "solo-portrait", 7298 + "tags": [ 7299 + "coffee", 7300 + "indoor", 7301 + "art on wall", 7302 + "casual outfit" 7303 + ], 7304 + "caption": "Starting the day with a little humor and art.", 7305 + "n_other_people": 0 7306 + }, 7307 + { 7308 + "shortcode": "BbchI-1jQaX", 7309 + "date": "2017-11-13", 7310 + "similarity": 0.6603, 7311 + "confidence": 0.9, 7312 + "confirmed": true, 7313 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BbchI-1jQaX.jpg", 7314 + "expression": "neutral, slight smile", 7315 + "pose": "standing with hands clasped in front, looking at the camera", 7316 + "description": "Short hair, clean-shaven, wearing a dark green and blue sweater with gray pants, and a black backpack.", 7317 + "location": "Temple University media wall", 7318 + "style": "formal group event photo", 7319 + "framing": "medium shot full-body", 7320 + "domain": "social", 7321 + "tags": [ 7322 + "Temple University", 7323 + "group photo", 7324 + "media event", 7325 + "backpacks" 7326 + ], 7327 + "caption": "Reconnecting with old friends at Temple University!", 7328 + "n_other_people": 3 7329 + }, 7330 + { 7331 + "shortcode": "BbU071mj7f3", 7332 + "date": "2017-11-10", 7333 + "similarity": 0.7032, 7334 + "confidence": 0.9, 7335 + "confirmed": true, 7336 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BbU071mj7f3.jpg", 7337 + "expression": "neutral, slightly intense gaze", 7338 + "pose": "standing, holding a laptop with stickers, beside two others", 7339 + "description": "short dark hair, clean-shaven, wearing a white lab coat over a graphic T-shirt with a visible pen pocket and badges.", 7340 + "location": "bookstore interior", 7341 + "style": "casual group photo", 7342 + "framing": "medium shot waist-up", 7343 + "domain": "coding", 7344 + "tags": [ 7345 + "bookstore", 7346 + "lab coat", 7347 + "laptop", 7348 + "group", 7349 + "technology" 7350 + ], 7351 + "caption": "Just another day exploring systems and art.", 7352 + "n_other_people": 2 7353 + }, 7354 + { 7355 + "shortcode": "BbQz8h3DQR9", 7356 + "date": "2017-11-09", 7357 + "similarity": 0.6932, 7358 + "confidence": 0.95, 7359 + "confirmed": true, 7360 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BbQz8h3DQR9.jpg", 7361 + "expression": "friendly smile", 7362 + "pose": "standing with one hand on hip in front of a brick kiln", 7363 + "description": "Short brown hair, clean-shaven, wearing a navy and green sweatshirt with a blue backpack. Jeans and casual sneakers complete the look.", 7364 + "location": "studio or workshop with brick kiln", 7365 + "style": "casual group photo", 7366 + "framing": "medium shot", 7367 + "domain": "studio-or-workshop", 7368 + "tags": [ 7369 + "brick kiln", 7370 + "studio", 7371 + "group photo", 7372 + "casual", 7373 + "industrial" 7374 + ], 7375 + "caption": "Exploring creative spaces with friends.", 7376 + "n_other_people": 2 7377 + }, 7378 + { 7379 + "shortcode": "BbBKcDhD8gm", 7380 + "date": "2017-11-03", 7381 + "similarity": 0.5997, 7382 + "confidence": 0.95, 7383 + "confirmed": true, 7384 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BbBKcDhD8gm.jpg", 7385 + "expression": "energetic, open-mouthed with tongue out", 7386 + "pose": "making a peace sign with his fingers while leaning slightly towards the camera", 7387 + "description": "Short brown hair, wearing a colorful striped shirt and a pair of large headphones. A green striped tie is loosely worn over the shirt.", 7388 + "location": "indoor room with whiteboard and monitor", 7389 + "style": "casual phone selfie", 7390 + "framing": "tight close-up of face", 7391 + "domain": "other", 7392 + "tags": [ 7393 + "headphones", 7394 + "peace sign", 7395 + "striped shirt", 7396 + "indoor", 7397 + "energetic" 7398 + ], 7399 + "caption": "Rocking out in style!", 7400 + "n_other_people": 0 7401 + }, 7402 + { 7403 + "shortcode": "Ba5hmvJjuB5", 7404 + "date": "2017-10-31", 7405 + "similarity": 0.6951, 7406 + "confidence": 0.9, 7407 + "confirmed": true, 7408 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Ba5hmvJjuB5.jpg", 7409 + "expression": "serious, focused gaze at camera", 7410 + "pose": "standing with hands in pockets in a casual stance against a plain wall indoors.", 7411 + "description": "short, tousled brown hair, no beard, wearing a colorful striped shirt and a green and white striped tie, black pants, casual look with a pouch around the waist.", 7412 + "location": "sparsely furnished bedroom with a lamp and a mattress on the floor.", 7413 + "style": "casual interior snapshot", 7414 + "framing": "medium shot waist-up", 7415 + "domain": "solo-portrait", 7416 + "tags": [ 7417 + "striped shirt", 7418 + "indoor", 7419 + "casual", 7420 + "serious expression", 7421 + "bedroom" 7422 + ], 7423 + "caption": "Channeling retro vibes in stripes.", 7424 + "n_other_people": 0 7425 + }, 7426 + { 7427 + "shortcode": "BaxM7L6D4rG", 7428 + "date": "2017-10-27", 7429 + "similarity": 0.6347, 7430 + "confidence": 0.9, 7431 + "confirmed": true, 7432 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BaxM7L6D4rG.jpg", 7433 + "expression": "playful grin", 7434 + "pose": "peeking from behind an open door, one hand on the door edge.", 7435 + "description": "Short brown hair, wearing a loose-fitting blue t-shirt and blue overalls.", 7436 + "location": "inside a room with light yellow walls and white trim", 7437 + "style": "candid snapshot", 7438 + "framing": "medium shot focusing on the doorway", 7439 + "domain": "other", 7440 + "tags": [ 7441 + "playful", 7442 + "indoors", 7443 + "doorway", 7444 + "casual" 7445 + ], 7446 + "caption": "Caught mid-peek!", 7447 + "n_other_people": 0 7448 + }, 7449 + { 7450 + "shortcode": "BatErQCj7HX", 7451 + "date": "2017-10-26", 7452 + "similarity": 0.6741, 7453 + "confidence": 0.9, 7454 + "confirmed": true, 7455 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BatErQCj7HX.jpg", 7456 + "expression": "open-mouthed, relaxed smile", 7457 + "pose": "lying on a colorful, illustrated surface, holding a microphone near mouth", 7458 + "description": "Medium-length dark hair, no beard, wearing a blue T-shirt with a colorful graphic. Holding a microphone.", 7459 + "location": "studio space with illustrated surface", 7460 + "style": "casual, vibrant style", 7461 + "framing": "medium close-up of upper body", 7462 + "domain": "art", 7463 + "tags": [ 7464 + "microphone", 7465 + "illustration", 7466 + "colorful", 7467 + "lying down", 7468 + "graphic T-shirt" 7469 + ], 7470 + "caption": "Chilling with some vibrant vibes!", 7471 + "n_other_people": 0 7472 + }, 7473 + { 7474 + "shortcode": "BaidoEGjVUp", 7475 + "date": "2017-10-22", 7476 + "similarity": 0.7311, 7477 + "confidence": 0.95, 7478 + "confirmed": true, 7479 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BaidoEGjVUp.jpg", 7480 + "expression": "friendly open smile", 7481 + "pose": "half-seated on a stool with one hand resting on leg, holding a beer bottle with the other", 7482 + "description": "short dark hair, wearing a pink t-shirt with a graphic logo, and holding a bottle of beer; a multi-colored strap around the neck.", 7483 + "location": "colorful bar or pub interior", 7484 + "style": "candid social snapshot", 7485 + "framing": "medium shot waist-up", 7486 + "domain": "social", 7487 + "tags": [ 7488 + "bar", 7489 + "beer", 7490 + "mural", 7491 + "night", 7492 + "social" 7493 + ], 7494 + "caption": "Chillin' with my new feline friend 🐱🍻", 7495 + "n_other_people": 0 7496 + }, 7497 + { 7498 + "shortcode": "Bac4r9HDysK", 7499 + "date": "2017-10-20", 7500 + "similarity": 0.6509, 7501 + "confidence": 0.95, 7502 + "confirmed": true, 7503 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/Bac4r9HDysK.jpg", 7504 + "expression": "relaxed, slightly open eyes", 7505 + "pose": "lying down on a cushion with dollar bills draped over torso", 7506 + "description": "short dark hair, wearing a pink t-shirt with a 'Have a Nice Day' patch, lying down surrounded by dollar bills.", 7507 + "location": "indoors on a cushioned surface", 7508 + "style": "casual and humorous", 7509 + "framing": "medium close-up", 7510 + "domain": "other", 7511 + "tags": [ 7512 + "money", 7513 + "casual", 7514 + "humor", 7515 + "indoors", 7516 + "relaxed" 7517 + ], 7518 + "caption": "Rolling in the dough and loving it!", 7519 + "n_other_people": 0 7520 + }, 7521 + { 7522 + "shortcode": "BaXe101j-FS", 7523 + "date": "2017-10-17", 7524 + "similarity": 0.5573, 7525 + "confidence": 0.9, 7526 + "confirmed": true, 7527 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BaXe101j-FS.jpg", 7528 + "expression": "squinting smile", 7529 + "pose": "standing outdoors, leaning slightly forward with a wide smile, flanked by two other people", 7530 + "description": "Short light brown hair, no beard. Wearing a red T-shirt with a colorful patch on the chest.", 7531 + "location": "outdoor urban area with chain-link fence and large street art mural", 7532 + "style": "casual phone selfie", 7533 + "framing": "tight close-up of group", 7534 + "domain": "social", 7535 + "tags": [ 7536 + "outdoor", 7537 + "selfie", 7538 + "street art", 7539 + "bright sunlight" 7540 + ], 7541 + "caption": "Street art adventures with friends!", 7542 + "n_other_people": 2 7543 + }, 7544 + { 7545 + "shortcode": "BaF5wgCjlfn", 7546 + "date": "2017-10-11", 7547 + "similarity": 0.6007, 7548 + "confidence": 0.9, 7549 + "confirmed": true, 7550 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BaF5wgCjlfn.jpg", 7551 + "expression": "focused, explaining something with hand gestures", 7552 + "pose": "sitting in front of a camera, talking with hands raised", 7553 + "description": "medium-length light brown hair worn loose, wearing a casual blue t-shirt.", 7554 + "location": "meeting room with several attendees seated around a large conference table", 7555 + "style": "video call screenshot", 7556 + "framing": "medium shot, showing upper body and hands", 7557 + "domain": "lecture-or-teaching", 7558 + "tags": [ 7559 + "video call", 7560 + "meeting", 7561 + "explanation", 7562 + "conference setting", 7563 + "indoor" 7564 + ], 7565 + "caption": "Teaching moments from a virtual session.", 7566 + "n_other_people": 5 7567 + }, 7568 + { 7569 + "shortcode": "BaDFfvSjf7F", 7570 + "date": "2017-10-10", 7571 + "similarity": 0.6541, 7572 + "confidence": 0.9, 7573 + "confirmed": true, 7574 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BaDFfvSjf7F.jpg", 7575 + "expression": "neutral", 7576 + "pose": "facing the camera closely with another person", 7577 + "description": "short hair, no beard, wearing a blue t-shirt", 7578 + "location": "outdoor area under a wooden structure", 7579 + "style": "casual phone selfie", 7580 + "framing": "tight close-up of two faces", 7581 + "domain": "social", 7582 + "tags": [ 7583 + "selfie", 7584 + "outdoor", 7585 + "blue shirt", 7586 + "casual", 7587 + "afternoon" 7588 + ], 7589 + "caption": "Chilling under the sun ☀️", 7590 + "n_other_people": 1 7591 + }, 7592 + { 7593 + "shortcode": "BZuMZAAjOKp", 7594 + "date": "2017-10-01", 7595 + "similarity": 0.6538, 7596 + "confidence": 0.95, 7597 + "confirmed": true, 7598 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BZuMZAAjOKp.jpg", 7599 + "expression": "posing playfully, smiling", 7600 + "pose": "standing with hands raised beside a cardboard cutout child model, mimicking its pose", 7601 + "description": "short brown hair, no beard, wearing a pink shirt with a yellow patch on the chest, casual jeans, and sneakers", 7602 + "location": "toy store display area", 7603 + "style": "fun store snapshot", 7604 + "framing": "medium shot, showing full body and surrounding display", 7605 + "domain": "social", 7606 + "tags": [ 7607 + "toy store", 7608 + "Gabriela McBride", 7609 + "playful", 7610 + "display", 7611 + "smiling" 7612 + ], 7613 + "caption": "Having fun with Gabriela at the store!", 7614 + "n_other_people": 0 7615 + }, 7616 + { 7617 + "shortcode": "BZDIttuDS-g", 7618 + "date": "2017-09-15", 7619 + "similarity": 0.6621, 7620 + "confidence": 0.9, 7621 + "confirmed": true, 7622 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BZDIttuDS-g.jpg", 7623 + "expression": "enthusiastic wide smile", 7624 + "pose": "standing near a glass wall overlooking a cityscape, one hand on hip", 7625 + "description": "medium-length brown hair, clean-shaven face, wearing a multicolored striped jacket over a pink T-shirt and white pants.", 7626 + "location": "high-rise balcony with city view", 7627 + "style": "casual outdoor snapshot", 7628 + "framing": "medium shot waist-up", 7629 + "domain": "travel-or-outdoor", 7630 + "tags": [ 7631 + "night", 7632 + "city view", 7633 + "striped jacket", 7634 + "casual", 7635 + "outdoor" 7636 + ], 7637 + "caption": "City lights and late nights!", 7638 + "n_other_people": 0 7639 + }, 7640 + { 7641 + "shortcode": "BY2BEjaDXcP", 7642 + "date": "2017-09-10", 7643 + "similarity": 0.7209, 7644 + "confidence": 0.95, 7645 + "confirmed": true, 7646 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BY2BEjaDXcP.jpg", 7647 + "expression": "neutral, slightly fatigued look", 7648 + "pose": "standing upright against a plain wall, arms at sides", 7649 + "description": "short dark hair, wearing a classic black tuxedo with a bow tie and vest. No facial hair visible.", 7650 + "location": "studio with white walls and wooden pole", 7651 + "style": "formal portrait", 7652 + "framing": "medium shot waist-up", 7653 + "domain": "solo-portrait", 7654 + "tags": [ 7655 + "tuxedo", 7656 + "formal", 7657 + "studio", 7658 + "black-tie", 7659 + "neutral expression" 7660 + ], 7661 + "caption": null, 7662 + "n_other_people": 0 7663 + }, 7664 + { 7665 + "shortcode": "BYoZG8xDGay", 7666 + "date": "2017-09-04", 7667 + "similarity": 0.687, 7668 + "confidence": 0.95, 7669 + "confirmed": true, 7670 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BYoZG8xDGay.jpg", 7671 + "expression": "relaxed, slight smirk", 7672 + "pose": "standing in a forest, one foot on a tree stump, making peace signs with both hands", 7673 + "description": "short brown hair, light stubble, wearing a pink graphic t-shirt and beige pants with a crossbody bag.", 7674 + "location": "forest with tall trees and a carpet of leaves", 7675 + "style": "spontaneous outdoor shot", 7676 + "framing": "full body, centered", 7677 + "domain": "travel-or-outdoor", 7678 + "tags": [ 7679 + "forest", 7680 + "peace signs", 7681 + "outdoors", 7682 + "casual", 7683 + "pink shirt" 7684 + ], 7685 + "caption": "Finding peace in the forest vibes.", 7686 + "n_other_people": 0 7687 + }, 7688 + { 7689 + "shortcode": "BYjDEuIDpVB", 7690 + "date": "2017-09-02", 7691 + "similarity": 0.6076, 7692 + "confidence": 0.95, 7693 + "confirmed": true, 7694 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BYjDEuIDpVB.jpg", 7695 + "expression": "wide, joyful grin", 7696 + "pose": "seated in a car, looking directly at the camera, wearing a seatbelt.", 7697 + "description": "Short brown hair sticking up wildly, slight stubble, wearing a faded pink t-shirt with a patch saying 'Have a Nice Day'.", 7698 + "location": "inside a parked car", 7699 + "style": "casual phone selfie", 7700 + "framing": "tight close-up of face", 7701 + "domain": "solo-portrait", 7702 + "tags": [ 7703 + "car", 7704 + "selfie", 7705 + "pink shirt", 7706 + "smile", 7707 + "seatbelt" 7708 + ], 7709 + "caption": "Buckle up for smiles and good vibes today!", 7710 + "n_other_people": 0 7711 + }, 7712 + { 7713 + "shortcode": "BYQtr1clABh", 7714 + "date": "2017-08-26", 7715 + "similarity": 0.5935, 7716 + "confidence": 0.8, 7717 + "confirmed": true, 7718 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BYQtr1clABh.jpg", 7719 + "expression": "wide-eyed surprise", 7720 + "pose": "sitting on the floor, leaning against a shelf with coolers above, looking up with a surprised expression.", 7721 + "description": "short brown hair, wearing a patterned shirt with a tie, salmon-colored blazer with various pins attached.", 7722 + "location": "retail store aisle with coolers on shelves", 7723 + "style": "quirky candid shot", 7724 + "framing": "medium shot showing upper body of the person seated and standing.", 7725 + "domain": "social", 7726 + "tags": [ 7727 + "store", 7728 + "coolers", 7729 + "salmon blazer", 7730 + "pins", 7731 + "denim jacket" 7732 + ], 7733 + "caption": "Unexpected cooler adventures in aisle 5!", 7734 + "n_other_people": 1 7735 + }, 7736 + { 7737 + "shortcode": "BYB3Kj0jq4y", 7738 + "date": "2017-08-20", 7739 + "similarity": 0.7272, 7740 + "confidence": 0.95, 7741 + "confirmed": true, 7742 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BYB3Kj0jq4y.jpg", 7743 + "expression": "playful smirk", 7744 + "pose": "standing on a wet street, holding an umbrella overhead", 7745 + "description": "Medium-length dark hair, slightly tousled, with no visible beard. Wearing a light blue button-up shirt, slightly wrinkled, with dark pants. He carries a backpack and holds a colorful umbrella featuring children's drawings.", 7746 + "location": "quiet urban street at night, with wet brick walls and streetlights", 7747 + "style": "casual night-time street shot", 7748 + "framing": "medium full-body shot", 7749 + "domain": "travel-or-outdoor", 7750 + "tags": [ 7751 + "night", 7752 + "street", 7753 + "umbrella", 7754 + "backpack", 7755 + "urban" 7756 + ], 7757 + "caption": "Rainy night adventures under a whimsical umbrella.", 7758 + "n_other_people": 0 7759 + }, 7760 + { 7761 + "shortcode": "BX-XEShjfKZ", 7762 + "date": "2017-08-19", 7763 + "similarity": 0.6318, 7764 + "confidence": 0.9, 7765 + "confirmed": true, 7766 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BX-XEShjfKZ.jpg", 7767 + "expression": "neutral expression, slight smile.", 7768 + "pose": "standing side by side with another person, arm around the shoulder.", 7769 + "description": "Short dark hair, no beard, wearing a red jacket over a green shirt with white polka dots.", 7770 + "location": "indoor room with light-colored walls and cabinets.", 7771 + "style": "casual snapshot", 7772 + "framing": "medium shot of two people.", 7773 + "domain": "social", 7774 + "tags": [ 7775 + "red jacket", 7776 + "polka dots", 7777 + "indoor", 7778 + "casual" 7779 + ], 7780 + "caption": "Throwback with good company.", 7781 + "n_other_people": 1 7782 + }, 7783 + { 7784 + "shortcode": "BX2o4WkD_a7", 7785 + "date": "2017-08-16", 7786 + "similarity": 0.7158, 7787 + "confidence": 0.95, 7788 + "confirmed": true, 7789 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BX2o4WkD_a7.jpg", 7790 + "expression": "slight open-mouthed smile", 7791 + "pose": "standing against a blue textured wall, facing the camera", 7792 + "description": "Medium-length brown hair, no beard, wearing pink t-shirt with 'Have a Nice Day' patch, blue backpack straps visible.", 7793 + "location": "outdoor area against a vivid blue wall", 7794 + "style": "casual snapshot", 7795 + "framing": "medium shot from chest up", 7796 + "domain": "solo-portrait", 7797 + "tags": [ 7798 + "pink shirt", 7799 + "blue wall", 7800 + "casual", 7801 + "daylight", 7802 + "backpack" 7803 + ], 7804 + "caption": "Enjoying a colorful day out!", 7805 + "n_other_people": 0 7806 + }, 7807 + { 7808 + "shortcode": "BX3Tkv2juLc", 7809 + "date": "2017-08-16", 7810 + "similarity": 0.6101, 7811 + "confidence": 0.95, 7812 + "confirmed": true, 7813 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BX3Tkv2juLc.jpg", 7814 + "expression": "wide, open-mouthed smile", 7815 + "pose": "laying back on a yellow surface, facing the camera", 7816 + "description": "Short brown hair, no beard, wearing a pink crew neck shirt.", 7817 + "location": "indoor setting with a distinctive yellow backdrop", 7818 + "style": "casual phone selfie", 7819 + "framing": "tight close-up of face", 7820 + "domain": "solo-portrait", 7821 + "tags": [ 7822 + "yellow background", 7823 + "pink shirt", 7824 + "happy", 7825 + "close-up" 7826 + ], 7827 + "caption": "Feeling joyful and full of laughter!", 7828 + "n_other_people": 0 7829 + }, 7830 + { 7831 + "shortcode": "BXgdpkZDW16", 7832 + "date": "2017-08-07", 7833 + "similarity": 0.6972, 7834 + "confidence": 0.95, 7835 + "confirmed": true, 7836 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BXgdpkZDW16.jpg", 7837 + "expression": "soft smile", 7838 + "pose": "standing against a plain wall, holding a pen in each hand parallel to his face", 7839 + "description": "Short brown hair, wearing a pink t-shirt with a small embroidered flower patch, holding two blue pens.", 7840 + "location": "unadorned indoor space likely a wall or studio backdrop", 7841 + "style": "casual phone snapshot", 7842 + "framing": "medium shot waist-up", 7843 + "domain": "solo-portrait", 7844 + "tags": [ 7845 + "pens", 7846 + "pink shirt", 7847 + "indoor", 7848 + "flash" 7849 + ], 7850 + "caption": "Monday motivation with my favorite pens.", 7851 + "n_other_people": 0 7852 + }, 7853 + { 7854 + "shortcode": "BXJeqPEju7Z", 7855 + "date": "2017-07-29", 7856 + "similarity": 0.651, 7857 + "confidence": 0.95, 7858 + "confirmed": true, 7859 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BXJeqPEju7Z.jpg", 7860 + "expression": "neutral with slight smile", 7861 + "pose": "sitting on the floor, making a peace sign with right hand", 7862 + "description": "Long, slightly unkempt brown hair; no beard. Wears a loose pink T-shirt with a small logo, cream-colored pants, and a black crossbody bag. No accessories visible.", 7863 + "location": "art gallery with large doodle on wall", 7864 + "style": "casual artwork documentation", 7865 + "framing": "medium shot waist-up", 7866 + "domain": "art", 7867 + "tags": [ 7868 + "art", 7869 + "gallery", 7870 + "drawing", 7871 + "casual", 7872 + "peace sign", 7873 + "floor sitting" 7874 + ], 7875 + "caption": "Peace and art in the gallery 🎨✌️", 7876 + "n_other_people": 0 7877 + }, 7878 + { 7879 + "shortcode": "BXJeqPEju7Z", 7880 + "date": "2017-07-29", 7881 + "similarity": 0.6542, 7882 + "confidence": 0.95, 7883 + "confirmed": true, 7884 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BXJeqPEju7Z.jpg", 7885 + "expression": "attentive, looking upwards", 7886 + "pose": "kneeling on the floor, operating a small device with buttons", 7887 + "description": "Short brown hair, slightly messy; wearing a pink t-shirt with a patch and beige pants. He holds a device with colorful buttons.", 7888 + "location": "art gallery interior with white walls", 7889 + "style": "candid gallery scene", 7890 + "framing": "medium shot showing upper body and context", 7891 + "domain": "performance", 7892 + "tags": [ 7893 + "art", 7894 + "gallery", 7895 + "device", 7896 + "pink shirt", 7897 + "interactive" 7898 + ], 7899 + "caption": "Caught in the act of creativity!", 7900 + "n_other_people": 1 7901 + }, 7902 + { 7903 + "shortcode": "BWxvcA9jIUL", 7904 + "date": "2017-07-20", 7905 + "similarity": 0.6859, 7906 + "confidence": 0.95, 7907 + "confirmed": true, 7908 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BWxvcA9jIUL.jpg", 7909 + "expression": "neutral, slightly tired", 7910 + "pose": "reclining in a chair with a foot up, holding a drink in one hand, looking at the camera", 7911 + "description": "short, disheveled brown hair, no beard, wearing a loose pink T-shirt and light-colored pants. He is holding a large Dunkin' Donuts cup with a straw.", 7912 + "location": "a small room with two computer monitors displaying code", 7913 + "style": "casual phone selfie", 7914 + "framing": "medium shot waist-up", 7915 + "domain": "coding", 7916 + "tags": [ 7917 + "coding", 7918 + "home office", 7919 + "casual", 7920 + "drink", 7921 + "night" 7922 + ], 7923 + "caption": "Late night coding with a side of Dunkin'.", 7924 + "n_other_people": 0 7925 + }, 7926 + { 7927 + "shortcode": "BV4gyG-j29j", 7928 + "date": "2017-06-28", 7929 + "similarity": 0.6419, 7930 + "confidence": 0.95, 7931 + "confirmed": true, 7932 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BV4gyG-j29j.jpg", 7933 + "expression": "wide smile showing teeth", 7934 + "pose": "lying on a tiled floor, facing the camera", 7935 + "description": "medium-length brown hair, no beard, wearing a yellow graphic t-shirt with a torn collar, purple and green light reflecting on face", 7936 + "location": "indoor space with tiled floor", 7937 + "style": "casual phone selfie", 7938 + "framing": "tight close-up of face", 7939 + "domain": "solo-portrait", 7940 + "tags": [ 7941 + "rainbow lighting", 7942 + "selfie", 7943 + "lying down", 7944 + "yellow shirt" 7945 + ], 7946 + "caption": "Lying down with a rainbow glow.", 7947 + "n_other_people": 0 7948 + }, 7949 + { 7950 + "shortcode": "BVxPmGuDJ5f", 7951 + "date": "2017-06-25", 7952 + "similarity": 0.645, 7953 + "confidence": 0.95, 7954 + "confirmed": true, 7955 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BVxPmGuDJ5f.jpg", 7956 + "expression": "soft smile", 7957 + "pose": "sitting cross-legged on the grass, flashing a peace sign", 7958 + "description": "medium-length brown hair, no beard, wearing a faded red t-shirt and light-colored pants, no accessories", 7959 + "location": "sunlit park or garden", 7960 + "style": "casual phone selfie", 7961 + "framing": "medium shot waist-up", 7962 + "domain": "solo-portrait", 7963 + "tags": [ 7964 + "peace sign", 7965 + "outdoors", 7966 + "sunlight", 7967 + "casual" 7968 + ], 7969 + "caption": "Chillin' in the sunshine with a peace sign ✌️", 7970 + "n_other_people": 0 7971 + }, 7972 + { 7973 + "shortcode": "BVlc8cSDrud", 7974 + "date": "2017-06-21", 7975 + "similarity": 0.6727, 7976 + "confidence": 0.95, 7977 + "confirmed": true, 7978 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BVlc8cSDrud.jpg", 7979 + "expression": "slight smile", 7980 + "pose": "leaning on desk with right arm, facing the camera", 7981 + "description": "medium-length dark hair, no beard, wearing a purple t-shirt, white headphones around neck", 7982 + "location": "cozy home office with computer and electronic gear", 7983 + "style": "candid casual", 7984 + "framing": "medium shot waist-up", 7985 + "domain": "coding", 7986 + "tags": [ 7987 + "headphones", 7988 + "computer", 7989 + "coding", 7990 + "home office", 7991 + "mug" 7992 + ], 7993 + "caption": "Late night coding session vibes.", 7994 + "n_other_people": 0 7995 + }, 7996 + { 7997 + "shortcode": "BVXZTrMjfuy", 7998 + "date": "2017-06-15", 7999 + "similarity": 0.7062, 8000 + "confidence": 0.95, 8001 + "confirmed": true, 8002 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BVXZTrMjfuy.jpg", 8003 + "expression": "soft smile", 8004 + "pose": "holding a book titled 'Painting with Light' in front of chest, seated in a home studio space.", 8005 + "description": "Medium-length brown hair, slightly tousled. Wearing a casual maroon sweatshirt. No beard.", 8006 + "location": "home studio with art-covered walls", 8007 + "style": "casual phone selfie", 8008 + "framing": "medium shot waist-up", 8009 + "domain": "studio-or-workshop", 8010 + "tags": [ 8011 + "book", 8012 + "artwork", 8013 + "home studio", 8014 + "casual", 8015 + "selfie" 8016 + ], 8017 + "caption": "Getting inspired by some light reading.", 8018 + "n_other_people": 0 8019 + }, 8020 + { 8021 + "shortcode": "BUfRbxNDNB6", 8022 + "date": "2017-05-24", 8023 + "similarity": 0.7051, 8024 + "confidence": 0.95, 8025 + "confirmed": true, 8026 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BUfRbxNDNB6.jpg", 8027 + "expression": "cheerful, playful smile", 8028 + "pose": "playfully holding and speaking into a pay phone receiver, standing slightly tilted to the side.", 8029 + "description": "medium length brown hair, clean-shaven, wearing a plain blue t-shirt with a colorful beaded necklace.", 8030 + "location": "an outdoor pay phone booth covered in stickers and graffiti", 8031 + "style": "candid snapshot", 8032 + "framing": "medium shot waist-up", 8033 + "domain": "social", 8034 + "tags": [ 8035 + "pay phone", 8036 + "stickers", 8037 + "graffiti", 8038 + "outdoor", 8039 + "playful" 8040 + ], 8041 + "caption": "Throwback to when payphones were cool!", 8042 + "n_other_people": 0 8043 + }, 8044 + { 8045 + "shortcode": "BUafcxhDARX", 8046 + "date": "2017-05-22", 8047 + "similarity": 0.6854, 8048 + "confidence": 0.95, 8049 + "confirmed": true, 8050 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BUafcxhDARX.jpg", 8051 + "expression": "wide smile", 8052 + "pose": "standing in front of artwork, holding up peace signs with both hands", 8053 + "description": "medium-length brown hair, no beard, wearing a loose blue t-shirt, green pants, and a black crossbody bag.", 8054 + "location": "art gallery with framed colorful illustrations on the wall", 8055 + "style": "casual gallery snapshot", 8056 + "framing": "medium shot waist-up", 8057 + "domain": "art", 8058 + "tags": [ 8059 + "art gallery", 8060 + "colorful", 8061 + "peace sign", 8062 + "casual" 8063 + ], 8064 + "caption": "Feeling at home among the colors.", 8065 + "n_other_people": 0 8066 + }, 8067 + { 8068 + "shortcode": "BULZW4KjaGC", 8069 + "date": "2017-05-17", 8070 + "similarity": 0.6339, 8071 + "confidence": 0.95, 8072 + "confirmed": true, 8073 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BULZW4KjaGC.jpg", 8074 + "expression": "relaxed, slightly sleepy eyes", 8075 + "pose": "leaning with head resting on hand, lounging outdoors", 8076 + "description": "Medium-length brown hair, slight stubble beard, wearing a green flannel shirt.", 8077 + "location": "patio of a mountain lodge exterior", 8078 + "style": "candid outdoor snapshot", 8079 + "framing": "tight close-up of face", 8080 + "domain": "solo-portrait", 8081 + "tags": [ 8082 + "outdoor", 8083 + "patio", 8084 + "afternoon", 8085 + "relaxed" 8086 + ], 8087 + "caption": "Catching some afternoon sun in the mountains.", 8088 + "n_other_people": 0 8089 + }, 8090 + { 8091 + "shortcode": "BT3KRI6j-Dx", 8092 + "date": "2017-05-09", 8093 + "similarity": 0.6917, 8094 + "confidence": 0.95, 8095 + "confirmed": true, 8096 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BT3KRI6j-Dx.jpg", 8097 + "expression": "broad smile", 8098 + "pose": "standing outdoors in front of leafy green background", 8099 + "description": "Short light brown hair, clean-shaven face, wearing a blue T-shirt.", 8100 + "location": "outdoor garden or park setting", 8101 + "style": "candid outdoor snapshot", 8102 + "framing": "medium shot, chest-up", 8103 + "domain": "solo-portrait", 8104 + "tags": [ 8105 + "outdoor", 8106 + "exhibition", 8107 + "smiling", 8108 + "sunlight", 8109 + "green foliage" 8110 + ], 8111 + "caption": "Excited to share my new exhibition with everyone!", 8112 + "n_other_people": 0 8113 + }, 8114 + { 8115 + "shortcode": "BTxKrWajqll", 8116 + "date": "2017-05-06", 8117 + "similarity": 0.6147, 8118 + "confidence": 0.95, 8119 + "confirmed": true, 8120 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BTxKrWajqll.jpg", 8121 + "expression": "relaxed, eyes half-closed", 8122 + "pose": "lying on a patterned rug, leaning slightly back with legs bent and crossed at the ankles", 8123 + "description": "Medium-length brown hair, clean-shaven. Wearing a matching pink t-shirt and pants with a colorful beaded necklace. Holding a white cup in one hand.", 8124 + "location": "interior with a richly patterned oriental rug", 8125 + "style": "casual phone shot", 8126 + "framing": "medium shot focused on torso and face", 8127 + "domain": "solo-portrait", 8128 + "tags": [ 8129 + "pink clothing", 8130 + "oriental rug", 8131 + "beaded necklace", 8132 + "relaxed pose" 8133 + ], 8134 + "caption": "Lazy Sunday vibes on a colorful rug.", 8135 + "n_other_people": 0 8136 + }, 8137 + { 8138 + "shortcode": "BTuY3J1j4oO", 8139 + "date": "2017-05-05", 8140 + "similarity": 0.6806, 8141 + "confidence": 0.95, 8142 + "confirmed": true, 8143 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BTuY3J1j4oO.jpg", 8144 + "expression": "wide smile", 8145 + "pose": "standing in front of a sign, holding backpack straps, facing the camera", 8146 + "description": "medium-length brown hair, no beard, wearing a bright green t-shirt with colorful design, blue backpack straps visible.", 8147 + "location": "outside a building with a brick wall and a metal sign reading 'Second Life by Linden Lab'", 8148 + "style": "casual outdoor snapshot", 8149 + "framing": "medium shot waist-up", 8150 + "domain": "social", 8151 + "tags": [ 8152 + "Second Life", 8153 + "sign", 8154 + "brick wall", 8155 + "green shirt", 8156 + "backpack" 8157 + ], 8158 + "caption": "Exploring virtual worlds IRL.", 8159 + "n_other_people": 0 8160 + }, 8161 + { 8162 + "shortcode": "BTm1pi7jZw8", 8163 + "date": "2017-05-02", 8164 + "similarity": 0.7239, 8165 + "confidence": 0.95, 8166 + "confirmed": true, 8167 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BTm1pi7jZw8.jpg", 8168 + "expression": "neutral, focused look", 8169 + "pose": "sitting, directly facing the camera, holding up a small red object with a close grip.", 8170 + "description": "medium-length brown hair, no beard, wearing a blue shirt. Holding a small red object up to the camera.", 8171 + "location": "indoor white backdrop", 8172 + "style": "casual phone selfie", 8173 + "framing": "tight close-up of face and hand", 8174 + "domain": "solo-portrait", 8175 + "tags": [ 8176 + "red object", 8177 + "blue shirt", 8178 + "direct gaze", 8179 + "white backdrop" 8180 + ], 8181 + "caption": "Trying something new with a pop of color.", 8182 + "n_other_people": 0 8183 + }, 8184 + { 8185 + "shortcode": "BTeyX11jOGN", 8186 + "date": "2017-04-29", 8187 + "similarity": 0.6406, 8188 + "confidence": 0.95, 8189 + "confirmed": true, 8190 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BTeyX11jOGN.jpg", 8191 + "expression": "playful with tongue out", 8192 + "pose": "standing in front of a colorful, textured art installation", 8193 + "description": "short brown hair, wearing a blue t-shirt.", 8194 + "location": "artistic cave-like installation", 8195 + "style": "casual snapshot", 8196 + "framing": "medium close-up", 8197 + "domain": "art", 8198 + "tags": [ 8199 + "art installation", 8200 + "cave-like", 8201 + "playful", 8202 + "blue t-shirt", 8203 + "intricate diorama" 8204 + ], 8205 + "caption": "Exploring the hidden wonders of this artistic cave.", 8206 + "n_other_people": 0 8207 + }, 8208 + { 8209 + "shortcode": "BTRzpvlF1XT", 8210 + "date": "2017-04-24", 8211 + "similarity": 0.6845, 8212 + "confidence": 0.95, 8213 + "confirmed": true, 8214 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BTRzpvlF1XT.jpg", 8215 + "expression": "neutral, slightly open mouth", 8216 + "pose": "sitting in a car, looking directly at the camera", 8217 + "description": "short brown hair, smooth skin, wearing a pink t-shirt with a pocket, colorful bead necklace", 8218 + "location": "car interior", 8219 + "style": "casual phone selfie", 8220 + "framing": "tight close-up of face", 8221 + "domain": "solo-portrait", 8222 + "tags": [ 8223 + "car", 8224 + "pink shirt", 8225 + "bead necklace", 8226 + "casual" 8227 + ], 8228 + "caption": "Road trip vibes.", 8229 + "n_other_people": 0 8230 + }, 8231 + { 8232 + "shortcode": "BTJ9PV0j2jp", 8233 + "date": "2017-04-21", 8234 + "similarity": 0.726, 8235 + "confidence": 0.95, 8236 + "confirmed": true, 8237 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BTJ9PV0j2jp.jpg", 8238 + "expression": "neutral", 8239 + "pose": "standing in front of artwork, facing the camera", 8240 + "description": "Medium-length brown hair, clean-shaven, wearing a blue t-shirt with a printed logo.", 8241 + "location": "gallery-like space with colorful abstract art", 8242 + "style": "casual phone selfie", 8243 + "framing": "medium shot waist-up", 8244 + "domain": "solo-portrait", 8245 + "tags": [ 8246 + "art", 8247 + "gallery", 8248 + "t-shirt", 8249 + "selfie", 8250 + "flash" 8251 + ], 8252 + "caption": "Exploring vibrant art pieces today.", 8253 + "n_other_people": 0 8254 + }, 8255 + { 8256 + "shortcode": "BTHrheJD3Jq", 8257 + "date": "2017-04-20", 8258 + "similarity": 0.6837, 8259 + "confidence": 0.95, 8260 + "confirmed": true, 8261 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BTHrheJD3Jq.jpg", 8262 + "expression": "open-mouthed, tongue slightly out", 8263 + "pose": "sitting in a car, holding a yellow mug close to chest", 8264 + "description": "medium-length brown hair, wearing a dark hoodie and a colorful beaded necklace.", 8265 + "location": "inside a car", 8266 + "style": "casual phone selfie", 8267 + "framing": "tight close-up of face", 8268 + "domain": "social", 8269 + "tags": [ 8270 + "car", 8271 + "necklace", 8272 + "mug", 8273 + "beaded necklace", 8274 + "casual", 8275 + "selfie" 8276 + ], 8277 + "caption": "Weekend vibes with a splash of color!", 8278 + "n_other_people": 0 8279 + }, 8280 + { 8281 + "shortcode": "BS78RvhDPLs", 8282 + "date": "2017-04-16", 8283 + "similarity": 0.6642, 8284 + "confidence": 0.9, 8285 + "confirmed": true, 8286 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BS78RvhDPLs.jpg", 8287 + "expression": "peaceful, eyes closed", 8288 + "pose": "kneeling on a bed, one hand on chest", 8289 + "description": "Short brown hair, wearing an orange t-shirt and green pants, with a blue backpack.", 8290 + "location": "cozy loft interior", 8291 + "style": "candid indoor snapshot", 8292 + "framing": "medium shot waist-up", 8293 + "domain": "other", 8294 + "tags": [ 8295 + "orange shirt", 8296 + "green pants", 8297 + "backpack", 8298 + "dim lighting", 8299 + "indoor" 8300 + ], 8301 + "caption": "Taking a moment to breathe deeply and reflect.", 8302 + "n_other_people": 0 8303 + }, 8304 + { 8305 + "shortcode": "BS2SL0ejwyx", 8306 + "date": "2017-04-14", 8307 + "similarity": 0.6517, 8308 + "confidence": 0.98, 8309 + "confirmed": true, 8310 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BS2SL0ejwyx.jpg", 8311 + "expression": "open-mouthed smile", 8312 + "pose": "standing and leaning slightly against a desk with one hand, relaxed posture", 8313 + "description": "Short, tousled brown hair, wearing a blue t-shirt with lettering on the chest, and bright green shorts. No beard. Wearing a black waist bag with initials 'JAS'.", 8314 + "location": "cozy room with shelves", 8315 + "style": "casual phone snapshot", 8316 + "framing": "medium shot, waist-up", 8317 + "domain": "solo-portrait", 8318 + "tags": [ 8319 + "bookshelf", 8320 + "casual", 8321 + "indoor", 8322 + "bright colors" 8323 + ], 8324 + "caption": "Just chilling in my creative corner!", 8325 + "n_other_people": 0 8326 + }, 8327 + { 8328 + "shortcode": "BSwqKJcDvMW", 8329 + "date": "2017-04-11", 8330 + "similarity": 0.6293, 8331 + "confidence": 0.95, 8332 + "confirmed": true, 8333 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSwqKJcDvMW.jpg", 8334 + "expression": "neutral with lips covered by woven leaves", 8335 + "pose": "close-up selfie holding a woven leaf cross to mouth", 8336 + "description": "medium-length brown hair, no beard, shirtless", 8337 + "location": "pink wallpapered room with decorative bows", 8338 + "style": "casual phone selfie", 8339 + "framing": "tight close-up of face", 8340 + "domain": "solo-portrait", 8341 + "tags": [ 8342 + "selfie", 8343 + "decorative", 8344 + "leaves", 8345 + "pink wallpaper" 8346 + ], 8347 + "caption": "Playing with nature indoors.", 8348 + "n_other_people": 0 8349 + }, 8350 + { 8351 + "shortcode": "BStid5yjTHq", 8352 + "date": "2017-04-10", 8353 + "similarity": 0.7352, 8354 + "confidence": 0.9, 8355 + "confirmed": true, 8356 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BStid5yjTHq.jpg", 8357 + "expression": "neutral, slightly tired eyes", 8358 + "pose": "close-up self portrait, looking directly at camera", 8359 + "description": "medium length dark hair, wet and tousled, no beard, wearing a red t-shirt.", 8360 + "location": "brightly lit room with a white ceiling", 8361 + "style": "casual phone selfie", 8362 + "framing": "tight close-up of face", 8363 + "domain": "solo-portrait", 8364 + "tags": [ 8365 + "selfie", 8366 + "casual", 8367 + "natural light", 8368 + "red shirt" 8369 + ], 8370 + "caption": "Just a chill day at home.", 8371 + "n_other_people": 0 8372 + }, 8373 + { 8374 + "shortcode": "BSr_NleDjOl", 8375 + "date": "2017-04-10", 8376 + "similarity": 0.6767, 8377 + "confidence": 0.95, 8378 + "confirmed": true, 8379 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSr_NleDjOl.jpg", 8380 + "expression": "open-mouthed laugh", 8381 + "pose": "close-up selfie, sitting by a rocky stream with trees around", 8382 + "description": "Hair is wet, medium-length and dark brown. No beard. Wearing a damp pink t-shirt.", 8383 + "location": "tropical forest stream", 8384 + "style": "casual phone selfie", 8385 + "framing": "tight close-up of face", 8386 + "domain": "travel-or-outdoor", 8387 + "tags": [ 8388 + "forest", 8389 + "stream", 8390 + "selfie", 8391 + "outdoors", 8392 + "pink shirt" 8393 + ], 8394 + "caption": "Enjoying the beauty of the rainforest!", 8395 + "n_other_people": 0 8396 + }, 8397 + { 8398 + "shortcode": "BSrN3JqDCN6", 8399 + "date": "2017-04-09", 8400 + "similarity": 0.6464, 8401 + "confidence": 0.9, 8402 + "confirmed": true, 8403 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSrN3JqDCN6.jpg", 8404 + "expression": "neutral, looking thoughtfully to the side", 8405 + "pose": "standing outdoors, one hand raised near face, interacting with the environment", 8406 + "description": "Medium-length brown hair tied back, no beard, wearing a faded pink t-shirt, no accessories visible.", 8407 + "location": "lush forest area near a river", 8408 + "style": "candid nature shot", 8409 + "framing": "medium shot of upper body and face", 8410 + "domain": "travel-or-outdoor", 8411 + "tags": [ 8412 + "forest", 8413 + "river", 8414 + "nature", 8415 + "pink shirt" 8416 + ], 8417 + "caption": "Exploring the tranquility of nature.", 8418 + "n_other_people": 0 8419 + }, 8420 + { 8421 + "shortcode": "BSo-kpoDDRH", 8422 + "date": "2017-04-08", 8423 + "similarity": 0.6728, 8424 + "confidence": 0.95, 8425 + "confirmed": true, 8426 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSo-kpoDDRH.jpg", 8427 + "expression": "neutral, slightly surprised", 8428 + "pose": "seated at a table holding a smartphone with both hands", 8429 + "description": "Medium-length brown hair, clean shave, wearing a pinkish T-shirt and khaki pants.", 8430 + "location": "casual eatery with colorful plastic chairs", 8431 + "style": "casual snapshot", 8432 + "framing": "medium shot waist-up", 8433 + "domain": "social", 8434 + "tags": [ 8435 + "diner", 8436 + "smartphone", 8437 + "mirror", 8438 + "casual" 8439 + ], 8440 + "caption": "Caught in the moment at the local spot.", 8441 + "n_other_people": 1 8442 + }, 8443 + { 8444 + "shortcode": "BSh7Tq3j2YI", 8445 + "date": "2017-04-06", 8446 + "similarity": 0.5256, 8447 + "confidence": 0.8, 8448 + "confirmed": true, 8449 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSh7Tq3j2YI.jpg", 8450 + "expression": "focused, looking down at book", 8451 + "pose": "sitting cross-legged on a bed, holding a book and a doll", 8452 + "description": "Medium-length dark hair, casual red T-shirt, holding a book and a doll.", 8453 + "location": "dimly lit room with pink walls", 8454 + "style": "informal event poster", 8455 + "framing": "medium shot from waist up", 8456 + "domain": "art", 8457 + "tags": [ 8458 + "digital painting", 8459 + "event poster", 8460 + "intimate setting", 8461 + "art show" 8462 + ], 8463 + "caption": "Join me for an evening of radical digital painting!", 8464 + "n_other_people": 0 8465 + }, 8466 + { 8467 + "shortcode": "BSfMH0JjPJS", 8468 + "date": "2017-04-05", 8469 + "similarity": 0.6737, 8470 + "confidence": 0.9, 8471 + "confirmed": true, 8472 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSfMH0JjPJS.jpg", 8473 + "expression": "neutral with slight tiredness", 8474 + "pose": "sitting in a car seat, holding the seatbelt with one hand", 8475 + "description": "Hair is short, slightly disheveled; wearing a faded pink t-shirt.", 8476 + "location": "car interior", 8477 + "style": "casual phone selfie", 8478 + "framing": "tight close-up of face", 8479 + "domain": "solo-portrait", 8480 + "tags": [ 8481 + "car", 8482 + "night", 8483 + "flash photography", 8484 + "casual", 8485 + "seatbelt" 8486 + ], 8487 + "caption": "Late night thoughts on the road trip.", 8488 + "n_other_people": 0 8489 + }, 8490 + { 8491 + "shortcode": "BShGhECDpl2", 8492 + "date": "2017-04-05", 8493 + "similarity": 0.6902, 8494 + "confidence": 0.95, 8495 + "confirmed": true, 8496 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BShGhECDpl2.jpg", 8497 + "expression": "focused look, slightly tense", 8498 + "pose": "standing at a gas station, one hand on a fuel pump, other hand running through hair", 8499 + "description": "Medium-length brown hair, wearing a bright green t-shirt with a colorful butterfly design, light blue distressed denim shorts, neon green socks, and red shoes.", 8500 + "location": "gas station", 8501 + "style": "candid outdoor snapshot", 8502 + "framing": "medium shot waist-up", 8503 + "domain": "travel-or-outdoor", 8504 + "tags": [ 8505 + "gas station", 8506 + "fuel pump", 8507 + "bright sunlight", 8508 + "green t-shirt" 8509 + ], 8510 + "caption": "Filling up for the next adventure.", 8511 + "n_other_people": 0 8512 + }, 8513 + { 8514 + "shortcode": "BSZNbesDNuS", 8515 + "date": "2017-04-02", 8516 + "similarity": 0.6231, 8517 + "confidence": 0.95, 8518 + "confirmed": true, 8519 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSZNbesDNuS.jpg", 8520 + "expression": "soft, slightly open-mouthed", 8521 + "pose": "head tilted sideways, appearing close to the camera as if taking a selfie", 8522 + "description": "Jeffrey is wearing a gray t-shirt that appears slightly wet, with hair short and wet, clinging to his forehead, and a clean-shaven face.", 8523 + "location": "indeterminate location, likely indoors due to bright backlight", 8524 + "style": "casual phone selfie", 8525 + "framing": "tight close-up of face", 8526 + "domain": "solo-portrait", 8527 + "tags": [ 8528 + "selfie", 8529 + "wet hair", 8530 + "gray shirt", 8531 + "bright" 8532 + ], 8533 + "caption": "Soaked but still smiling.", 8534 + "n_other_people": 0 8535 + }, 8536 + { 8537 + "shortcode": "BSZopS_jjm9", 8538 + "date": "2017-04-02", 8539 + "similarity": 0.6323, 8540 + "confidence": 0.9, 8541 + "confirmed": true, 8542 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSZopS_jjm9.jpg", 8543 + "expression": "open-mouthed, slightly surprised", 8544 + "pose": "close-up in a bathtub, surrounded by bubbles, looking directly at the camera", 8545 + "description": "Hair is dark brown, short, and wet; clean-shaven; no visible clothing, surrounded by bath bubbles on shoulders and forehead.", 8546 + "location": "bathroom", 8547 + "style": "candid selfie with direct flash", 8548 + "framing": "tight close-up of face", 8549 + "domain": "other", 8550 + "tags": [ 8551 + "bath", 8552 + "bubbles", 8553 + "selfie", 8554 + "flash", 8555 + "humorous" 8556 + ], 8557 + "caption": "Bath time adventures with a splash of fun!", 8558 + "n_other_people": 0 8559 + }, 8560 + { 8561 + "shortcode": "BSTxOQIjFIc", 8562 + "date": "2017-03-31", 8563 + "similarity": 0.696, 8564 + "confidence": 0.95, 8565 + "confirmed": true, 8566 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSTxOQIjFIc.jpg", 8567 + "expression": "neutral, slightly open mouth", 8568 + "pose": "sitting in a car, looking towards the camera", 8569 + "description": "Medium-length hair swept upwards by wind, slight stubble, green t-shirt.", 8570 + "location": "inside a car with window open", 8571 + "style": "candid selfie", 8572 + "framing": "tight close-up of face", 8573 + "domain": "travel-or-outdoor", 8574 + "tags": [ 8575 + "car", 8576 + "wind", 8577 + "selfie", 8578 + "green shirt", 8579 + "travel" 8580 + ], 8581 + "caption": "Windy hair, don't care. 🚗💨", 8582 + "n_other_people": 0 8583 + }, 8584 + { 8585 + "shortcode": "BSUdiS_jcRX", 8586 + "date": "2017-03-31", 8587 + "similarity": 0.566, 8588 + "confidence": 0.85, 8589 + "confirmed": true, 8590 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSUdiS_jcRX.jpg", 8591 + "expression": "playful, slightly smirking", 8592 + "pose": "reclined on side with legs bent, propping head with hand", 8593 + "description": "short hair, wearing a loose green shirt with dark trim, lying on a burgundy blanket.", 8594 + "location": "interior space with tiled floor", 8595 + "style": "casual snapshot", 8596 + "framing": "medium shot of upper body", 8597 + "domain": "solo-portrait", 8598 + "tags": [ 8599 + "casual", 8600 + "indoor", 8601 + "green shirt", 8602 + "reclining", 8603 + "relaxed" 8604 + ], 8605 + "caption": "Chillin' on a lazy day.", 8606 + "n_other_people": 0 8607 + }, 8608 + { 8609 + "shortcode": "BSUGVdej_1I", 8610 + "date": "2017-03-31", 8611 + "similarity": 0.573, 8612 + "confidence": 0.95, 8613 + "confirmed": true, 8614 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSUGVdej_1I.jpg", 8615 + "expression": "playful, tongue slightly out", 8616 + "pose": "standing under palm trees, looking directly at camera", 8617 + "description": "short brown hair, no beard, wearing a blue backpack strap.", 8618 + "location": "tropical outdoor setting with palm trees", 8619 + "style": "casual phone selfie", 8620 + "framing": "medium close-up of upper body", 8621 + "domain": "travel-or-outdoor", 8622 + "tags": [ 8623 + "tropical", 8624 + "outdoor", 8625 + "selfie", 8626 + "sunny", 8627 + "playful" 8628 + ], 8629 + "caption": "Chillin' under the palms! 🌴☀️", 8630 + "n_other_people": 0 8631 + }, 8632 + { 8633 + "shortcode": "BSPIBGQj95l", 8634 + "date": "2017-03-29", 8635 + "similarity": 0.6774, 8636 + "confidence": 0.95, 8637 + "confirmed": true, 8638 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSPIBGQj95l.jpg", 8639 + "expression": "soft smile", 8640 + "pose": "seated in a car, holding the camera for a selfie", 8641 + "description": "Short brown hair, clean-shaven, wearing a bright green T-shirt with a graphic design. No visible glasses or jewelry.", 8642 + "location": "inside a car", 8643 + "style": "casual phone selfie", 8644 + "framing": "tight close-up of face", 8645 + "domain": "solo-portrait", 8646 + "tags": [ 8647 + "car", 8648 + "selfie", 8649 + "green shirt", 8650 + "daylight" 8651 + ], 8652 + "caption": "Zooming through the day with a smile!", 8653 + "n_other_people": 0 8654 + }, 8655 + { 8656 + "shortcode": "BSGFaccDJpz", 8657 + "date": "2017-03-26", 8658 + "similarity": 0.6294, 8659 + "confidence": 0.95, 8660 + "confirmed": true, 8661 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BSGFaccDJpz.jpg", 8662 + "expression": "wide-eyed grin", 8663 + "pose": "lying back on a colorful pillow, holding stuffed toys close to his chest", 8664 + "description": "messy medium-length brown hair, no beard, wearing a dark hoodie. Holding stuffed animals in both arms.", 8665 + "location": "bedroom with colorful pillow", 8666 + "style": "casual phone selfie", 8667 + "framing": "tight close-up of face", 8668 + "domain": "solo-portrait", 8669 + "tags": [ 8670 + "bedroom", 8671 + "stuffed animals", 8672 + "cozy", 8673 + "selfie" 8674 + ], 8675 + "caption": "Cuddling with my best plush buddies!", 8676 + "n_other_people": 0 8677 + }, 8678 + { 8679 + "shortcode": "BR3bt2BDUud", 8680 + "date": "2017-03-20", 8681 + "similarity": 0.6638, 8682 + "confidence": 0.95, 8683 + "confirmed": true, 8684 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BR3bt2BDUud.jpg", 8685 + "expression": "neutral with a direct gaze", 8686 + "pose": "facing the camera closely, head slightly tilted to the left", 8687 + "description": "short light brown hair with a windswept look, wearing a dark hoodie and colorful beaded necklace.", 8688 + "location": "outdoor setting with trees in the background", 8689 + "style": "candid outdoor portrait", 8690 + "framing": "tight close-up of face", 8691 + "domain": "solo-portrait", 8692 + "tags": [ 8693 + "outdoor", 8694 + "beaded necklace", 8695 + "natural light", 8696 + "hoodie", 8697 + "close-up" 8698 + ], 8699 + "caption": "Sunshine and fresh air always bring clarity.", 8700 + "n_other_people": 0 8701 + }, 8702 + { 8703 + "shortcode": "BRySx-bjsAL", 8704 + "date": "2017-03-18", 8705 + "similarity": 0.6492, 8706 + "confidence": 0.95, 8707 + "confirmed": true, 8708 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BRySx-bjsAL.jpg", 8709 + "expression": "neutral, relaxed eyebrows", 8710 + "pose": "close-up, hand holding the hoodie near the chin", 8711 + "description": "Short, tousled brown hair, no beard. Wearing a dark hoodie, slightly pulled up over the mouth. No visible accessories.", 8712 + "location": "inside a light tent or bright canopy", 8713 + "style": "casual phone selfie", 8714 + "framing": "tight close-up of face", 8715 + "domain": "solo-portrait", 8716 + "tags": [ 8717 + "hoodie", 8718 + "casual", 8719 + "selfie", 8720 + "close-up", 8721 + "natural light" 8722 + ], 8723 + "caption": "Cozy vibes in the great outdoors.", 8724 + "n_other_people": 0 8725 + }, 8726 + { 8727 + "shortcode": "BRyM8p6j5n2", 8728 + "date": "2017-03-18", 8729 + "similarity": 0.6413, 8730 + "confidence": 0.95, 8731 + "confirmed": true, 8732 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BRyM8p6j5n2.jpg", 8733 + "expression": "wide smile", 8734 + "pose": "selfie taken with right arm, holding a mug", 8735 + "description": "Medium-length brown hair, wearing a dark gray sweatshirt. Holding a white mug. Visible painted fingernails.", 8736 + "location": "casual café", 8737 + "style": "casual phone selfie", 8738 + "framing": "medium shot waist-up", 8739 + "domain": "cooking-or-eating", 8740 + "tags": [ 8741 + "coffee", 8742 + "café", 8743 + "selfie", 8744 + "painted nails" 8745 + ], 8746 + "caption": "Morning caffeine boost with a pop of color!", 8747 + "n_other_people": 0 8748 + }, 8749 + { 8750 + "shortcode": "BRxuUXHj_QI", 8751 + "date": "2017-03-18", 8752 + "similarity": 0.6141, 8753 + "confidence": 0.9, 8754 + "confirmed": true, 8755 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BRxuUXHj_QI.jpg", 8756 + "expression": "neutral, slight tiredness in eyes.", 8757 + "pose": "sitting in a vehicle, possibly a bus or train, facing the camera.", 8758 + "description": "Short, slightly tussled hair, no beard, wearing a dark hoodie. Resting a pair of earbuds in ears.", 8759 + "location": "inside a vehicle, possibly a bus or train.", 8760 + "style": "candid smartphone capture", 8761 + "framing": "medium shot, head and shoulders", 8762 + "domain": "travel-or-outdoor", 8763 + "tags": [ 8764 + "travel", 8765 + "bus", 8766 + "night", 8767 + "earbuds", 8768 + "casual" 8769 + ], 8770 + "caption": "Late-night thoughts on the road.", 8771 + "n_other_people": 0 8772 + }, 8773 + { 8774 + "shortcode": "BRsIU1KjWJE", 8775 + "date": "2017-03-16", 8776 + "similarity": 0.6549, 8777 + "confidence": 0.9, 8778 + "confirmed": true, 8779 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BRsIU1KjWJE.jpg", 8780 + "expression": "smiling, eyes slightly wide", 8781 + "pose": "standing next to another person, holding a notebook to his ear", 8782 + "description": "Short brown hair, wearing a bright green shirt with a darker undershirt, no beard, casual appearance.", 8783 + "location": "indoor room with white walls", 8784 + "style": "casual phone selfie", 8785 + "framing": "medium shot of both subjects", 8786 + "domain": "social", 8787 + "tags": [ 8788 + "selfie", 8789 + "green shirt", 8790 + "costume", 8791 + "notebook", 8792 + "bright lighting" 8793 + ], 8794 + "caption": "Just a couple of clowns hanging out. 🤡📔", 8795 + "n_other_people": 1 8796 + }, 8797 + { 8798 + "shortcode": "BRohHvCj9Ie", 8799 + "date": "2017-03-14", 8800 + "similarity": 0.6366, 8801 + "confidence": 0.9, 8802 + "confirmed": true, 8803 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BRohHvCj9Ie.jpg", 8804 + "expression": "eyes half-open", 8805 + "pose": "standing outdoors, looking slightly towards the camera", 8806 + "description": "Short messy brown hair with a slightly wet appearance. Wearing a bright blue Columbia jacket with a gray hoodie underneath. No visible beard or mustache.", 8807 + "location": "urban street with brick building exterior", 8808 + "style": "candid selfie", 8809 + "framing": "close-up of face", 8810 + "domain": "solo-portrait", 8811 + "tags": [ 8812 + "winter", 8813 + "outdoors", 8814 + "blue jacket", 8815 + "selfie", 8816 + "snow" 8817 + ], 8818 + "caption": "Winter vibes in the city.", 8819 + "n_other_people": 0 8820 + }, 8821 + { 8822 + "shortcode": "BRks5f7D-HM", 8823 + "date": "2017-03-13", 8824 + "similarity": 0.6883, 8825 + "confidence": 0.95, 8826 + "confirmed": true, 8827 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BRks5f7D-HM.jpg", 8828 + "expression": "neutral, slightly tired eyes", 8829 + "pose": "sitting in front of a fireplace, holding a mug close to face", 8830 + "description": "Short brown hair tousled, no beard, wearing a dark hoodie and plaid shirt underneath, holding a patterned ceramic mug.", 8831 + "location": "cozy living room with a lit fireplace", 8832 + "style": "casual phone selfie", 8833 + "framing": "tight close-up of face", 8834 + "domain": "solo-portrait", 8835 + "tags": [ 8836 + "fireplace", 8837 + "ceramic mug", 8838 + "evening", 8839 + "warm light", 8840 + "casual" 8841 + ], 8842 + "caption": "Cozy evenings by the fire with a favorite mug.", 8843 + "n_other_people": 0 8844 + }, 8845 + { 8846 + "shortcode": "BRbuKAljS4e", 8847 + "date": "2017-03-09", 8848 + "similarity": 0.6185, 8849 + "confidence": 0.95, 8850 + "confirmed": true, 8851 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BRbuKAljS4e.jpg", 8852 + "expression": "neutral, slightly tired eyes", 8853 + "pose": "close-up, possibly leaning slightly forward outdoors", 8854 + "description": "medium-length tousled hair, no beard, wearing a black jacket with a logo visible on the left side", 8855 + "location": "outdoor winter setting, likely a forest", 8856 + "style": "casual outdoor selfie", 8857 + "framing": "tight close-up of face", 8858 + "domain": "travel-or-outdoor", 8859 + "tags": [ 8860 + "winter", 8861 + "outdoor", 8862 + "selfie", 8863 + "jacket" 8864 + ], 8865 + "caption": "Enjoying winter vibes.", 8866 + "n_other_people": 0 8867 + }, 8868 + { 8869 + "shortcode": "BRUo3Dnjgxe", 8870 + "date": "2017-03-07", 8871 + "similarity": 0.6534, 8872 + "confidence": 0.8, 8873 + "confirmed": true, 8874 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BRUo3Dnjgxe.jpg", 8875 + "expression": "neutral, slightly dazed look", 8876 + "pose": "standing to the side with one arm resting on a table edge", 8877 + "description": "Short, dark, slightly disheveled hair; clean-shaven; wearing a white t-shirt with 'intrepid trips' printed on it; dark pants; green socks.", 8878 + "location": "wood-paneled room with a large colorful painting", 8879 + "style": "casual indoor snapshot", 8880 + "framing": "medium shot, full body visible", 8881 + "domain": "art", 8882 + "tags": [ 8883 + "art", 8884 + "painting", 8885 + "indoor", 8886 + "casual" 8887 + ], 8888 + "caption": "Creative nights with vibrant colors.", 8889 + "n_other_people": 0 8890 + }, 8891 + { 8892 + "shortcode": "BRWs866j5n0", 8893 + "date": "2017-03-07", 8894 + "similarity": 0.6839, 8895 + "confidence": 0.95, 8896 + "confirmed": true, 8897 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BRWs866j5n0.jpg", 8898 + "expression": "thoughtful with hand on chin", 8899 + "pose": "crouching in front of a colorful painting, looking towards the camera", 8900 + "description": "short, tousled brown hair, no beard, wearing a dark gray hoodie, nails painted red.", 8901 + "location": "studio or art workspace", 8902 + "style": "casual interior snapshot", 8903 + "framing": "medium shot waist-up", 8904 + "domain": "art", 8905 + "tags": [ 8906 + "art", 8907 + "painting", 8908 + "studio", 8909 + "casual", 8910 + "thoughtful" 8911 + ], 8912 + "caption": "Pondering new ideas in the art studio.", 8913 + "n_other_people": 0 8914 + }, 8915 + { 8916 + "shortcode": "BRGP5rqDn6Y", 8917 + "date": "2017-03-01", 8918 + "similarity": 0.676, 8919 + "confidence": 0.95, 8920 + "confirmed": true, 8921 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BRGP5rqDn6Y.jpg", 8922 + "expression": "neutral, slightly tired gaze", 8923 + "pose": "resting face on hand, looking directly at the camera", 8924 + "description": "Short brown hair, no beard, wearing a dark gray hoodie with visible stitching.", 8925 + "location": "office or classroom interior", 8926 + "style": "casual phone selfie", 8927 + "framing": "tight close-up of face", 8928 + "domain": "solo-portrait", 8929 + "tags": [ 8930 + "hoodie", 8931 + "neutral expression", 8932 + "casual", 8933 + "office", 8934 + "indoors" 8935 + ], 8936 + "caption": "Contemplating life's big questions in a cozy hoodie.", 8937 + "n_other_people": 0 8938 + }, 8939 + { 8940 + "shortcode": "BQ_T_iqjsFH", 8941 + "date": "2017-02-26", 8942 + "similarity": 0.7033, 8943 + "confidence": 1, 8944 + "confirmed": true, 8945 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BQ_T_iqjsFH.jpg", 8946 + "expression": "neutral, slightly open mouth", 8947 + "pose": "facing the camera directly with head slightly tilted", 8948 + "description": "Short brown hair, slightly tousled, wearing a camouflage t-shirt with a red choker.", 8949 + "location": "indoor room with plain walls", 8950 + "style": "casual phone selfie", 8951 + "framing": "tight close-up of face", 8952 + "domain": "solo-portrait", 8953 + "tags": [ 8954 + "camouflage", 8955 + "red choker", 8956 + "indoor", 8957 + "selfie" 8958 + ], 8959 + "caption": "Just a casual day indoors.", 8960 + "n_other_people": 0 8961 + }, 8962 + { 8963 + "shortcode": "BQ4U47MD-8y", 8964 + "date": "2017-02-24", 8965 + "similarity": 0.6443, 8966 + "confidence": 0.85, 8967 + "confirmed": true, 8968 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BQ4U47MD-8y.jpg", 8969 + "expression": "thoughtful, gaze focused", 8970 + "pose": "standing, hand raised to face, holding a cup in the other hand", 8971 + "description": "Medium-length brown hair, clean-shaven, wearing a light blue denim shirt. Holding a white paper cup.", 8972 + "location": "home library or study with shelves of books", 8973 + "style": "candid 35mm film", 8974 + "framing": "medium shot waist-up", 8975 + "domain": "solo-portrait", 8976 + "tags": [ 8977 + "books", 8978 + "home library", 8979 + "casual", 8980 + "morning routine" 8981 + ], 8982 + "caption": "Lost in a world of words and morning thoughts.", 8983 + "n_other_people": 0 8984 + }, 8985 + { 8986 + "shortcode": "BQMHcAYBh4M", 8987 + "date": "2017-02-06", 8988 + "similarity": 0.6915, 8989 + "confidence": 0.95, 8990 + "confirmed": true, 8991 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BQMHcAYBh4M.jpg", 8992 + "expression": "soft, relaxed gaze", 8993 + "pose": "seated in a car leaning slightly towards the camera", 8994 + "description": "Short, tousled brown hair, slight stubble beard, wearing a dark jacket over a pink shirt with a seatbelt across his chest.", 8995 + "location": "inside a car", 8996 + "style": "casual phone selfie", 8997 + "framing": "tight close-up of face", 8998 + "domain": "solo-portrait", 8999 + "tags": [ 9000 + "car", 9001 + "selfie", 9002 + "relaxed", 9003 + "tousled hair" 9004 + ], 9005 + "caption": "Just enjoying the ride.", 9006 + "n_other_people": 0 9007 + }, 9008 + { 9009 + "shortcode": "BP8oDpmD7yW", 9010 + "date": "2017-01-31", 9011 + "similarity": 0.5899, 9012 + "confidence": 0.9, 9013 + "confirmed": true, 9014 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BP8oDpmD7yW.jpg", 9015 + "expression": "half-smile with raised eyebrows", 9016 + "pose": "standing casually with a slight lean, arms not visible in the frame", 9017 + "description": "Jeffrey has unkempt, medium-length brown hair and is wearing a black jacket over a lavender shirt. His hair is messy, sticking out in various directions.", 9018 + "location": "workshop or garage space with tools in the background", 9019 + "style": "impromptu flashlight portrait", 9020 + "framing": "close-up of face and shoulders", 9021 + "domain": "other", 9022 + "tags": [ 9023 + "flashlight", 9024 + "workshop", 9025 + "disheveled hair", 9026 + "black jacket", 9027 + "improvised lighting" 9028 + ], 9029 + "caption": "Caught in the act of late-night tinkering.", 9030 + "n_other_people": 0 9031 + }, 9032 + { 9033 + "shortcode": "BPy-9XkD2Qd", 9034 + "date": "2017-01-28", 9035 + "similarity": 0.613, 9036 + "confidence": 0.95, 9037 + "confirmed": true, 9038 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BPy-9XkD2Qd.jpg", 9039 + "expression": "excited grin", 9040 + "pose": "standing in front of a colorful painting, arms raised with bent elbows, hands up.", 9041 + "description": "short tousled hair, no beard, wearing a loose purple t-shirt.", 9042 + "location": "art studio or personal room with paintings on the walls", 9043 + "style": "casual snapshot", 9044 + "framing": "medium shot waist-up", 9045 + "domain": "art", 9046 + "tags": [ 9047 + "painting", 9048 + "art studio", 9049 + "tousled hair", 9050 + "purple shirt", 9051 + "bright flash" 9052 + ], 9053 + "caption": "Feeling inspired by this lively piece!", 9054 + "n_other_people": 0 9055 + }, 9056 + { 9057 + "shortcode": "BPwbwPnD97E", 9058 + "date": "2017-01-27", 9059 + "similarity": 0.5074, 9060 + "confidence": 0.88, 9061 + "confirmed": true, 9062 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BPwbwPnD97E.jpg", 9063 + "expression": "pensive, slightly vacant gaze", 9064 + "pose": "resting head on hand, leaning forward", 9065 + "description": "Medium-length brown hair, no beard, wearing a yellow plaid shirt and turquoise tie.", 9066 + "location": "indoor setting, possibly a room with wooden elements", 9067 + "style": "casual candid", 9068 + "framing": "medium close-up", 9069 + "domain": "solo-portrait", 9070 + "tags": [ 9071 + "plaid shirt", 9072 + "tie", 9073 + "indoor", 9074 + "casual" 9075 + ], 9076 + "caption": "Lost in thought on a lazy afternoon.", 9077 + "n_other_people": 0 9078 + }, 9079 + { 9080 + "shortcode": "BPu1v2ij4ND", 9081 + "date": "2017-01-26", 9082 + "similarity": 0.6246, 9083 + "confidence": 0.85, 9084 + "confirmed": true, 9085 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BPu1v2ij4ND.jpg", 9086 + "expression": "sleepy, slightly open-mouthed", 9087 + "pose": "standing in a doorway, hand resting on door frame", 9088 + "description": "Short spiky hair, no beard, wearing a yellow t-shirt. A red heart sticker on forehead.", 9089 + "location": "house interior, doorway area", 9090 + "style": "casual phone selfie", 9091 + "framing": "tight close-up of face", 9092 + "domain": "solo-portrait", 9093 + "tags": [ 9094 + "heart sticker", 9095 + "doorway", 9096 + "spiky hair", 9097 + "flash photography" 9098 + ], 9099 + "caption": "Feeling the love, even with bed hair!", 9100 + "n_other_people": 0 9101 + }, 9102 + { 9103 + "shortcode": "BPnT4_-BzKa", 9104 + "date": "2017-01-23", 9105 + "similarity": 0.7166, 9106 + "confidence": 0.9, 9107 + "confirmed": true, 9108 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BPnT4_-BzKa.jpg", 9109 + "expression": "neutral, slightly wide-eyed", 9110 + "pose": "sitting closely with two friends in the back of a vehicle", 9111 + "description": "Short brown hair, clean-shaven face, wearing a dark jacket over a plaid shirt.", 9112 + "location": "inside a vehicle", 9113 + "style": "candid selfie", 9114 + "framing": "medium close-up of three people", 9115 + "domain": "social", 9116 + "tags": [ 9117 + "vehicle", 9118 + "friends", 9119 + "indoor", 9120 + "neutral expression" 9121 + ], 9122 + "caption": "Road trip vibes with these two.", 9123 + "n_other_people": 2 9124 + }, 9125 + { 9126 + "shortcode": "BPnkB8rB0ON", 9127 + "date": "2017-01-23", 9128 + "similarity": 0.6704, 9129 + "confidence": 0.9, 9130 + "confirmed": true, 9131 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BPnkB8rB0ON.jpg", 9132 + "expression": "neutral, slightly open mouth.", 9133 + "pose": "seated on a bus seat, looking directly at the camera.", 9134 + "description": "Short brown hair, wearing a black jacket with a patterned shirt underneath.", 9135 + "location": "inside a bus with patterned seats.", 9136 + "style": "casual phone selfie", 9137 + "framing": "medium close-up", 9138 + "domain": "travel-or-outdoor", 9139 + "tags": [ 9140 + "bus", 9141 + "travel", 9142 + "jacket", 9143 + "casual", 9144 + "flash" 9145 + ], 9146 + "caption": "Traveling vibes captured on a bus ride.", 9147 + "n_other_people": 0 9148 + }, 9149 + { 9150 + "shortcode": "BPeJIInhck1", 9151 + "date": "2017-01-20", 9152 + "similarity": 0.5309, 9153 + "confidence": 0.85, 9154 + "confirmed": true, 9155 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BPeJIInhck1.jpg", 9156 + "expression": "relaxed, calm", 9157 + "pose": "lying down holding a shirt close to the face and looking at the camera", 9158 + "description": "Short, tousled, dark hair, no beard. Wearing a beige shirt, holding it close to the face. The lighting creates a red hue on the hair and skin.", 9159 + "location": "indoors, possibly a bedroom", 9160 + "style": "casual phone selfie", 9161 + "framing": "close-up of face and shoulders with bottom collage", 9162 + "domain": "solo-portrait", 9163 + "tags": [ 9164 + "red lighting", 9165 + "artwork", 9166 + "casual", 9167 + "selfie", 9168 + "night" 9169 + ], 9170 + "caption": "Just vibing in red light and art.", 9171 + "n_other_people": 0 9172 + }, 9173 + { 9174 + "shortcode": "BPfRWiXBDIZ", 9175 + "date": "2017-01-20", 9176 + "similarity": 0.6672, 9177 + "confidence": 0.95, 9178 + "confirmed": true, 9179 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BPfRWiXBDIZ.jpg", 9180 + "expression": "neutral with slightly parted lips", 9181 + "pose": "resting back against a bus seat, facing the camera", 9182 + "description": "short brown hair, no beard, wearing a blue fleece with colorful fish embroidery", 9183 + "location": "inside a bus with red seats", 9184 + "style": "casual phone selfie", 9185 + "framing": "medium shot waist-up", 9186 + "domain": "travel-or-outdoor", 9187 + "tags": [ 9188 + "bus", 9189 + "travel", 9190 + "blue fleece", 9191 + "casual" 9192 + ], 9193 + "caption": "Travel days are best in cozy sweaters.", 9194 + "n_other_people": 0 9195 + }, 9196 + { 9197 + "shortcode": "BPYShv7BA4a", 9198 + "date": "2017-01-17", 9199 + "similarity": 0.7161, 9200 + "confidence": 0.95, 9201 + "confirmed": true, 9202 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BPYShv7BA4a.jpg", 9203 + "expression": "neutral, slight smile", 9204 + "pose": "standing, slightly tilted face, looking directly at the camera", 9205 + "description": "Short, messy hair, no beard, wearing a mustard yellow T-shirt.", 9206 + "location": "living room interior", 9207 + "style": "casual phone selfie", 9208 + "framing": "medium shot waist-up", 9209 + "domain": "solo-portrait", 9210 + "tags": [ 9211 + "yellow T-shirt", 9212 + "living room", 9213 + "horse artwork", 9214 + "casual" 9215 + ], 9216 + "caption": "Just a chill day at home with art in the background.", 9217 + "n_other_people": 0 9218 + }, 9219 + { 9220 + "shortcode": "BPQgzndhUVO", 9221 + "date": "2017-01-14", 9222 + "similarity": 0.5195, 9223 + "confidence": 0.95, 9224 + "confirmed": true, 9225 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BPQgzndhUVO.jpg", 9226 + "expression": "joyful grin", 9227 + "pose": "laying back on a stone grave marker with arms relaxed by sides", 9228 + "description": "Long brown hair flowing freely, clean shaven, wearing a black jacket with a green inner lining, a black graphic t-shirt featuring Edgar Allan Poe, and a colorful beaded necklace.", 9229 + "location": "outdoor cemetery", 9230 + "style": "candid outdoor photo", 9231 + "framing": "medium shot focused on upper body", 9232 + "domain": "travel-or-outdoor", 9233 + "tags": [ 9234 + "cemetery", 9235 + "grave marker", 9236 + "casual", 9237 + "outdoor", 9238 + "graphic t-shirt" 9239 + ], 9240 + "caption": "Finding peace in unexpected places.", 9241 + "n_other_people": 0 9242 + }, 9243 + { 9244 + "shortcode": "BPFvarphS1j", 9245 + "date": "2017-01-10", 9246 + "similarity": 0.7131, 9247 + "confidence": 0.95, 9248 + "confirmed": true, 9249 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BPFvarphS1j.jpg", 9250 + "expression": "soft smile", 9251 + "pose": "sitting at a table holding a coffee mug close to chest with both hands", 9252 + "description": "Medium-length brown hair, clean-shaven, wearing a black jacket over a green shirt.", 9253 + "location": "diner or cafe interior with wooden details", 9254 + "style": "casual interior snapshot", 9255 + "framing": "medium shot waist-up", 9256 + "domain": "cooking-or-eating", 9257 + "tags": [ 9258 + "coffee", 9259 + "diner", 9260 + "casual", 9261 + "morning", 9262 + "smile" 9263 + ], 9264 + "caption": "Morning coffee at the local spot.", 9265 + "n_other_people": 0 9266 + }, 9267 + { 9268 + "shortcode": "BPDR3tGBqog", 9269 + "date": "2017-01-09", 9270 + "similarity": 0.7567, 9271 + "confidence": 0.95, 9272 + "confirmed": true, 9273 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BPDR3tGBqog.jpg", 9274 + "expression": "neutral, relaxed gaze", 9275 + "pose": "taking a selfie, standing in front of a Ronald McDonald statue", 9276 + "description": "Short light brown hair, clean-shaven. Wearing a black jacket over a green shirt.", 9277 + "location": "fast food restaurant interior", 9278 + "style": "casual phone selfie", 9279 + "framing": "tight close-up of face", 9280 + "domain": "social", 9281 + "tags": [ 9282 + "selfie", 9283 + "Ronald McDonald", 9284 + "fast food", 9285 + "casual", 9286 + "indoor" 9287 + ], 9288 + "caption": "Spontaneous selfie with an unexpected guest!", 9289 + "n_other_people": 0 9290 + }, 9291 + { 9292 + "shortcode": "BPC3WV3hzKO", 9293 + "date": "2017-01-09", 9294 + "similarity": 0.6888, 9295 + "confidence": 0.95, 9296 + "confirmed": true, 9297 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BPC3WV3hzKO.jpg", 9298 + "expression": "neutral", 9299 + "pose": "standing on an outdoor deck, facing the camera with one hand on the backpack strap", 9300 + "description": "Medium-length brown hair with a hairpin, clean-shaven face, wearing a dark jacket with a blue logo, and a blue backpack on one shoulder.", 9301 + "location": "snowy forest balcony", 9302 + "style": "casual outdoor snapshot", 9303 + "framing": "medium shot waist-up", 9304 + "domain": "travel-or-outdoor", 9305 + "tags": [ 9306 + "forest", 9307 + "winter", 9308 + "snow", 9309 + "backpack", 9310 + "hairpin" 9311 + ], 9312 + "caption": "Enjoying the winter serenity in the woods.", 9313 + "n_other_people": 0 9314 + }, 9315 + { 9316 + "shortcode": "BO-3rNEhvVN", 9317 + "date": "2017-01-07", 9318 + "similarity": 0.588, 9319 + "confidence": 0.85, 9320 + "confirmed": true, 9321 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BO-3rNEhvVN.jpg", 9322 + "expression": "slight smile", 9323 + "pose": "sitting on a stone hearth, holding a carrot in one hand, legs crossed", 9324 + "description": "Long, wet-looking hair, no beard, wearing an oversized faded red t-shirt and shorts. Relaxed and casual appearance.", 9325 + "location": "cozy living room with a stone fireplace", 9326 + "style": "casual indoor snapshot", 9327 + "framing": "medium shot", 9328 + "domain": "solo-portrait", 9329 + "tags": [ 9330 + "fireplace", 9331 + "carrot", 9332 + "evening", 9333 + "casual" 9334 + ], 9335 + "caption": "Cozy nights by the fire with a snack.", 9336 + "n_other_people": 0 9337 + }, 9338 + { 9339 + "shortcode": "BO8K8FfhJMC", 9340 + "date": "2017-01-06", 9341 + "similarity": 0.6878, 9342 + "confidence": 0.95, 9343 + "confirmed": true, 9344 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BO8K8FfhJMC.jpg", 9345 + "expression": "calm, slightly serious", 9346 + "pose": "resting arms on the edge of a hot tub, body partially submerged in water", 9347 + "description": "Wet hair of medium length, slicked back. No beard, and showing a clean-shaven face.", 9348 + "location": "outdoor hot tub in a snowy area", 9349 + "style": "candid nighttime shot", 9350 + "framing": "medium close-up of face and upper body", 9351 + "domain": "travel-or-outdoor", 9352 + "tags": [ 9353 + "hot tub", 9354 + "night", 9355 + "snow", 9356 + "outdoor", 9357 + "relaxing" 9358 + ], 9359 + "caption": "Chilling out in the hot tub under the stars.", 9360 + "n_other_people": 0 9361 + }, 9362 + { 9363 + "shortcode": "BOz5KXbhi-6", 9364 + "date": "2017-01-03", 9365 + "similarity": 0.7509, 9366 + "confidence": 0.9, 9367 + "confirmed": true, 9368 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BOz5KXbhi-6.jpg", 9369 + "expression": "neutral gaze", 9370 + "pose": "standing outdoors with snow falling around", 9371 + "description": "Long brown hair, no beard, wearing a green sweater with an orange collar.", 9372 + "location": "snowy forest with bare trees", 9373 + "style": "candid outdoor portrait", 9374 + "framing": "medium shot waist-up", 9375 + "domain": "travel-or-outdoor", 9376 + "tags": [ 9377 + "snow", 9378 + "forest", 9379 + "winter", 9380 + "outdoors", 9381 + "green sweater" 9382 + ], 9383 + "caption": "Embracing the winter wonderland vibes.", 9384 + "n_other_people": 0 9385 + }, 9386 + { 9387 + "shortcode": "BOxtHqehy7o", 9388 + "date": "2017-01-02", 9389 + "similarity": 0.6578, 9390 + "confidence": 0.85, 9391 + "confirmed": true, 9392 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BOxtHqehy7o.jpg", 9393 + "expression": "neutral with a gentle smile", 9394 + "pose": "standing on a snowy path with hands in pockets, slightly tilted head", 9395 + "description": "Long hair tucked behind ears, wearing a bright blue puffer jacket over a dark green sweater, dark pants, and boots suited for snow.", 9396 + "location": "snow-covered outdoor area with trees in the background", 9397 + "style": "casual winter snapshot", 9398 + "framing": "wide environmental", 9399 + "domain": "travel-or-outdoor", 9400 + "tags": [ 9401 + "snow", 9402 + "winter", 9403 + "outdoors", 9404 + "nature", 9405 + "blue jacket" 9406 + ], 9407 + "caption": "Winter wanderlust on a sunny day.", 9408 + "n_other_people": 0 9409 + }, 9410 + { 9411 + "shortcode": "BOiWxDthOpm", 9412 + "date": "2016-12-27", 9413 + "similarity": 0.6742, 9414 + "confidence": 0.95, 9415 + "confirmed": true, 9416 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BOiWxDthOpm.jpg", 9417 + "expression": "neutral, slight smile.", 9418 + "pose": "standing with hands in pockets in a snowy forest clearing.", 9419 + "description": "medium-length dark hair, wearing a blue and yellow plaid shirt over an orange undershirt, light-colored pants.", 9420 + "location": "snow-covered forest", 9421 + "style": "casual outdoor snapshot", 9422 + "framing": "medium full-body shot", 9423 + "domain": "travel-or-outdoor", 9424 + "tags": [ 9425 + "snow", 9426 + "forest", 9427 + "plaid shirt", 9428 + "outdoors" 9429 + ], 9430 + "caption": "Chilling in a snowy wonderland 🌲❄️", 9431 + "n_other_people": 0 9432 + }, 9433 + { 9434 + "shortcode": "BOgbqb3DjxO", 9435 + "date": "2016-12-27", 9436 + "similarity": 0.7142, 9437 + "confidence": 0.95, 9438 + "confirmed": true, 9439 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BOgbqb3DjxO.jpg", 9440 + "expression": "neutral, focused gaze", 9441 + "pose": "sitting on a couch, looking towards the right edge of the frame", 9442 + "description": "Medium-length brown hair, clean-shaven face, wearing a peach t-shirt and wired earbuds.", 9443 + "location": "cozy living room", 9444 + "style": "casual phone selfie", 9445 + "framing": "medium shot, waist-up", 9446 + "domain": "solo-portrait", 9447 + "tags": [ 9448 + "living room", 9449 + "night", 9450 + "casual", 9451 + "earbuds", 9452 + "holiday decor" 9453 + ], 9454 + "caption": "Cozy night in with some tunes.", 9455 + "n_other_people": 0 9456 + }, 9457 + { 9458 + "shortcode": "BObUsXcDAeS", 9459 + "date": "2016-12-25", 9460 + "similarity": 0.7183, 9461 + "confidence": 0.95, 9462 + "confirmed": true, 9463 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BObUsXcDAeS.jpg", 9464 + "expression": "slight smile", 9465 + "pose": "standing with hands in pockets, facing the camera", 9466 + "description": "medium-length brown hair slightly tousled, clean-shaven, wearing a blue puffer jacket over a white button-up shirt and a red undershirt.", 9467 + "location": "outdoor area with lit decorations", 9468 + "style": "casual flash photograph", 9469 + "framing": "medium shot waist-up", 9470 + "domain": "solo-portrait", 9471 + "tags": [ 9472 + "outdoor", 9473 + "night", 9474 + "blue jacket", 9475 + "holiday lights", 9476 + "casual" 9477 + ], 9478 + "caption": "Enjoying the festive night vibes under the lights.", 9479 + "n_other_people": 0 9480 + }, 9481 + { 9482 + "shortcode": "BORMOtBDH8r", 9483 + "date": "2016-12-21", 9484 + "similarity": 0.6882, 9485 + "confidence": 0.9, 9486 + "confirmed": true, 9487 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BORMOtBDH8r.jpg", 9488 + "expression": "neutral, direct gaze", 9489 + "pose": "standing in front of a mirror holding a phone for a selfie", 9490 + "description": "Medium-length dark hair, slightly wet appearance, no beard. Wearing a light-colored jacket over a denim shirt and red t-shirt. Holding a phone in one hand. ", 9491 + "location": "small retail shop with textile decor", 9492 + "style": "casual phone selfie", 9493 + "framing": "medium shot waist-up", 9494 + "domain": "solo-portrait", 9495 + "tags": [ 9496 + "mirror selfie", 9497 + "retail store", 9498 + "casual outfit", 9499 + "phone", 9500 + "jacket" 9501 + ], 9502 + "caption": "Mirror moments in a cozy corner store.", 9503 + "n_other_people": 0 9504 + }, 9505 + { 9506 + "shortcode": "BOQPwsQjgYQ", 9507 + "date": "2016-12-20", 9508 + "similarity": 0.6555, 9509 + "confidence": 0.95, 9510 + "confirmed": true, 9511 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BOQPwsQjgYQ.jpg", 9512 + "expression": "soft smile", 9513 + "pose": "kneeling on one knee, holding a green scooter and a large white cardboard box.", 9514 + "description": "shoulder-length blonde hair, no beard, wearing a bright green t-shirt with a colorful design, and a blue backpack.", 9515 + "location": "parking garage", 9516 + "style": "casual snapshot", 9517 + "framing": "medium shot waist-up", 9518 + "domain": "other", 9519 + "tags": [ 9520 + "scooter", 9521 + "parking garage", 9522 + "cardboard box", 9523 + "green t-shirt", 9524 + "backpack" 9525 + ], 9526 + "caption": "Scootering through the daily grind.", 9527 + "n_other_people": 0 9528 + }, 9529 + { 9530 + "shortcode": "BOISuXuDCIG", 9531 + "date": "2016-12-17", 9532 + "similarity": 0.6917, 9533 + "confidence": 0.95, 9534 + "confirmed": true, 9535 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BOISuXuDCIG.jpg", 9536 + "expression": "neutral gaze, soft demeanor", 9537 + "pose": "standing beside colorful curtains, peeking out slightly", 9538 + "description": "Long brown hair with a red bow, wearing a purple shirt.", 9539 + "location": "between vibrant patterned curtains in an indoor space", 9540 + "style": "casual portrait", 9541 + "framing": "medium shot head and shoulders", 9542 + "domain": "solo-portrait", 9543 + "tags": [ 9544 + "curtains", 9545 + "colorful", 9546 + "red bow", 9547 + "indoor" 9548 + ], 9549 + "caption": "Getting lost in vibrant patterns and colors.", 9550 + "n_other_people": 0 9551 + }, 9552 + { 9553 + "shortcode": "BODmUeZDFyC", 9554 + "date": "2016-12-15", 9555 + "similarity": 0.658, 9556 + "confidence": 0.9, 9557 + "confirmed": true, 9558 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BODmUeZDFyC.jpg", 9559 + "expression": "focused, looking sideways", 9560 + "pose": "sitting on a colorful bench, one hand resting on knee, looking to the side", 9561 + "description": "Long brown hair with a pink hair clip, clean-shaven face, wearing a bright pink t-shirt, grey pants, and a blue backpack.", 9562 + "location": "a vividly colored outdoor display with abstract turquoise structures", 9563 + "style": "candid snapshot", 9564 + "framing": "medium shot waist-up", 9565 + "domain": "travel-or-outdoor", 9566 + "tags": [ 9567 + "outdoor", 9568 + "artistic", 9569 + "colorful background", 9570 + "casual", 9571 + "side view" 9572 + ], 9573 + "caption": "Exploring vibrant spaces and new perspectives.", 9574 + "n_other_people": 0 9575 + }, 9576 + { 9577 + "shortcode": "BN-KlyjBQtx", 9578 + "date": "2016-12-13", 9579 + "similarity": 0.6822, 9580 + "confidence": 0.95, 9581 + "confirmed": true, 9582 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BN-KlyjBQtx.jpg", 9583 + "expression": "soft smile", 9584 + "pose": "sitting in a car, taking a selfie with seatbelt on", 9585 + "description": "long brown hair tied back, wearing a bright green zip-up jacket over a yellow t-shirt", 9586 + "location": "inside a car", 9587 + "style": "casual phone selfie", 9588 + "framing": "medium shot showing torso and face", 9589 + "domain": "travel-or-outdoor", 9590 + "tags": [ 9591 + "car", 9592 + "daylight", 9593 + "selfie", 9594 + "green jacket" 9595 + ], 9596 + "caption": "Road trip vibes with a sunny selfie.", 9597 + "n_other_people": 0 9598 + }, 9599 + { 9600 + "shortcode": "BN5uji2DJj4", 9601 + "date": "2016-12-12", 9602 + "similarity": 0.6807, 9603 + "confidence": 0.95, 9604 + "confirmed": true, 9605 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BN5uji2DJj4.jpg", 9606 + "expression": "looking up with an amused smile", 9607 + "pose": "standing in front of a wall, holding a pillow, looking upwards", 9608 + "description": "Hair partially covered by a knit hood, beard stubble, wearing a pink shirt, holding a pillow with dog images.", 9609 + "location": "indoor space with a poster on the wall", 9610 + "style": "casual phone snapshot", 9611 + "framing": "tight close-up of face and upper body", 9612 + "domain": "solo-portrait", 9613 + "tags": [ 9614 + "knit hood", 9615 + "dog pillow", 9616 + "poster", 9617 + "casual" 9618 + ], 9619 + "caption": "Chasing sparkles and dogs, one picture at a time.", 9620 + "n_other_people": 0 9621 + }, 9622 + { 9623 + "shortcode": "BN0JRrMDcu-", 9624 + "date": "2016-12-09", 9625 + "similarity": 0.561, 9626 + "confidence": 0.95, 9627 + "confirmed": true, 9628 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BN0JRrMDcu-.jpg", 9629 + "expression": "neutral, facing side", 9630 + "pose": "standing sideways holding a backpack strap, making a peace sign with a gloved hand", 9631 + "description": "Long brown hair, wearing a pink t-shirt and blue backpack, with a white glove on one hand.", 9632 + "location": "art gallery with colorful walls", 9633 + "style": "candid gallery snapshot", 9634 + "framing": "medium shot waist-up", 9635 + "domain": "art (drawing, painting, whistlegraph)", 9636 + "tags": [ 9637 + "art gallery", 9638 + "pink and blue", 9639 + "backpack", 9640 + "peace sign", 9641 + "white glove" 9642 + ], 9643 + "caption": "Exploring vibrant galleries with peace and style.", 9644 + "n_other_people": 0 9645 + }, 9646 + { 9647 + "shortcode": "BNxMZ9lDiqO", 9648 + "date": "2016-12-08", 9649 + "similarity": 0.5283, 9650 + "confidence": 0.85, 9651 + "confirmed": true, 9652 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BNxMZ9lDiqO.jpg", 9653 + "expression": "focused, looking towards the store", 9654 + "pose": "sitting in a car, holding the steering wheel with one hand, looking out the window", 9655 + "description": "short brown hair, clean-shaven, wearing a red T-shirt.", 9656 + "location": "inside a car parked at a PetSmart store", 9657 + "style": "casual snapshot from inside a car", 9658 + "framing": "medium close-up focusing on the side profile", 9659 + "domain": "travel-or-outdoor", 9660 + "tags": [ 9661 + "car", 9662 + "PetSmart", 9663 + "parking lot", 9664 + "afternoon", 9665 + "road trip" 9666 + ], 9667 + "caption": "Quick stop at PetSmart during the afternoon errands.", 9668 + "n_other_people": 0 9669 + }, 9670 + { 9671 + "shortcode": "BNdGf14jynu", 9672 + "date": "2016-12-01", 9673 + "similarity": 0.6181, 9674 + "confidence": 0.95, 9675 + "confirmed": true, 9676 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BNdGf14jynu.jpg", 9677 + "expression": "playful gaze, tongue sticking out", 9678 + "pose": "sitting at a cafeteria table, hand near mouth, surrounded by food on trays", 9679 + "description": "Long brown hair, wearing a loose red T-shirt. No beard or glasses.", 9680 + "location": "cafeteria-like setting with red brick walls, festive garlands", 9681 + "style": "informal snapshot", 9682 + "framing": "medium shot showing torso and table", 9683 + "domain": "cooking-or-eating", 9684 + "tags": [ 9685 + "cafeteria", 9686 + "casual", 9687 + "food", 9688 + "red T-shirt", 9689 + "brick walls" 9690 + ], 9691 + "caption": "Sometimes you just need all the pickles and chips.", 9692 + "n_other_people": 5 9693 + }, 9694 + { 9695 + "shortcode": "BNVny_bjQpI", 9696 + "date": "2016-11-28", 9697 + "similarity": 0.6505, 9698 + "confidence": 0.9, 9699 + "confirmed": true, 9700 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BNVny_bjQpI.jpg", 9701 + "expression": "soft smile", 9702 + "pose": "seated at a dining table, slightly turned to the camera", 9703 + "description": "shoulder-length brown hair, wearing a gray shirt with red accents", 9704 + "location": "bright dining room with abstract painting on the wall", 9705 + "style": "casual group snapshot", 9706 + "framing": "medium shot of group seated at table", 9707 + "domain": "social", 9708 + "tags": [ 9709 + "group photo", 9710 + "indoors", 9711 + "art on wall", 9712 + "dining table", 9713 + "natural light" 9714 + ], 9715 + "caption": "Afternoon laughter and good company.", 9716 + "n_other_people": 5 9717 + }, 9718 + { 9719 + "shortcode": "BNXeRKWDNn4", 9720 + "date": "2016-11-28", 9721 + "similarity": 0.5573, 9722 + "confidence": 0.8, 9723 + "confirmed": true, 9724 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BNXeRKWDNn4.jpg", 9725 + "expression": "relaxed, faint smile", 9726 + "pose": "lying on a bed with hand supporting head", 9727 + "description": "short dark hair, no beard, casually lying down, visible side profile", 9728 + "location": "indoor bedroom setting", 9729 + "style": "candid selfie with smartphone notification", 9730 + "framing": "tight close-up of face", 9731 + "domain": "solo-portrait", 9732 + "tags": [ 9733 + "casual", 9734 + "bedroom", 9735 + "night", 9736 + "selfie" 9737 + ], 9738 + "caption": "Secret agent in bed, caught by the notification.", 9739 + "n_other_people": 0 9740 + }, 9741 + { 9742 + "shortcode": "BNP3aLbj917", 9743 + "date": "2016-11-25", 9744 + "similarity": 0.6613, 9745 + "confidence": 0.95, 9746 + "confirmed": true, 9747 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BNP3aLbj917.jpg", 9748 + "expression": "soft smile", 9749 + "pose": "standing on a beach, holding shoes, looking at the camera", 9750 + "description": "Medium-length brown hair, no beard, wearing a black t-shirt with white graphics and holding a pair of shoes. Casual beach attire.", 9751 + "location": "beach with cliffs", 9752 + "style": "candid snapshot", 9753 + "framing": "medium shot waist-up", 9754 + "domain": "travel-or-outdoor", 9755 + "tags": [ 9756 + "beach", 9757 + "cliffs", 9758 + "casual", 9759 + "afternoon", 9760 + "shoes" 9761 + ], 9762 + "caption": "Enjoying the sun and sand.", 9763 + "n_other_people": 0 9764 + }, 9765 + { 9766 + "shortcode": "BNK2AozjbQr", 9767 + "date": "2016-11-23", 9768 + "similarity": 0.638, 9769 + "confidence": 0.95, 9770 + "confirmed": true, 9771 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BNK2AozjbQr.jpg", 9772 + "expression": "thoughtful, eyes looking away", 9773 + "pose": "seated with one arm resting on head, holding a cup in the other hand", 9774 + "description": "Hair is long and loose, light brown color. No beard. Wearing a blue open shirt over a pink t-shirt, nails painted dark green, holding a white cup with palm tree designs.", 9775 + "location": "interior space with unfinished walls", 9776 + "style": "candid flash photography", 9777 + "framing": "medium shot waist-up", 9778 + "domain": "social", 9779 + "tags": [ 9780 + "cup", 9781 + "interior", 9782 + "night", 9783 + "flash", 9784 + "casual" 9785 + ], 9786 + "caption": "Late night thoughts with a cup of coffee.", 9787 + "n_other_people": 0 9788 + }, 9789 + { 9790 + "shortcode": "BNAxORHjH2X", 9791 + "date": "2016-11-20", 9792 + "similarity": 0.6014, 9793 + "confidence": 0.97, 9794 + "confirmed": true, 9795 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BNAxORHjH2X.jpg", 9796 + "expression": "wide smile", 9797 + "pose": "lying down, taking a selfie from an overhead angle with arm extended towards the camera", 9798 + "description": "Long, dark brown hair falling naturally, no beard, wearing a loose-fitting green button-up shirt.", 9799 + "location": "indoor space with colorful tie-dye background", 9800 + "style": "casual phone selfie", 9801 + "framing": "tight close-up of face", 9802 + "domain": "solo-portrait", 9803 + "tags": [ 9804 + "selfie", 9805 + "tie-dye", 9806 + "green shirt", 9807 + "smiling", 9808 + "casual" 9809 + ], 9810 + "caption": "Embracing all the colors today!", 9811 + "n_other_people": 0 9812 + }, 9813 + { 9814 + "shortcode": "BM7EUbgDKrD", 9815 + "date": "2016-11-17", 9816 + "similarity": 0.7455, 9817 + "confidence": 0.95, 9818 + "confirmed": true, 9819 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BM7EUbgDKrD.jpg", 9820 + "expression": "soft smile", 9821 + "pose": "sitting with head resting on hand, looking at camera", 9822 + "description": "long brown hair, no beard, wearing a blue and pink layered top, neutral expression with a slight smile; resting chin on hand", 9823 + "location": "indoor space with a cloth or sheet hanging behind", 9824 + "style": "casual phone selfie", 9825 + "framing": "medium shot waist-up", 9826 + "domain": "solo-portrait", 9827 + "tags": [ 9828 + "blue sweater", 9829 + "indoor", 9830 + "soft light", 9831 + "casual", 9832 + "chill", 9833 + "home" 9834 + ], 9835 + "caption": "Just another chill night in.", 9836 + "n_other_people": 0 9837 + }, 9838 + { 9839 + "shortcode": "BM0RJe3jIha", 9840 + "date": "2016-11-15", 9841 + "similarity": 0.5664, 9842 + "confidence": 0.9, 9843 + "confirmed": true, 9844 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BM0RJe3jIha.jpg", 9845 + "expression": "soft smile", 9846 + "pose": "profile facing a mural, leaning slightly forward.", 9847 + "description": "long hair, light brown, tucked back; no beard; wearing a pink shirt.", 9848 + "location": "art studio or gallery space with a mural.", 9849 + "style": "casual phone snapshot", 9850 + "framing": "medium shot, profile view", 9851 + "domain": "art", 9852 + "tags": [ 9853 + "mural", 9854 + "art", 9855 + "smile", 9856 + "studio", 9857 + "side profile" 9858 + ], 9859 + "caption": "Celebrating art with a smile.", 9860 + "n_other_people": 0 9861 + }, 9862 + { 9863 + "shortcode": "BMaqYaUD-Lx", 9864 + "date": "2016-11-05", 9865 + "similarity": 0.7019, 9866 + "confidence": 0.95, 9867 + "confirmed": true, 9868 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BMaqYaUD-Lx.jpg", 9869 + "expression": "wide smile with teeth", 9870 + "pose": "sitting on a kitchen counter, holding a mug and a lime", 9871 + "description": "Medium-length brown hair, no beard, wearing a bright green medical scrub top, black pants, and a blue backpack.", 9872 + "location": "kitchen with white cabinetry", 9873 + "style": "casual phone snapshot", 9874 + "framing": "medium shot waist-up", 9875 + "domain": "cooking-or-eating", 9876 + "tags": [ 9877 + "kitchen", 9878 + "green scrub", 9879 + "mug", 9880 + "backpack", 9881 + "lime" 9882 + ], 9883 + "caption": "Just a casual kitchen hangout with my favorite mug.", 9884 + "n_other_people": 0 9885 + }, 9886 + { 9887 + "shortcode": "BMaQ1z-jxlS", 9888 + "date": "2016-11-05", 9889 + "similarity": 0.6023, 9890 + "confidence": 0.9, 9891 + "confirmed": true, 9892 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BMaQ1z-jxlS.jpg", 9893 + "expression": "neutral, sipping drink", 9894 + "pose": "standing in store, holding a drink with a straw", 9895 + "description": "medium-length brown hair, worn loose; clean-shaven; gray t-shirt; blue backpack strap over shoulder.", 9896 + "location": "cosmetics store", 9897 + "style": "casual snapshot", 9898 + "framing": "medium shot waist-up", 9899 + "domain": "social", 9900 + "tags": [ 9901 + "cosmetics store", 9902 + "drink", 9903 + "shopping", 9904 + "casual" 9905 + ], 9906 + "caption": "Just browsing and keeping hydrated!", 9907 + "n_other_people": 1 9908 + }, 9909 + { 9910 + "shortcode": "BMLHx4CD4VB", 9911 + "date": "2016-10-30", 9912 + "similarity": 0.6947, 9913 + "confidence": 0.95, 9914 + "confirmed": true, 9915 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BMLHx4CD4VB.jpg", 9916 + "expression": "neutral expression", 9917 + "pose": "lying on a couch with a small child beside him", 9918 + "description": "long brown hair, wearing a blue shirt, no visible beard", 9919 + "location": "on a couch", 9920 + "style": "casual phone selfie", 9921 + "framing": "tight close-up of faces", 9922 + "domain": "kidlisp", 9923 + "tags": [ 9924 + "couch", 9925 + "child", 9926 + "close-up", 9927 + "casual" 9928 + ], 9929 + "caption": "Lazy couch mornings are the best with little smiles.", 9930 + "n_other_people": 1 9931 + }, 9932 + { 9933 + "shortcode": "BMNDk4kDG5J", 9934 + "date": "2016-10-30", 9935 + "similarity": 0.7041, 9936 + "confidence": 0.95, 9937 + "confirmed": true, 9938 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BMNDk4kDG5J.jpg", 9939 + "expression": "soft smile", 9940 + "pose": "seated outdoors on a patio, hands resting on lap, leaning slightly towards the person next to him", 9941 + "description": "Long light brown hair, no beard, wearing a green graphic T-shirt featuring a colorful design, beige pants, and red-laced black sneakers.", 9942 + "location": "outdoor wooden patio area", 9943 + "style": "casual snapshot", 9944 + "framing": "medium shot", 9945 + "domain": "social", 9946 + "tags": [ 9947 + "outdoors", 9948 + "graphic T-shirt", 9949 + "natural light", 9950 + "patio", 9951 + "casual" 9952 + ], 9953 + "caption": "Chillin' on the porch with good company 🌞", 9954 + "n_other_people": 1 9955 + }, 9956 + { 9957 + "shortcode": "BMFyCtpjQUR", 9958 + "date": "2016-10-28", 9959 + "similarity": 0.6912, 9960 + "confidence": 0.95, 9961 + "confirmed": true, 9962 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BMFyCtpjQUR.jpg", 9963 + "expression": "neutral", 9964 + "pose": "facing directly at the camera, slight head tilt", 9965 + "description": "long hair partially tied back with a flower, wearing a blue sweatshirt and backpack straps visible", 9966 + "location": "outdoors at night", 9967 + "style": "casual phone selfie", 9968 + "framing": "tight close-up of face", 9969 + "domain": "solo-portrait", 9970 + "tags": [ 9971 + "selfie", 9972 + "flower", 9973 + "night", 9974 + "blue sweatshirt", 9975 + "backpack" 9976 + ], 9977 + "caption": "Feeling floral under the night sky.", 9978 + "n_other_people": 0 9979 + }, 9980 + { 9981 + "shortcode": "BL-ZMFzjkk-", 9982 + "date": "2016-10-25", 9983 + "similarity": 0.5384, 9984 + "confidence": 0.9, 9985 + "confirmed": true, 9986 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BL-ZMFzjkk-.jpg", 9987 + "expression": "playful smile", 9988 + "pose": "seated side-profile, giving a peace sign with one hand", 9989 + "description": "Medium-length brown hair pulled back, wearing a bright green t-shirt with a colorful butterfly graphic. No visible beard.", 9990 + "location": "plain white wall interior", 9991 + "style": "candid flash snapshot", 9992 + "framing": "medium shot waist-up", 9993 + "domain": "solo-portrait", 9994 + "tags": [ 9995 + "peace sign", 9996 + "green t-shirt", 9997 + "playful", 9998 + "butterfly graphic" 9999 + ], 10000 + "caption": "Feeling cheeky in my new favorite shirt!", 10001 + "n_other_people": 0 10002 + }, 10003 + { 10004 + "shortcode": "BL5EmF7j2PX", 10005 + "date": "2016-10-23", 10006 + "similarity": 0.7433, 10007 + "confidence": 0.95, 10008 + "confirmed": true, 10009 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BL5EmF7j2PX.jpg", 10010 + "expression": "neutral, direct gaze at camera", 10011 + "pose": "close-up selfie with head slightly tilted", 10012 + "description": "Long brown hair, slightly tousled. Wearing a beige shirt with maroon collar detailing. No beard.", 10013 + "location": "art gallery with interactive installation", 10014 + "style": "casual phone selfie", 10015 + "framing": "tight close-up of face", 10016 + "domain": "art", 10017 + "tags": [ 10018 + "art", 10019 + "installation", 10020 + "selfie", 10021 + "gallery" 10022 + ], 10023 + "caption": "Contemplating the intricate mechanics of art.", 10024 + "n_other_people": 0 10025 + }, 10026 + { 10027 + "shortcode": "BL2Srbhj9Pr", 10028 + "date": "2016-10-22", 10029 + "similarity": 0.5934, 10030 + "confidence": 0.9, 10031 + "confirmed": true, 10032 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BL2Srbhj9Pr.jpg", 10033 + "expression": "neutral, slightly tired look", 10034 + "pose": "seated in a car, slightly leaning towards the camera", 10035 + "description": "Wet, shoulder-length brown hair, no beard. Wearing a pink shirt, slightly disheveled appearance.", 10036 + "location": "inside a car", 10037 + "style": "informal phone snapshot", 10038 + "framing": "tight close-up of face", 10039 + "domain": "solo-portrait", 10040 + "tags": [ 10041 + "car", 10042 + "pink shirt", 10043 + "wet hair", 10044 + "casual selfie" 10045 + ], 10046 + "caption": "Late night reflections in the car.", 10047 + "n_other_people": 0 10048 + }, 10049 + { 10050 + "shortcode": "BLr7hzRjF4Z", 10051 + "date": "2016-10-18", 10052 + "similarity": 0.6794, 10053 + "confidence": 0.95, 10054 + "confirmed": true, 10055 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BLr7hzRjF4Z.jpg", 10056 + "expression": "neutral, slight smile", 10057 + "pose": "riding a white horse, holding the reins with one hand", 10058 + "description": "Medium-length brown hair, clean-shaven, wearing an orange t-shirt and green pants.", 10059 + "location": "backyard or garden of a suburban house", 10060 + "style": "casual snapshot", 10061 + "framing": "medium shot capturing upper body and horse", 10062 + "domain": "travel-or-outdoor", 10063 + "tags": [ 10064 + "horse", 10065 + "outdoor", 10066 + "orange shirt", 10067 + "green pants", 10068 + "suburban" 10069 + ], 10070 + "caption": "Adventure in the suburban wild!", 10071 + "n_other_people": 0 10072 + }, 10073 + { 10074 + "shortcode": "BLthl32Dhyk", 10075 + "date": "2016-10-18", 10076 + "similarity": 0.5731, 10077 + "confidence": 0.9, 10078 + "confirmed": true, 10079 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BLthl32Dhyk.jpg", 10080 + "expression": "engaged with eyebrows raised", 10081 + "pose": "standing and holding a microphone, gesturing with one hand", 10082 + "description": "medium-length brown hair, no beard, wearing a dark graphic t-shirt.", 10083 + "location": "small indoor venue or basement", 10084 + "style": "candid event photo", 10085 + "framing": "medium shot waist-up", 10086 + "domain": "performance", 10087 + "tags": [ 10088 + "microphone", 10089 + "performance", 10090 + "indoor stage", 10091 + "graphic tee", 10092 + "engaged" 10093 + ], 10094 + "caption": "Rocking the stage with every word. 🎤✨", 10095 + "n_other_people": 1 10096 + }, 10097 + { 10098 + "shortcode": "BLnB3bOjJag", 10099 + "date": "2016-10-16", 10100 + "similarity": 0.5055, 10101 + "confidence": 0.9, 10102 + "confirmed": true, 10103 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BLnB3bOjJag.jpg", 10104 + "expression": "slightly open-mouthed", 10105 + "pose": "taking a selfie with an arcade game in the background", 10106 + "description": "Long wet hair, no beard, wearing a white T-shirt with graphic text and a black necklace.", 10107 + "location": "arcade", 10108 + "style": "casual phone selfie", 10109 + "framing": "tight close-up of face", 10110 + "domain": "social", 10111 + "tags": [ 10112 + "arcade", 10113 + "selfie", 10114 + "neon lights", 10115 + "casual" 10116 + ], 10117 + "caption": "Gaming night vibes with a hint of retro fun.", 10118 + "n_other_people": 0 10119 + }, 10120 + { 10121 + "shortcode": "BLmENiIjPCH", 10122 + "date": "2016-10-15", 10123 + "similarity": 0.6696, 10124 + "confidence": 0.85, 10125 + "confirmed": true, 10126 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BLmENiIjPCH.jpg", 10127 + "expression": "neutral, slightly concentrated", 10128 + "pose": "standing in front of a mirror, holding phone for a selfie", 10129 + "description": "Medium-length brown hair, no beard, wearing a white T-shirt with text and light-colored pants. He is holding a phone with a case, and there's a bracelet on his wrist.", 10130 + "location": "small bathroom or personal space with mirror", 10131 + "style": "casual phone selfie", 10132 + "framing": "medium shot waist-up", 10133 + "domain": "solo-portrait", 10134 + "tags": [ 10135 + "mirror selfie", 10136 + "casual", 10137 + "personal space", 10138 + "bracelet" 10139 + ], 10140 + "caption": "Reflecting on a laid-back day at home.", 10141 + "n_other_people": 0 10142 + }, 10143 + { 10144 + "shortcode": "BLbry-GDhIG", 10145 + "date": "2016-10-11", 10146 + "similarity": 0.6105, 10147 + "confidence": 0.9, 10148 + "confirmed": true, 10149 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BLbry-GDhIG.jpg", 10150 + "expression": "engaged, eyes looking towards the other person", 10151 + "pose": "seated at a table, hand resting near a water bottle", 10152 + "description": "Shoulder-length brown hair, wearing a light green shirt over a red t-shirt.", 10153 + "location": "classroom or lecture hall with a whiteboard behind", 10154 + "style": "informal classroom snapshot", 10155 + "framing": "medium shot showing two people", 10156 + "domain": "lecture-or-teaching", 10157 + "tags": [ 10158 + "lecture", 10159 + "discussion", 10160 + "whiteboard", 10161 + "bottle", 10162 + "collaboration" 10163 + ], 10164 + "caption": "Great insights shared during this lively discussion.", 10165 + "n_other_people": 1 10166 + }, 10167 + { 10168 + "shortcode": "BLMGcPajwV9", 10169 + "date": "2016-10-05", 10170 + "similarity": 0.6234, 10171 + "confidence": 0.9, 10172 + "confirmed": true, 10173 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BLMGcPajwV9.jpg", 10174 + "expression": "neutral, relaxed", 10175 + "pose": "selfie, directly facing the camera, slightly tilted head", 10176 + "description": "medium length, straight brown hair, no beard, wearing a light denim shirt over a red t-shirt, no accessories visible", 10177 + "location": "airport terminal", 10178 + "style": "casual phone selfie", 10179 + "framing": "tight close-up of face", 10180 + "domain": "social", 10181 + "tags": [ 10182 + "airport", 10183 + "travel", 10184 + "selfie", 10185 + "casual" 10186 + ], 10187 + "caption": "Waiting for boarding with a good book and a view.", 10188 + "n_other_people": 1 10189 + }, 10190 + { 10191 + "shortcode": "BLJy0U2DD8C", 10192 + "date": "2016-10-04", 10193 + "similarity": 0.6388, 10194 + "confidence": 0.95, 10195 + "confirmed": true, 10196 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BLJy0U2DD8C.jpg", 10197 + "expression": "neutral, slight smile in ID photo", 10198 + "pose": "ID card photo, facing forward", 10199 + "description": "Medium hair pulled back, wearing a collared shirt visible in the card photo.", 10200 + "location": "desk with a notebook and ID card", 10201 + "style": "documentary snapshot", 10202 + "framing": "close-up of ID card and notebook", 10203 + "domain": "other", 10204 + "tags": [ 10205 + "ID card", 10206 + "notebook", 10207 + "UCLA", 10208 + "handwritten notes" 10209 + ], 10210 + "caption": "Rediscovering old notes and IDs.", 10211 + "n_other_people": 0 10212 + }, 10213 + { 10214 + "shortcode": "BLFHrWYjG_B", 10215 + "date": "2016-10-03", 10216 + "similarity": 0.5528, 10217 + "confidence": 0.9, 10218 + "confirmed": true, 10219 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BLFHrWYjG_B.jpg", 10220 + "expression": "soft smile", 10221 + "pose": "lying down on a patterned bed, arm stretched out with head turned towards the camera", 10222 + "description": "Long dark brown hair, no beard, wearing a light blue sleeveless top with a visible bare arm.", 10223 + "location": "bed with patterned sheets", 10224 + "style": "casual selfie", 10225 + "framing": "tight close-up of face and upper body", 10226 + "domain": "solo-portrait", 10227 + "tags": [ 10228 + "selfie", 10229 + "bed", 10230 + "colorful fabric", 10231 + "casual", 10232 + "soft lighting" 10233 + ], 10234 + "caption": "Lazy afternoon vibes with a splash of color.", 10235 + "n_other_people": 0 10236 + }, 10237 + { 10238 + "shortcode": "BLFqGyhDJ2q", 10239 + "date": "2016-10-03", 10240 + "similarity": 0.633, 10241 + "confidence": 0.9, 10242 + "confirmed": true, 10243 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BLFqGyhDJ2q.jpg", 10244 + "expression": "open-mouthed smile", 10245 + "pose": "sitting in a car seat, facing the camera with the seatbelt fastened", 10246 + "description": "Long brown hair with slight wave, no beard, wearing a dark t-shirt with printed text. The seatbelt is visible crossing his chest.", 10247 + "location": "car interior", 10248 + "style": "casual phone selfie", 10249 + "framing": "medium shot waist-up", 10250 + "domain": "solo-portrait", 10251 + "tags": [ 10252 + "car", 10253 + "selfie", 10254 + "seatbelt", 10255 + "casual" 10256 + ], 10257 + "caption": "Just another day on the road with a smile!", 10258 + "n_other_people": 0 10259 + }, 10260 + { 10261 + "shortcode": "BK1XfnKjPgZ", 10262 + "date": "2016-09-26", 10263 + "similarity": 0.713, 10264 + "confidence": 0.95, 10265 + "confirmed": true, 10266 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BK1XfnKjPgZ.jpg", 10267 + "expression": "soft smile", 10268 + "pose": "sitting casually on a bench, hands resting beside him, looking at the camera", 10269 + "description": "medium-length brown hair, clean shaven, wearing a dark t-shirt with a print, light brown pants, a blue climbing rope around neck, and a purple backpack.", 10270 + "location": "urban rooftop garden", 10271 + "style": "casual outdoor snapshot", 10272 + "framing": "medium shot waist-up", 10273 + "domain": "travel-or-outdoor", 10274 + "tags": [ 10275 + "outdoor", 10276 + "bench", 10277 + "sunlight", 10278 + "backpack", 10279 + "casual" 10280 + ], 10281 + "caption": "Enjoying a sunny day on the rooftop garden!", 10282 + "n_other_people": 3 10283 + }, 10284 + { 10285 + "shortcode": "BKZbVf5j-Kk", 10286 + "date": "2016-09-16", 10287 + "similarity": 0.5361, 10288 + "confidence": 0.85, 10289 + "confirmed": true, 10290 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BKZbVf5j-Kk.jpg", 10291 + "expression": "neutral, slightly focused", 10292 + "pose": "standing on an arcade dance machine, holding onto a support bar", 10293 + "description": "Medium-length dark hair, wearing a camouflage t-shirt and plaid shorts. No glasses or beard.", 10294 + "location": "arcade with a dance machine", 10295 + "style": "candid", 10296 + "framing": "medium shot waist-up", 10297 + "domain": "performance", 10298 + "tags": [ 10299 + "arcade", 10300 + "dance machine", 10301 + "camouflage", 10302 + "plaid", 10303 + "neon lights" 10304 + ], 10305 + "caption": "Throwback to arcade dance battles 🎮💥", 10306 + "n_other_people": 0 10307 + }, 10308 + { 10309 + "shortcode": "BI8CARmjHxt", 10310 + "date": "2016-08-10", 10311 + "similarity": 0.5378, 10312 + "confidence": 0.8, 10313 + "confirmed": true, 10314 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BI8CARmjHxt.jpg", 10315 + "expression": "neutral, slightly focused", 10316 + "pose": "standing in front of a mirror holding a smartphone for a selfie", 10317 + "description": "Medium-length, tousled brown hair. No visible beard. Bare chest with a hint of body hair. Holding a smartphone with painted nails in a geometric design.", 10318 + "location": "bathroom mirror", 10319 + "style": "collage-style selfie", 10320 + "framing": "tight close-up including face and partial upper body", 10321 + "domain": "solo-portrait", 10322 + "tags": [ 10323 + "mirror selfie", 10324 + "painted nails", 10325 + "bathroom", 10326 + "collage", 10327 + "towel motifs" 10328 + ], 10329 + "caption": "Reflecting on a colorful day.", 10330 + "n_other_people": 0 10331 + }, 10332 + { 10333 + "shortcode": "BIx4CR4j2bc", 10334 + "date": "2016-08-06", 10335 + "similarity": 0.688, 10336 + "confidence": 0.9, 10337 + "confirmed": true, 10338 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BIx4CR4j2bc.jpg", 10339 + "expression": "neutral, eyes wide", 10340 + "pose": "standing in front of mirror, holding phone for a selfie", 10341 + "description": "Long, disheveled hair and no beard. Wearing a dark hoodie over a light striped shirt, no visible accessories.", 10342 + "location": "bathroom with nautical-themed decor", 10343 + "style": "casual phone selfie", 10344 + "framing": "medium shot waist-up", 10345 + "domain": "solo-portrait", 10346 + "tags": [ 10347 + "mirror", 10348 + "selfie", 10349 + "bathroom", 10350 + "casual", 10351 + "neutral expression" 10352 + ], 10353 + "caption": "Mirror selfies are an art form.", 10354 + "n_other_people": 0 10355 + }, 10356 + { 10357 + "shortcode": "BIrewS2Df6R", 10358 + "date": "2016-08-04", 10359 + "similarity": 0.5952, 10360 + "confidence": 0.9, 10361 + "confirmed": true, 10362 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BIrewS2Df6R.jpg", 10363 + "expression": "peaceful, eyes closed", 10364 + "pose": "resting in bed against a patterned pillow, head tilted down", 10365 + "description": "Medium-length brown hair with a pink barrette, wearing a green tie-dye shirt.", 10366 + "location": "bedroom interior", 10367 + "style": "casual phone selfie", 10368 + "framing": "tight close-up of face", 10369 + "domain": "solo-portrait", 10370 + "tags": [ 10371 + "bedroom", 10372 + "resting", 10373 + "pillow", 10374 + "calm" 10375 + ], 10376 + "caption": "Dreaming of colors and patterns.", 10377 + "n_other_people": 0 10378 + }, 10379 + { 10380 + "shortcode": "BIi-X1ajiVe", 10381 + "date": "2016-08-01", 10382 + "similarity": 0.5792, 10383 + "confidence": 0.9, 10384 + "confirmed": true, 10385 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BIi-X1ajiVe.jpg", 10386 + "expression": "slightly open mouth, intense eyes", 10387 + "pose": "seated in a car, looking at the camera", 10388 + "description": "Wet medium-length dark hair, clean-shaven, wearing an orange t-shirt.", 10389 + "location": "inside a car", 10390 + "style": "casual phone selfie", 10391 + "framing": "tight close-up of face and shoulders", 10392 + "domain": "other", 10393 + "tags": [ 10394 + "car", 10395 + "orange shirt", 10396 + "sweaty", 10397 + "close-up" 10398 + ], 10399 + "caption": "Post-workout feels in the car.", 10400 + "n_other_people": 0 10401 + }, 10402 + { 10403 + "shortcode": "BIUQ4ZDjBCh", 10404 + "date": "2016-07-26", 10405 + "similarity": 0.5954, 10406 + "confidence": 0.9, 10407 + "confirmed": true, 10408 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BIUQ4ZDjBCh.jpg", 10409 + "expression": "relaxed, eyes down", 10410 + "pose": "taking a selfie with phone, holding it up to the mirror", 10411 + "description": "Short dark hair, green face mask, wearing a tie-dye green shirt. Painted red nails.", 10412 + "location": "bathroom with orange walls", 10413 + "style": "candid phone selfie", 10414 + "framing": "close up showing face and part of hand", 10415 + "domain": "solo-portrait", 10416 + "tags": [ 10417 + "selfie", 10418 + "bathroom", 10419 + "face mask", 10420 + "red nails", 10421 + "mirror" 10422 + ], 10423 + "caption": "Self-care Sundays got me like...", 10424 + "n_other_people": 0 10425 + }, 10426 + { 10427 + "shortcode": "BISrOTeDaJM", 10428 + "date": "2016-07-25", 10429 + "similarity": 0.6671, 10430 + "confidence": 0.95, 10431 + "confirmed": true, 10432 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BISrOTeDaJM.jpg", 10433 + "expression": "soft smile, head slightly tilted.", 10434 + "pose": "standing in a relaxed manner, holding a closed notebook at side.", 10435 + "description": "Medium-length brown hair, casual orange sweater, green pants, and a blue backpack.", 10436 + "location": "indoor tropical garden with lush greenery.", 10437 + "style": "candid shot in a lush setting", 10438 + "framing": "medium shot showing waist-up and environment.", 10439 + "domain": "travel-or-outdoor", 10440 + "tags": [ 10441 + "tropical", 10442 + "greenery", 10443 + "notebook", 10444 + "orange sweater", 10445 + "blue backpack" 10446 + ], 10447 + "caption": "Exploring the tropics, notebook in hand.", 10448 + "n_other_people": 0 10449 + }, 10450 + { 10451 + "shortcode": "BIA4JXZj42M", 10452 + "date": "2016-07-18", 10453 + "similarity": 0.648, 10454 + "confidence": 0.9, 10455 + "confirmed": true, 10456 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BIA4JXZj42M.jpg", 10457 + "expression": "playful glance, slightly mischievous", 10458 + "pose": "resting on stomach on a bed, slightly propped up on elbows, holding blanket to face", 10459 + "description": "Medium-length dark brown hair secured with a small clip, wearing a green tie-dye shirt, no beard, casually on a bed with a beige blanket.", 10460 + "location": "brightly colored room with bookshelves and office chair visible", 10461 + "style": "casual phone snapshot", 10462 + "framing": "tight close-up of face", 10463 + "domain": "solo-portrait", 10464 + "tags": [ 10465 + "bed", 10466 + "casual", 10467 + "indoor", 10468 + "tie-dye", 10469 + "playful" 10470 + ], 10471 + "caption": "Sunday vibes with a cozy blanket.", 10472 + "n_other_people": 0 10473 + }, 10474 + { 10475 + "shortcode": "BH8MeC4jzBa", 10476 + "date": "2016-07-16", 10477 + "similarity": 0.6711, 10478 + "confidence": 0.9, 10479 + "confirmed": true, 10480 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BH8MeC4jzBa.jpg", 10481 + "expression": "playful smile", 10482 + "pose": "sitting in a car, holding a large drink cup with a straw", 10483 + "description": "medium-length brown hair, no beard, wearing a grey t-shirt.", 10484 + "location": "inside a car, parked", 10485 + "style": "casual phone snapshot", 10486 + "framing": "medium shot waist-up", 10487 + "domain": "travel-or-outdoor", 10488 + "tags": [ 10489 + "car", 10490 + "drink", 10491 + "casual", 10492 + "sunlight", 10493 + "parked" 10494 + ], 10495 + "caption": "Refreshing stop on a sunny day!", 10496 + "n_other_people": 0 10497 + }, 10498 + { 10499 + "shortcode": "BHkaKOrDor4", 10500 + "date": "2016-07-07", 10501 + "similarity": 0.6088, 10502 + "confidence": 0.9, 10503 + "confirmed": true, 10504 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BHkaKOrDor4.jpg", 10505 + "expression": "sly grin", 10506 + "pose": "standing facing the camera, with hands in pockets.", 10507 + "description": "Medium-length brown hair, no beard, wearing a navy sweater with yellow stars and 'ALASKA' text, colorful striped shirt underneath, turquoise tie, red pants, and purple backpack.", 10508 + "location": "indoor event space", 10509 + "style": "candid event photo", 10510 + "framing": "medium shot waist-up", 10511 + "domain": "social", 10512 + "tags": [ 10513 + "ALASKA sweater", 10514 + "event", 10515 + "turquoise tie", 10516 + "purple backpack" 10517 + ], 10518 + "caption": "Channeling cool Alaska vibes! 🌟", 10519 + "n_other_people": 0 10520 + }, 10521 + { 10522 + "shortcode": "BHX9LK1DWw4", 10523 + "date": "2016-07-02", 10524 + "similarity": 0.6719, 10525 + "confidence": 0.95, 10526 + "confirmed": true, 10527 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BHX9LK1DWw4.jpg", 10528 + "expression": "soft smile", 10529 + "pose": "leaning casually against a stone wall by a pond", 10530 + "description": "medium-length brown hair, clean-shaven, wearing a black graphic t-shirt with abstract shapes and text", 10531 + "location": "small pond with surrounding greenery", 10532 + "style": "casual outdoor shot", 10533 + "framing": "medium shot waist-up", 10534 + "domain": "travel-or-outdoor", 10535 + "tags": [ 10536 + "pond", 10537 + "outdoors", 10538 + "inflatable duck", 10539 + "sunny day" 10540 + ], 10541 + "caption": "Sunny days by the pond 🌞", 10542 + "n_other_people": 0 10543 + }, 10544 + { 10545 + "shortcode": "BHScYyQjA4c", 10546 + "date": "2016-06-30", 10547 + "similarity": 0.6018, 10548 + "confidence": 0.9, 10549 + "confirmed": true, 10550 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BHScYyQjA4c.jpg", 10551 + "expression": "neutral, slight tension at mouth", 10552 + "pose": "standing next to two other individuals, smiling at the camera", 10553 + "description": "Short brown hair, clean-shaven, wearing a green shirt with a multicolored striped tie and black suspenders.", 10554 + "location": "art gallery interior", 10555 + "style": "casual group snapshot", 10556 + "framing": "medium shot showing three people", 10557 + "domain": "social", 10558 + "tags": [ 10559 + "art gallery", 10560 + "group photo", 10561 + "green shirt", 10562 + "striped tie", 10563 + "suspenders" 10564 + ], 10565 + "caption": "Throwback to gallery days with friends 🌟🎨", 10566 + "n_other_people": 2 10567 + }, 10568 + { 10569 + "shortcode": "BHAGgM8CryX", 10570 + "date": "2016-06-23", 10571 + "similarity": 0.5291, 10572 + "confidence": 0.85, 10573 + "confirmed": true, 10574 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BHAGgM8CryX.jpg", 10575 + "expression": "focused, slight concentration", 10576 + "pose": "standing near a desk, eating and looking towards the camera", 10577 + "description": "short brown hair, wearing a maroon jacket, floral patterned shirt, and a turquoise tie, eating a chocolate bar with gold foil.", 10578 + "location": "artist's studio with various artworks on the wall", 10579 + "style": "candid studio snapshot", 10580 + "framing": "medium shot showing torso and head", 10581 + "domain": "studio-or-workshop", 10582 + "tags": [ 10583 + "studio", 10584 + "art", 10585 + "snack", 10586 + "casual", 10587 + "maroon jacket" 10588 + ], 10589 + "caption": "Studio snacking between creative bursts.", 10590 + "n_other_people": 0 10591 + }, 10592 + { 10593 + "shortcode": "BGc59Dmir8J", 10594 + "date": "2016-06-09", 10595 + "similarity": 0.5641, 10596 + "confidence": 0.9, 10597 + "confirmed": true, 10598 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BGc59Dmir8J.jpg", 10599 + "expression": "neutral gaze", 10600 + "pose": "leaning close into the frame while holding a black-and-white cat", 10601 + "description": "Medium-length dark hair, slightly wet-looking, wearing a gray towel-like shirt with yellow sleeve edges. No beard.", 10602 + "location": "wooden interior, possibly a cabin, with a glass door opening to a green garden", 10603 + "style": "intimate candid selfie", 10604 + "framing": "tight close-up of face and cat", 10605 + "domain": "solo-portrait", 10606 + "tags": [ 10607 + "cat", 10608 + "selfie", 10609 + "wooden interior", 10610 + "soft light" 10611 + ], 10612 + "caption": "Cuddling with my feline friend on a cozy day.", 10613 + "n_other_people": 0 10614 + }, 10615 + { 10616 + "shortcode": "BFk6pJsir9B", 10617 + "date": "2016-05-19", 10618 + "similarity": 0.6918, 10619 + "confidence": 0.95, 10620 + "confirmed": true, 10621 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BFk6pJsir9B.jpg", 10622 + "expression": "soft smile", 10623 + "pose": "leaning against a railing, looking back at the camera", 10624 + "description": "Medium-length brown hair, wearing a light striped button-up shirt. No visible beard.", 10625 + "location": "rooftop overlooking the city skyline across the water", 10626 + "style": "candid shot", 10627 + "framing": "medium shot waist-up", 10628 + "domain": "other", 10629 + "tags": [ 10630 + "rooftop", 10631 + "cityscape", 10632 + "overcast", 10633 + "railings", 10634 + "smile" 10635 + ], 10636 + "caption": "Enjoying the city view from above.", 10637 + "n_other_people": 1 10638 + }, 10639 + { 10640 + "shortcode": "BAQ9UAbir0p", 10641 + "date": "2016-01-08", 10642 + "similarity": 0.5151, 10643 + "confidence": 0.9, 10644 + "confirmed": true, 10645 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/BAQ9UAbir0p.jpg", 10646 + "expression": "focused, looking to the side", 10647 + "pose": "walking through a market aisle, holding a brown paper bag", 10648 + "description": "medium-length brown hair, clean-shaven, wearing a black jacket over a blue denim shirt and light blue jeans with sneakers.", 10649 + "location": "grocery store or bakery", 10650 + "style": "candid photo", 10651 + "framing": "medium shot waist-up", 10652 + "domain": "social", 10653 + "tags": [ 10654 + "grocery store", 10655 + "shopping", 10656 + "bakery", 10657 + "casual" 10658 + ], 10659 + "caption": "Caught on a quick bakery run!", 10660 + "n_other_people": 2 10661 + }, 10662 + { 10663 + "shortcode": "_6lT2lCrzs", 10664 + "date": "2015-12-30", 10665 + "similarity": 0.5126, 10666 + "confidence": 0.85, 10667 + "confirmed": true, 10668 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/_6lT2lCrzs.jpg", 10669 + "expression": "neutral, slightly tired eyes", 10670 + "pose": "holding a phone in front of face, standing in front of a mirror", 10671 + "description": "short, dark ruffled hair; wearing a black cropped t-shirt and green pants. No beard, clean-shaven.", 10672 + "location": "wood-paneled bathroom", 10673 + "style": "casual phone selfie", 10674 + "framing": "medium shot waist-up", 10675 + "domain": "solo-portrait", 10676 + "tags": [ 10677 + "mirror selfie", 10678 + "black t-shirt", 10679 + "green pants", 10680 + "casual", 10681 + "wood-paneled room" 10682 + ], 10683 + "caption": "Mirror selfies are a vibe.", 10684 + "n_other_people": 0 10685 + }, 10686 + { 10687 + "shortcode": "9hgAoCir3p", 10688 + "date": "2015-11-01", 10689 + "similarity": 0.7158, 10690 + "confidence": 0.95, 10691 + "confirmed": true, 10692 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/9hgAoCir3p.jpg", 10693 + "expression": "neutral with slight tension", 10694 + "pose": "standing in front of a door, hands loosely clasped in front", 10695 + "description": "short brown hair, clean-shaven, wearing an orange sweater and patterned pants. No accessories visible.", 10696 + "location": "residential hallway near the front door", 10697 + "style": "candid indoor snapshot", 10698 + "framing": "medium shot waist-up", 10699 + "domain": "solo-portrait", 10700 + "tags": [ 10701 + "Halloween", 10702 + "door", 10703 + "orange sweater", 10704 + "night", 10705 + "indoor" 10706 + ], 10707 + "caption": "Spooky vibes at home.", 10708 + "n_other_people": 0 10709 + }, 10710 + { 10711 + "shortcode": "6fd2l4ir1G", 10712 + "date": "2015-08-17", 10713 + "similarity": 0.6728, 10714 + "confidence": 0.95, 10715 + "confirmed": true, 10716 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/6fd2l4ir1G.jpg", 10717 + "expression": "focused, slightly weary", 10718 + "pose": "reclined in an office chair, holding a small object, with one hand on a laptop keyboard.", 10719 + "description": "Hair styled into small pigtails, wearing a worn-out purple t-shirt. No beard, casual appearance.", 10720 + "location": "indoor room with hand-painted wall designs.", 10721 + "style": "casual snapshot", 10722 + "framing": "medium shot waist-up", 10723 + "domain": "other", 10724 + "tags": [ 10725 + "pigtails", 10726 + "laptop", 10727 + "casual wear", 10728 + "artistic wall", 10729 + "focused" 10730 + ], 10731 + "caption": "After a long night of creativity, the fatigue settles in.", 10732 + "n_other_people": 0 10733 + }, 10734 + { 10735 + "shortcode": "5x4bzIirxF", 10736 + "date": "2015-07-30", 10737 + "similarity": 0.528, 10738 + "confidence": 0.9, 10739 + "confirmed": true, 10740 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/5x4bzIirxF.jpg", 10741 + "expression": "wide open-mouthed smile", 10742 + "pose": "standing holding a candle with one hand, purple cloth draped over shoulder", 10743 + "description": "short dark hair mostly covered by a white cloth, clean-shaven, wearing a red t-shirt and holding a candle and a purple cloth over the shoulder.", 10744 + "location": "urban exterior near a metal shutter", 10745 + "style": "casual phone snapshot", 10746 + "framing": "medium shot waist-up", 10747 + "domain": "social", 10748 + "tags": [ 10749 + "candle", 10750 + "night", 10751 + "red t-shirt", 10752 + "playful", 10753 + "urban setting" 10754 + ], 10755 + "caption": "Ready for a night of fun with some candlelight vibes!", 10756 + "n_other_people": 0 10757 + }, 10758 + { 10759 + "shortcode": "4XEBifir1a", 10760 + "date": "2015-06-25", 10761 + "similarity": 0.6088, 10762 + "confidence": 0.95, 10763 + "confirmed": true, 10764 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/4XEBifir1a.jpg", 10765 + "expression": "slightly open-mouthed, focused look.", 10766 + "pose": "seated and leaning forward, looking intently at a computer screen.", 10767 + "description": "short brown hair, wearing a green tie-dye t-shirt, facial mask covering nose and cheeks, moderate stubble visible beneath.", 10768 + "location": "creative studio or workspace.", 10769 + "style": "casual snapshot", 10770 + "framing": "medium shot waist-up", 10771 + "domain": "other", 10772 + "tags": [ 10773 + "facial mask", 10774 + "computer", 10775 + "tie-dye", 10776 + "studio", 10777 + "brick wall" 10778 + ], 10779 + "caption": "Late night creativity with a skincare routine.", 10780 + "n_other_people": 0 10781 + }, 10782 + { 10783 + "shortcode": "0xsNZWCr4o", 10784 + "date": "2015-03-28", 10785 + "similarity": 0.7233, 10786 + "confidence": 0.85, 10787 + "confirmed": true, 10788 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/0xsNZWCr4o.jpg", 10789 + "expression": "neutral, slightly tired", 10790 + "pose": "standing in front of an art piece with a puppet-like face", 10791 + "description": "short dark hair, wearing a black t-shirt with white print, blue backpack straps", 10792 + "location": "indoor space with eclectic art", 10793 + "style": "candid flash snapshot", 10794 + "framing": "medium shot waist-up", 10795 + "domain": "art", 10796 + "tags": [ 10797 + "art piece", 10798 + "indoor", 10799 + "black t-shirt", 10800 + "flash photography" 10801 + ], 10802 + "caption": "Just hanging out with some unusual art.", 10803 + "n_other_people": 0 10804 + }, 10805 + { 10806 + "shortcode": "zK1NmUCr1c", 10807 + "date": "2015-02-16", 10808 + "similarity": 0.6595, 10809 + "confidence": 0.95, 10810 + "confirmed": true, 10811 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/zK1NmUCr1c.jpg", 10812 + "expression": "neutral, slightly dazed", 10813 + "pose": "reclining on a couch, leaning back with arms resting on legs", 10814 + "description": "hair tied up in a top knot, no beard, wearing a dark graphic t-shirt and dark pants", 10815 + "location": "living room with a brown leather couch", 10816 + "style": "candid snapshot", 10817 + "framing": "medium shot showing upper body and part of the couch", 10818 + "domain": "solo-portrait", 10819 + "tags": [ 10820 + "couch", 10821 + "casual", 10822 + "living room", 10823 + "dazed", 10824 + "relaxed" 10825 + ], 10826 + "caption": "Couch potato mode activated.", 10827 + "n_other_people": 0 10828 + }, 10829 + { 10830 + "shortcode": "xov6K5ir92", 10831 + "date": "2015-01-09", 10832 + "similarity": 0.6311, 10833 + "confidence": 0.95, 10834 + "confirmed": true, 10835 + "thumb": "https://assets.aesthetic.computer/jeffreys/whistlegraph/xov6K5ir92.jpg", 10836 + "expression": "neutral, slight tension at mouth", 10837 + "pose": "facing directly towards the camera for an ID photograph", 10838 + "description": "Short hair, medium-light color, no beard. Wearing a dark jacket over a light shirt. Image is black and white, so colors are implied.", 10839 + "location": "document issued, appears to be an ID photo", 10840 + "style": "formal document photo", 10841 + "framing": "tight close-up of face", 10842 + "domain": "solo-portrait", 10843 + "tags": [ 10844 + "ID photo", 10845 + "document", 10846 + "black and white", 10847 + "temporary ID" 10848 + ], 10849 + "caption": "Throwback to the ID essentials!", 10850 + "n_other_people": 0 10851 + } 10852 + ] 10853 + }