File size: 87,841 Bytes
7026b82 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 | [
{
"current_tab": {
"title": "Docker Hub - postgres",
"url": "https://hub.docker.com/_/postgres"
},
"open_tabs": [],
"memories": [],
"date": "2025-11-21",
"uuid": "e016558d-2bce-4113-a29f-27fa8342237c",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Zoom - Meeting in Progress",
"url": "https://zoom.us/j/123456789"
},
"open_tabs": [],
"memories": [],
"date": "2025-11-21",
"uuid": "a786c9d5-9bad-497e-8dfb-de85fa760e9c",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "RTX 4090 Graphics Card - Newegg",
"url": "https://www.newegg.com/p/N82E168141"
},
"open_tabs": [],
"memories": [],
"date": "2025-11-21",
"uuid": "8f6f4da3-360f-44dc-a1cd-05a3238705b7",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
},
"open_tabs": [],
"memories": [],
"date": "2025-11-21",
"uuid": "6e90b353-bfd9-4d05-a8e2-e9a566837bc1",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Organic Coffee Beans 1kg - Whole Foods",
"url": "https://www.wholefoodsmarket.com/product/organic-coffee"
},
"open_tabs": [],
"memories": [],
"date": "2025-11-21",
"uuid": "ed80d0e0-b5d5-43d1-bfdf-fb4224f51668",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Khan Academy - Calculus 1",
"url": "https://www.khanacademy.org/math/calculus-1"
},
"open_tabs": [],
"memories": [],
"date": "2025-11-21",
"uuid": "95c02309-1437-4e89-9c1e-786cba0e9d15",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "ESPN - NBA Standings",
"url": "https://www.espn.com/nba/standings"
},
"open_tabs": [],
"memories": [],
"date": "2025-11-21",
"uuid": "7d1d4081-9a35-4f5b-bed3-564f6dbf7dfe",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Reddit - r/worldnews",
"url": "https://www.reddit.com/r/worldnews/"
},
"open_tabs": [],
"memories": [],
"date": "2025-11-21",
"uuid": "47901db9-e3d5-4a76-8b4a-1dc10c31dff4",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Symptoms of Anxiety Disorders - WebMD",
"url": "https://www.webmd.com/anxiety-panic/guide/anxiety-disorders"
},
"open_tabs": [],
"memories": [],
"date": "2025-11-21",
"uuid": "d4087f10-31b4-4069-b39c-e449bc7ed428",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Klea Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/klea-dress/127356007.html"
},
"open_tabs": [],
"memories": [],
"date": "2025-11-21",
"uuid": "48bc333e-21f5-464c-a1e8-67fca902697f",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Breaking News: Market Hits Record High - NYT",
"url": "https://www.nytimes.com/2025/11/21/business/markets.html"
},
"open_tabs": [],
"memories": [],
"date": "2025-11-21",
"uuid": "4f4d3dde-6328-411e-ba9d-749ae52f0e8c",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Vintage Levi's 501 Jeans - eBay",
"url": "https://www.ebay.com/itm/123456789"
},
"open_tabs": [],
"memories": [],
"date": "2025-11-21",
"uuid": "f38b1bb4-1099-428d-9510-8619e8a45d34",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Notion - Personal Wiki",
"url": "https://www.notion.so/Personal-Wiki-123"
},
"open_tabs": [
{
"title": "Notion - Personal Wiki",
"url": "https://www.notion.so/Personal-Wiki-123"
},
{
"title": "Untitled Document - Google Docs",
"url": "https://docs.google.com/document/u/0/"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "fa16e8ef-bcbd-4ec2-add0-db52ae74fc1f",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Notion - Personal Wiki",
"url": "https://www.notion.so/Personal-Wiki-123"
},
"open_tabs": [
{
"title": "Figma - App Design System V2",
"url": "https://www.figma.com/file/123/Design-System"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "c0244e26-d1cf-44c4-aac5-0afe7e04eb95",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Klea Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/klea-dress/127356007.html"
},
"open_tabs": [
{
"title": "Sony WH-1000XM5 Wireless Headphones - Amazon",
"url": "https://www.amazon.com/Sony-WH-1000XM5/dp/B09XS"
},
{
"title": "RTX 4090 Graphics Card - Newegg",
"url": "https://www.newegg.com/p/N82E168141"
},
{
"title": "Used 2018 Honda Civic - Autotrader",
"url": "https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=682"
},
{
"title": "Vintage Levi's 501 Jeans - eBay",
"url": "https://www.ebay.com/itm/123456789"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "1bfe21d9-1357-46c2-ba21-235fd51f3325",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Stack Overflow - How to center a div?",
"url": "https://stackoverflow.com/questions/123456/center-div"
},
"open_tabs": [
{
"title": "MDN Web Docs - Array.prototype.map()",
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "978d883c-c8f0-4d4c-98bf-ca928d0e157b",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Notion - Personal Wiki",
"url": "https://www.notion.so/Personal-Wiki-123"
},
"open_tabs": [
{
"title": "Untitled Document - Google Docs",
"url": "https://docs.google.com/document/u/0/"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "6aa09ba4-91dc-4cde-bd56-241c97a3ed9e",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Trello - Marketing Board",
"url": "https://trello.com/b/marketing-2025"
},
"open_tabs": [
{
"title": "Final Philosophy Essay - Google Docs",
"url": "https://docs.google.com/document/u/0/"
},
{
"title": "Zoom - Meeting in Progress",
"url": "https://zoom.us/j/123456789"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "36740412-1df1-4ecb-b7c7-c840a9604083",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Stack Overflow - How to center a div?",
"url": "https://stackoverflow.com/questions/123456/center-div"
},
"open_tabs": [
{
"title": "AWS Console - EC2 Dashboard",
"url": "https://us-east-1.console.aws.amazon.com/ec2/v2/home"
},
{
"title": "MDN Web Docs - Array.prototype.map()",
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "0f4bd5b3-2b24-437d-b655-ae60ccf6c59b",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Vintage Levi's 501 Jeans - eBay",
"url": "https://www.ebay.com/itm/123456789"
},
"open_tabs": [
{
"title": "RTX 4090 Graphics Card - Newegg",
"url": "https://www.newegg.com/p/N82E168141"
},
{
"title": "Used 2018 Honda Civic - Autotrader",
"url": "https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=682"
},
{
"title": "Organic Coffee Beans 1kg - Whole Foods",
"url": "https://www.wholefoodsmarket.com/product/organic-coffee"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "2b50b3ed-f528-4afe-a950-704188fb3a9d",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Trello - Marketing Board",
"url": "https://trello.com/b/marketing-2025"
},
"open_tabs": [
{
"title": "Notion - Personal Wiki",
"url": "https://www.notion.so/Personal-Wiki-123"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "a52497ec-abf0-4810-8e5b-232112c0411e",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Klea Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/klea-dress/127356007.html"
},
"open_tabs": [
{
"title": "Herman Miller Aeron Chair - Configuration",
"url": "https://store.hermanmiller.com/office-chairs-aeron/2195348.html"
},
{
"title": "Dyson V15 Detect Vacuum",
"url": "https://www.dyson.com/vacuum-cleaners/cordless/v15"
},
{
"title": "RTX 4090 Graphics Card - Newegg",
"url": "https://www.newegg.com/p/N82E168141"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "79022747-40a7-468b-a883-ecab74002d26",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Vintage Levi's 501 Jeans - eBay",
"url": "https://www.ebay.com/itm/123456789"
},
"open_tabs": [
{
"title": "Used 2018 Honda Civic - Autotrader",
"url": "https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=682"
},
{
"title": "Used 2018 Honda Civic - Autotrader",
"url": "https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=682"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "ffdee27b-fdee-464c-952c-37a0f641e080",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "AWS Console - EC2 Dashboard",
"url": "https://us-east-1.console.aws.amazon.com/ec2/v2/home"
},
"open_tabs": [
{
"title": "GitHub - microsoft/vscode: Visual Studio Code",
"url": "https://github.com/microsoft/vscode"
},
{
"title": "AWS Console - EC2 Dashboard",
"url": "https://us-east-1.console.aws.amazon.com/ec2/v2/home"
},
{
"title": "MDN Web Docs - Array.prototype.map()",
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map"
},
{
"title": "GitHub - microsoft/vscode: Visual Studio Code",
"url": "https://github.com/microsoft/vscode"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "551c4e22-a3b7-4b39-b10d-72b81d6fcbd5",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Sony WH-1000XM5 Wireless Headphones - Amazon",
"url": "https://www.amazon.com/Sony-WH-1000XM5/dp/B09XS"
},
"open_tabs": [
{
"title": "Herman Miller Aeron Chair - Configuration",
"url": "https://store.hermanmiller.com/office-chairs-aeron/2195348.html"
},
{
"title": "Vintage Levi's 501 Jeans - eBay",
"url": "https://www.ebay.com/itm/123456789"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "21ed1156-6ffc-47ca-8629-22918c5f1d77",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Chase Bank - Account Summary",
"url": "https://secure.chase.com/web/auth/dashboard"
},
"open_tabs": [
{
"title": "Klea Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/klea-dress/127356007.html"
},
{
"title": "Organic Coffee Beans 1kg - Whole Foods",
"url": "https://www.wholefoodsmarket.com/product/organic-coffee"
},
{
"title": "Untitled Document - Google Docs",
"url": "https://docs.google.com/document/u/0/"
},
{
"title": "MDN Web Docs - Array.prototype.map()",
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "1bb689a3-c7bc-4438-a5b3-2910e5e235b1",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "GitHub - microsoft/vscode: Visual Studio Code",
"url": "https://github.com/microsoft/vscode"
},
"open_tabs": [
{
"title": "Klea Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/klea-dress/127356007.html"
},
{
"title": "The Verge - Review: iPhone 17",
"url": "https://www.theverge.com/2025/11/iphone-17-review"
},
{
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
},
{
"title": "Symptoms of Anxiety Disorders - WebMD",
"url": "https://www.webmd.com/anxiety-panic/guide/anxiety-disorders"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "f39613b5-d6ac-4ce0-9c5c-c64090881748",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Herman Miller Aeron Chair - Configuration",
"url": "https://store.hermanmiller.com/office-chairs-aeron/2195348.html"
},
"open_tabs": [
{
"title": "Sony WH-1000XM5 Wireless Headphones - Amazon",
"url": "https://www.amazon.com/Sony-WH-1000XM5/dp/B09XS"
},
{
"title": "Global Warming Effects on Agriculture - BBC",
"url": "https://www.bbc.com/news/science-environment-123456"
},
{
"title": "Chase Bank - Account Summary",
"url": "https://secure.chase.com/web/auth/dashboard"
},
{
"title": "Breaking News: Market Hits Record High - NYT",
"url": "https://www.nytimes.com/2025/11/21/business/markets.html"
},
{
"title": "GitHub - microsoft/vscode: Visual Studio Code",
"url": "https://github.com/microsoft/vscode"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "72c19a6a-94bc-4ab0-941d-c647196e46f7",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Untitled Document - Google Docs",
"url": "https://docs.google.com/document/u/0/"
},
"open_tabs": [
{
"title": "Sony WH-1000XM5 Wireless Headphones - Amazon",
"url": "https://www.amazon.com/Sony-WH-1000XM5/dp/B09XS"
},
{
"title": "Coursera - Machine Learning by Andrew Ng",
"url": "https://www.coursera.org/learn/machine-learning"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "f504a917-f524-4c20-b288-5ba3ebd2d45a",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Instagram - Stories",
"url": "https://www.instagram.com/stories/"
},
"open_tabs": [
{
"title": "Stack Overflow - How to center a div?",
"url": "https://stackoverflow.com/questions/123456/center-div"
},
{
"title": "Chase Bank - Account Summary",
"url": "https://secure.chase.com/web/auth/dashboard"
},
{
"title": "Zoom - Meeting in Progress",
"url": "https://zoom.us/j/123456789"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "07aa61cc-d57d-4393-99bc-c59d329ed1ad",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Inbox (12) - johndoe@gmail.com - Gmail",
"url": "https://mail.google.com/mail/u/0/#inbox"
},
"open_tabs": [
{
"title": "Introduction to Linear Algebra - MIT OpenCourseWare",
"url": "https://ocw.mit.edu/courses/mathematics/18-06-linear-algebra"
},
{
"title": "Trello - Marketing Board",
"url": "https://trello.com/b/marketing-2025"
},
{
"title": "Untitled Document - Google Docs",
"url": "https://docs.google.com/document/u/0/"
},
{
"title": "Twitter / X - Home",
"url": "https://twitter.com/home"
},
{
"title": "Symptoms of Anxiety Disorders - WebMD",
"url": "https://www.webmd.com/anxiety-panic/guide/anxiety-disorders"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "42bba4a6-6078-462b-9d85-c72b9b90144f",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
},
"open_tabs": [
{
"title": "TechCrunch - Startup Battlefield 2025",
"url": "https://techcrunch.com/events/startup-battlefield"
},
{
"title": "Divorce Attorney Consultation - LegalZoom",
"url": "https://www.legalzoom.com/personal/marriage-divorce/divorce-overview.html"
},
{
"title": "Tinder - Messages",
"url": "https://tinder.com/app/messages"
},
{
"title": "General / #random - Slack",
"url": "https://app.slack.com/client/T12345/C12345"
},
{
"title": "Q4 Financial Roadmap - Google Sheets",
"url": "https://docs.google.com/spreadsheets/d/1XyZ.../edit"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "0e99a520-fb29-4a95-8c2e-ef36a2b807c3",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Notion - Personal Wiki",
"url": "https://www.notion.so/Personal-Wiki-123"
},
"open_tabs": [
{
"title": "Untitled Document - Google Docs",
"url": "https://docs.google.com/document/u/0/"
},
{
"title": "Tinder - Messages",
"url": "https://tinder.com/app/messages"
},
{
"title": "Divorce Attorney Consultation - LegalZoom",
"url": "https://www.legalzoom.com/personal/marriage-divorce/divorce-overview.html"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "a35209d1-e277-4ab1-b25b-421a6bb80df2",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "RTX 4090 Graphics Card - Newegg",
"url": "https://www.newegg.com/p/N82E168141"
},
"open_tabs": [
{
"title": "Symptoms of Anxiety Disorders - WebMD",
"url": "https://www.webmd.com/anxiety-panic/guide/anxiety-disorders"
},
{
"title": "Reddit - r/worldnews",
"url": "https://www.reddit.com/r/worldnews/"
},
{
"title": "Sony WH-1000XM5 Wireless Headphones - Amazon",
"url": "https://www.amazon.com/Sony-WH-1000XM5/dp/B09XS"
},
{
"title": "Notion - Personal Wiki",
"url": "https://www.notion.so/Personal-Wiki-123"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "6a54b928-5c68-4345-92f8-1dcd4637aa3f",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Vintage Levi's 501 Jeans - eBay",
"url": "https://www.ebay.com/itm/123456789"
},
"open_tabs": [
{
"title": "Herman Miller Aeron Chair - Configuration",
"url": "https://store.hermanmiller.com/office-chairs-aeron/2195348.html"
},
{
"title": "LinkedIn Feed",
"url": "https://www.linkedin.com/feed/"
},
{
"title": "Dyson V15 Detect Vacuum",
"url": "https://www.dyson.com/vacuum-cleaners/cordless/v15"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "f1e03a9a-bc29-4702-b89d-c3f5400a66a0",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
},
"open_tabs": [
{
"title": "Used 2018 Honda Civic - Autotrader",
"url": "https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=682"
},
{
"title": "AWS Console - EC2 Dashboard",
"url": "https://us-east-1.console.aws.amazon.com/ec2/v2/home"
},
{
"title": "Facebook - John Smith's Profile",
"url": "https://www.facebook.com/john.smith.123"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "081b4af4-4522-4f0d-b137-9d5132736b54",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Klea Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/klea-dress/127356007.html"
},
"open_tabs": [
{
"title": "Python 3.12 Documentation - asyncio",
"url": "https://docs.python.org/3/library/asyncio.html"
},
{
"title": "Zoom - Meeting in Progress",
"url": "https://zoom.us/j/123456789"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "d8ff9363-be3f-4de7-bdc3-1c626b39a054",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Breaking News: Market Hits Record High - NYT",
"url": "https://www.nytimes.com/2025/11/21/business/markets.html"
},
"open_tabs": [
{
"title": "GitHub - microsoft/vscode: Visual Studio Code",
"url": "https://github.com/microsoft/vscode"
},
{
"title": "Reddit - r/worldnews",
"url": "https://www.reddit.com/r/worldnews/"
},
{
"title": "LinkedIn Feed",
"url": "https://www.linkedin.com/feed/"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "425edc61-9b63-496f-a330-80eb99358750",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Organic Coffee Beans 1kg - Whole Foods",
"url": "https://www.wholefoodsmarket.com/product/organic-coffee"
},
"open_tabs": [
{
"title": "Coursera - Machine Learning by Andrew Ng",
"url": "https://www.coursera.org/learn/machine-learning"
},
{
"title": "Docker Hub - postgres",
"url": "https://hub.docker.com/_/postgres"
},
{
"title": "Dyson V15 Detect Vacuum",
"url": "https://www.dyson.com/vacuum-cleaners/cordless/v15"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "5567f2d7-400e-4172-9e73-371e715bf9e7",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Sony WH-1000XM5 Wireless Headphones - Amazon",
"url": "https://www.amazon.com/Sony-WH-1000XM5/dp/B09XS"
},
"open_tabs": [
{
"title": "Tinder - Messages",
"url": "https://tinder.com/app/messages"
},
{
"title": "Reddit - r/worldnews",
"url": "https://www.reddit.com/r/worldnews/"
},
{
"title": "Dyson V15 Detect Vacuum",
"url": "https://www.dyson.com/vacuum-cleaners/cordless/v15"
},
{
"title": "Stack Overflow - How to center a div?",
"url": "https://stackoverflow.com/questions/123456/center-div"
},
{
"title": "Sony WH-1000XM5 Wireless Headphones - Amazon",
"url": "https://www.amazon.com/Sony-WH-1000XM5/dp/B09XS"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "7d26fb3d-a3f1-45fa-8230-4f59956c404e",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Used 2018 Honda Civic - Autotrader",
"url": "https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=682"
},
"open_tabs": [
{
"title": "Q4 Financial Roadmap - Google Sheets",
"url": "https://docs.google.com/spreadsheets/d/1XyZ.../edit"
},
{
"title": "Inbox (12) - johndoe@gmail.com - Gmail",
"url": "https://mail.google.com/mail/u/0/#inbox"
},
{
"title": "JIRA - PROJ-1024: Fix Login Bug",
"url": "https://company.atlassian.net/browse/PROJ-1024"
},
{
"title": "Reddit - r/worldnews",
"url": "https://www.reddit.com/r/worldnews/"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "1c660dc5-b72c-461a-ae2f-61bb5ff1cf13",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Twitter / X - Home",
"url": "https://twitter.com/home"
},
"open_tabs": [
{
"title": "Reddit - r/worldnews",
"url": "https://www.reddit.com/r/worldnews/"
},
{
"title": "Reddit - r/worldnews",
"url": "https://www.reddit.com/r/worldnews/"
},
{
"title": "MDN Web Docs - Array.prototype.map()",
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map"
},
{
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "fe45f134-5827-4db4-9771-f33ee4cd4f46",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Inbox (12) - johndoe@gmail.com - Gmail",
"url": "https://mail.google.com/mail/u/0/#inbox"
},
"open_tabs": [
{
"title": "Inbox (12) - johndoe@gmail.com - Gmail",
"url": "https://mail.google.com/mail/u/0/#inbox"
},
{
"title": "Instagram - Stories",
"url": "https://www.instagram.com/stories/"
},
{
"title": "Untitled Document - Google Docs",
"url": "https://docs.google.com/document/u/0/"
},
{
"title": "Introduction to Linear Algebra - MIT OpenCourseWare",
"url": "https://ocw.mit.edu/courses/mathematics/18-06-linear-algebra"
},
{
"title": "Python 3.12 Documentation - asyncio",
"url": "https://docs.python.org/3/library/asyncio.html"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "8b237238-c2db-4202-8dae-13ff50e28e7f",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Chase Bank - Account Summary",
"url": "https://secure.chase.com/web/auth/dashboard"
},
"open_tabs": [
{
"title": "Inbox (12) - johndoe@gmail.com - Gmail",
"url": "https://mail.google.com/mail/u/0/#inbox"
},
{
"title": "ESPN - NBA Standings",
"url": "https://www.espn.com/nba/standings"
},
{
"title": "Global Warming Effects on Agriculture - BBC",
"url": "https://www.bbc.com/news/science-environment-123456"
},
{
"title": "Docker Hub - postgres",
"url": "https://hub.docker.com/_/postgres"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "860ab836-f6ba-44a5-90bd-78b8b6774840",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "TechCrunch - Startup Battlefield 2025",
"url": "https://techcrunch.com/events/startup-battlefield"
},
"open_tabs": [
{
"title": "Used 2018 Honda Civic - Autotrader",
"url": "https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=682"
},
{
"title": "Used 2018 Honda Civic - Autotrader",
"url": "https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=682"
},
{
"title": "Facebook - John Smith's Profile",
"url": "https://www.facebook.com/john.smith.123"
},
{
"title": "RTX 4090 Graphics Card - Newegg",
"url": "https://www.newegg.com/p/N82E168141"
}
],
"memories": [],
"date": "2025-11-21",
"uuid": "6a952c08-11f5-4839-af46-91b21a2a3079",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Untitled Document - Google Docs",
"url": "https://docs.google.com/document/u/0/"
},
"open_tabs": [],
"memories": [
"Uses a standing desk while working from home",
"Uses meal-prep for busy weekdays",
"Uses meal-prep for busy weekdays"
],
"date": "2025-11-21",
"uuid": "ec664713-f7f0-442b-ba20-3cffe351f5dd",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Sony WH-1000XM5 Wireless Headphones - Amazon",
"url": "https://www.amazon.com/Sony-WH-1000XM5/dp/B09XS"
},
"open_tabs": [],
"memories": [
"Seeks best deals on Wayfair furniture",
"Shops gluten-free grocery brands",
"Owns a rescue dog"
],
"date": "2025-11-21",
"uuid": "203af71c-cb77-4bfa-8e70-bc74af803141",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
},
"open_tabs": [],
"memories": [
"Studies Japanese language",
"Reads books from Goodreads community",
"Follows ketogenic meal plans"
],
"date": "2025-11-21",
"uuid": "b1cbfaf6-e3f2-4173-9691-a4c8fcc38202",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Vintage Levi's 501 Jeans - eBay",
"url": "https://www.ebay.com/itm/123456789"
},
"open_tabs": [],
"memories": [
"Seeks best deals on Wayfair furniture",
"Shops gluten-free grocery brands",
"Writes detailed product reviews online"
],
"date": "2025-11-21",
"uuid": "cc753a00-88fe-4613-83f9-ed7b1d634e60",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Coursera - Machine Learning by Andrew Ng",
"url": "https://www.coursera.org/learn/machine-learning"
},
"open_tabs": [],
"memories": [
"Studies Japanese language",
"Reads books from Goodreads community",
"Plays pickup basketball every weekend"
],
"date": "2025-11-21",
"uuid": "4f59965d-819d-4c5f-8320-1635b4e127b2",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Herman Miller Aeron Chair - Configuration",
"url": "https://store.hermanmiller.com/office-chairs-aeron/2195348.html"
},
"open_tabs": [],
"memories": [
"Seeks best deals on Wayfair furniture",
"Shops gluten-free grocery brands",
"Prefers budget-friendly solutions for house upgrades"
],
"date": "2025-11-21",
"uuid": "77522969-3d16-43dc-87bf-38069bd2815a",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Introduction to Linear Algebra - MIT OpenCourseWare",
"url": "https://ocw.mit.edu/courses/mathematics/18-06-linear-algebra"
},
"open_tabs": [],
"memories": [
"Studies Japanese language",
"Reads books from Goodreads community",
"Collects vintage vinyl records"
],
"date": "2025-11-21",
"uuid": "3c2d908d-4c09-4134-83cb-440374dc57c0",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Dyson V15 Detect Vacuum",
"url": "https://www.dyson.com/vacuum-cleaners/cordless/v15"
},
"open_tabs": [],
"memories": [
"Seeks best deals on Wayfair furniture",
"Shops gluten-free grocery brands",
"Uses a standing desk at home"
],
"date": "2025-11-21",
"uuid": "c6006d75-f646-4e0d-a700-078b007ccb11",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Vintage Levi's 501 Jeans - eBay",
"url": "https://www.ebay.com/itm/123456789"
},
"open_tabs": [],
"memories": [
"Seeks best deals on Wayfair furniture",
"Shops gluten-free grocery brands",
"Studies Japanese language"
],
"date": "2025-11-21",
"uuid": "b40dbac1-9869-4198-8b7f-73e9d7c8356b",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Duolingo - Japanese Lesson 3",
"url": "https://www.duolingo.com/lesson/ja/3"
},
"open_tabs": [],
"memories": [
"Studies Japanese language",
"Reads books from Goodreads community",
"Garden enthusiast grows vegetables yearly"
],
"date": "2025-11-21",
"uuid": "5471f5f6-04f3-4ea5-897f-fd428e5d7622",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Herman Miller Aeron Chair - Configuration",
"url": "https://store.hermanmiller.com/office-chairs-aeron/2195348.html"
},
"open_tabs": [],
"memories": [
"Seeks best deals on Wayfair furniture",
"Shops gluten-free grocery brands",
"Uses a standing desk at home"
],
"date": "2025-11-21",
"uuid": "9b58021b-c1e0-478e-9461-eed211024a5a",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "MDN Web Docs - Array.prototype.map()",
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map"
},
"open_tabs": [],
"memories": [
"Enjoys baking sourdough bread",
"Does weekend home improvement projects"
],
"date": "2025-11-21",
"uuid": "4c9656c9-0618-4a70-9e2d-288b894113c6",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "GitHub - microsoft/vscode: Visual Studio Code",
"url": "https://github.com/microsoft/vscode"
},
"open_tabs": [],
"memories": [
"Enjoys baking sourdough bread",
"Does weekend home improvement projects"
],
"date": "2025-11-21",
"uuid": "06d411dd-f7e9-404f-95a1-a4761722cae1",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "McDonald's Menu",
"url": "https://www.mcdonalds.com"
},
"open_tabs": [],
"memories": [
"Shops gluten-free grocery brands",
"Prefers plant-based meal delivery"
],
"date": "2025-11-21",
"uuid": "cb32ae95-eb64-4939-bf57-48634eb049a2",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Python 3.12 Documentation - asyncio",
"url": "https://docs.python.org/3/library/asyncio.html"
},
"open_tabs": [],
"memories": [
"Enjoys baking sourdough bread",
"Does weekend home improvement projects"
],
"date": "2025-11-21",
"uuid": "a3398380-28d9-4072-b56c-b68b521d648f",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "MDN Web Docs - Array.prototype.map()",
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map"
},
"open_tabs": [
{
"title": "Breaking News: Market Hits Record High - NYT",
"url": "https://www.nytimes.com/2025/11/21/business/markets.html"
},
{
"title": "Reddit - r/worldnews",
"url": "https://www.reddit.com/r/worldnews/"
},
{
"title": "RTX 4090 Graphics Card - Newegg",
"url": "https://www.newegg.com/p/N82E168141"
}
],
"memories": [
"Drinks espresso every morning",
"Follows home design and woodworking creators on social media",
"Uses meal-prep for busy weekdays",
"Enjoys noir detective novels"
],
"date": "2025-11-21",
"uuid": "0aa2dbad-10bb-4100-ab4e-aab81d4b4572",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Vintage Levi's 501 Jeans - eBay",
"url": "https://www.ebay.com/itm/123456789"
},
"open_tabs": [
{
"title": "Coursera - Machine Learning by Andrew Ng",
"url": "https://www.coursera.org/learn/machine-learning"
},
{
"title": "Untitled Document - Google Docs",
"url": "https://docs.google.com/document/u/0/"
},
{
"title": "AWS Console - EC2 Dashboard",
"url": "https://us-east-1.console.aws.amazon.com/ec2/v2/home"
}
],
"memories": [
"Attends local farmers markets",
"Uses StoryGraph to analyze reading habits and find recommendations",
"Does weekend home improvement projects",
"Plays pickup basketball every weekend",
"Uses a mechanical keyboard for daily typing",
"Garden enthusiast grows vegetables yearly",
"Compares sturdy car seats for safety",
"Writes detailed reviews and rates novels after finishing them"
],
"date": "2025-11-21",
"uuid": "3aed75ab-2617-48aa-a339-7d5f5307c8c8",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Organic Coffee Beans 1kg - Whole Foods",
"url": "https://www.wholefoodsmarket.com/product/organic-coffee"
},
"open_tabs": [
{
"title": "Symptoms of Anxiety Disorders - WebMD",
"url": "https://www.webmd.com/anxiety-panic/guide/anxiety-disorders"
},
{
"title": "Khan Academy - Calculus 1",
"url": "https://www.khanacademy.org/math/calculus-1"
}
],
"memories": [
"Prefers gaming on a PlayStation console",
"Plants native pollinator gardens",
"Reads Wirecutter for product reviews",
"Uses a standing desk while working from home"
],
"date": "2025-11-21",
"uuid": "bfe8583f-c617-45e0-9f01-8d408bc36529",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Inbox (12) - johndoe@gmail.com - Gmail",
"url": "https://mail.google.com/mail/u/0/#inbox"
},
"open_tabs": [
{
"title": "Discord | #raid-planning | MyGuild",
"url": "https://discord.com/channels/123/456"
},
{
"title": "Symptoms of Anxiety Disorders - WebMD",
"url": "https://www.webmd.com/anxiety-panic/guide/anxiety-disorders"
},
{
"title": "Python 3.12 Documentation - asyncio",
"url": "https://docs.python.org/3/library/asyncio.html"
}
],
"memories": [
"Enjoys noir detective novels",
"Compares sturdy car seats for safety",
"Plans excursions using Viator tours",
"Prefers gaming on a PlayStation console",
"Plays pickup basketball every weekend",
"Participates in online book clubs and discussion forums",
"Plays pickup basketball on weekends",
"Shops gluten-free grocery brands"
],
"date": "2025-11-21",
"uuid": "56ea0c87-f47b-476d-bfb0-b820124b9e29",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Klea Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/klea-dress/127356007.html"
},
"open_tabs": [
{
"title": "Tinder - Messages",
"url": "https://tinder.com/app/messages"
},
{
"title": "Sony WH-1000XM5 Wireless Headphones - Amazon",
"url": "https://www.amazon.com/Sony-WH-1000XM5/dp/B09XS"
},
{
"title": "Figma - App Design System V2",
"url": "https://www.figma.com/file/123/Design-System"
},
{
"title": "The Verge - Review: iPhone 17",
"url": "https://www.theverge.com/2025/11/iphone-17-review"
}
],
"memories": [
"Drinks espresso every morning",
"Uses a mechanical keyboard for daily typing",
"Plays pickup basketball weekly",
"Owns basic power tools like a drill and circular saw"
],
"date": "2025-11-21",
"uuid": "958d6c00-ebfa-4697-9cb4-1c11cbd7bda0",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Tinder - Messages",
"url": "https://tinder.com/app/messages"
},
"open_tabs": [
{
"title": "Introduction to Linear Algebra - MIT OpenCourseWare",
"url": "https://ocw.mit.edu/courses/mathematics/18-06-linear-algebra"
},
{
"title": "Organic Coffee Beans 1kg - Whole Foods",
"url": "https://www.wholefoodsmarket.com/product/organic-coffee"
},
{
"title": "Used 2018 Honda Civic - Autotrader",
"url": "https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=682"
},
{
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
}
],
"memories": [
"Participates in online book clubs and discussion forums",
"Watches live sports regularly",
"Prefers budget-friendly solutions for house upgrades",
"Compares sturdy car seats for safety",
"Collects vintage vinyl records",
"Enjoys astrophotography on clear summer nights",
"Prefers dark mode on apps"
],
"date": "2025-11-21",
"uuid": "ca44acb3-b20b-47f7-b302-ca6a3068ecfb",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Untitled Document - Google Docs",
"url": "https://docs.google.com/document/u/0/"
},
"open_tabs": [
{
"title": "Duolingo - Japanese Lesson 3",
"url": "https://www.duolingo.com/lesson/ja/3"
},
{
"title": "Klea Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/klea-dress/127356007.html"
},
{
"title": "Python 3.12 Documentation - asyncio",
"url": "https://docs.python.org/3/library/asyncio.html"
},
{
"title": "Python 3.12 Documentation - asyncio",
"url": "https://docs.python.org/3/library/asyncio.html"
}
],
"memories": [
"Follows home design and woodworking creators on social media",
"Enjoys noir detective novels",
"Drives a manual transmission car",
"Compares sturdy car seats for safety",
"Uses a mechanical keyboard for daily typing",
"Follows Formula 1 racing news",
"Uses a standing desk at home",
"Does weekend home improvement projects"
],
"date": "2025-11-21",
"uuid": "72c3aa92-d6b5-430b-aa4a-82c5a4641b1a",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Global Warming Effects on Agriculture - BBC",
"url": "https://www.bbc.com/news/science-environment-123456"
},
"open_tabs": [
{
"title": "Chase Bank - Account Summary",
"url": "https://secure.chase.com/web/auth/dashboard"
},
{
"title": "Figma - App Design System V2",
"url": "https://www.figma.com/file/123/Design-System"
}
],
"memories": [
"Writes detailed reviews and rates novels after finishing them",
"Seeks best deals on Wayfair furniture",
"Uses a standing desk while working from home",
"Watches live sports regularly",
"Plans excursions using Viator tours",
"Uses StoryGraph to analyze reading habits and find recommendations",
"Enjoys astrophotography on clear summer nights",
"Plays pickup basketball every weekend"
],
"date": "2025-11-21",
"uuid": "768a421a-7ca3-4e0e-b984-5bb303f49fae",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "LinkedIn Feed",
"url": "https://www.linkedin.com/feed/"
},
"open_tabs": [
{
"title": "Vintage Levi's 501 Jeans - eBay",
"url": "https://www.ebay.com/itm/123456789"
},
{
"title": "Twitter / X - Home",
"url": "https://twitter.com/home"
},
{
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
},
{
"title": "Notion - Personal Wiki",
"url": "https://www.notion.so/Personal-Wiki-123"
},
{
"title": "Q4 Financial Roadmap - Google Sheets",
"url": "https://docs.google.com/spreadsheets/d/1XyZ.../edit"
}
],
"memories": [
"Participates in online book clubs and discussion forums",
"Follows Formula 1 racing news",
"Shops gluten-free grocery brands",
"Uses a mechanical keyboard for daily typing"
],
"date": "2025-11-21",
"uuid": "c40a3f17-2d7f-4108-ad8c-0b6e5912375c",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Notion - Personal Wiki",
"url": "https://www.notion.so/Personal-Wiki-123"
},
"open_tabs": [
{
"title": "Untitled Document - Google Docs",
"url": "https://docs.google.com/document/u/0/"
},
{
"title": "Organic Coffee Beans 1kg - Whole Foods",
"url": "https://www.wholefoodsmarket.com/product/organic-coffee"
},
{
"title": "Breaking News: Market Hits Record High - NYT",
"url": "https://www.nytimes.com/2025/11/21/business/markets.html"
},
{
"title": "Symptoms of Anxiety Disorders - WebMD",
"url": "https://www.webmd.com/anxiety-panic/guide/anxiety-disorders"
}
],
"memories": [
"Subscribes to multiple streaming services",
"Uses a standing desk at home",
"Seeks best deals on Wayfair furniture",
"Listens to ambient electronic music while working",
"Studies Japanese language"
],
"date": "2025-11-21",
"uuid": "fe807c91-7bb0-4caa-8c93-1eb476d6c4e9",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "MDN Web Docs - Array.prototype.map()",
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map"
},
"open_tabs": [
{
"title": "GitHub - microsoft/vscode: Visual Studio Code",
"url": "https://github.com/microsoft/vscode"
},
{
"title": "Q4 Financial Roadmap - Google Sheets",
"url": "https://docs.google.com/spreadsheets/d/1XyZ.../edit"
}
],
"memories": [
"Uses a mechanical keyboard for daily typing",
"Attends local farmers markets",
"Reads books from Goodreads community"
],
"date": "2025-11-21",
"uuid": "e2eac8c2-88ea-4904-8b68-3cbaa0e154a0",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Divorce Attorney Consultation - LegalZoom",
"url": "https://www.legalzoom.com/personal/marriage-divorce/divorce-overview.html"
},
"open_tabs": [
{
"title": "Herman Miller Aeron Chair - Configuration",
"url": "https://store.hermanmiller.com/office-chairs-aeron/2195348.html"
},
{
"title": "GitHub - microsoft/vscode: Visual Studio Code",
"url": "https://github.com/microsoft/vscode"
},
{
"title": "Symptoms of Anxiety Disorders - WebMD",
"url": "https://www.webmd.com/anxiety-panic/guide/anxiety-disorders"
},
{
"title": "Used 2018 Honda Civic - Autotrader",
"url": "https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=682"
}
],
"memories": [
"Prefers tea over coffee in the morning",
"Attends local farmers markets",
"Listens to ambient electronic music while working",
"Uses StoryGraph to analyze reading habits and find recommendations",
"Reads books from Goodreads community"
],
"date": "2025-11-21",
"uuid": "121d1a1f-5f3a-4cb6-8546-22ed64f2a1c7",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Breaking News: Market Hits Record High - NYT",
"url": "https://www.nytimes.com/2025/11/21/business/markets.html"
},
"open_tabs": [
{
"title": "Coursera - Machine Learning by Andrew Ng",
"url": "https://www.coursera.org/learn/machine-learning"
},
{
"title": "LinkedIn Feed",
"url": "https://www.linkedin.com/feed/"
}
],
"memories": [
"Plants native pollinator gardens",
"Attends local farmers markets",
"Collects Funko Pop vinyl figures"
],
"date": "2025-11-21",
"uuid": "e7c38c08-382e-4814-ab70-0cda78a5f9f0",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Untitled Document - Google Docs",
"url": "https://docs.google.com/document/u/0/"
},
"open_tabs": [
{
"title": "JIRA - PROJ-1024: Fix Login Bug",
"url": "https://company.atlassian.net/browse/PROJ-1024"
},
{
"title": "Symptoms of Anxiety Disorders - WebMD",
"url": "https://www.webmd.com/anxiety-panic/guide/anxiety-disorders"
}
],
"memories": [
"Plays pickup basketball on weekends",
"Uses a mechanical keyboard for daily typing",
"Enjoys baking sourdough bread"
],
"date": "2025-11-21",
"uuid": "4daf0353-d862-4e13-aec7-e93fa60bf606",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Docker Hub - postgres",
"url": "https://hub.docker.com/_/postgres"
},
"open_tabs": [
{
"title": "Facebook - John Smith's Profile",
"url": "https://www.facebook.com/john.smith.123"
},
{
"title": "Duolingo - Japanese Lesson 3",
"url": "https://www.duolingo.com/lesson/ja/3"
},
{
"title": "Discord | #raid-planning | MyGuild",
"url": "https://discord.com/channels/123/456"
},
{
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
},
{
"title": "Introduction to Linear Algebra - MIT OpenCourseWare",
"url": "https://ocw.mit.edu/courses/mathematics/18-06-linear-algebra"
}
],
"memories": [
"Watches live sports regularly",
"Browses recipes on Taste.com.au",
"Plans excursions using Viator tours",
"Buys eco-friendly household cleaning supplies",
"Shops gluten-free grocery brands",
"Uses a standing desk while working from home"
],
"date": "2025-11-21",
"uuid": "4f4a78d0-9cb6-4f5b-aac1-7d1f6af11fc6",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Tinder - Messages",
"url": "https://tinder.com/app/messages"
},
"open_tabs": [
{
"title": "AWS Console - EC2 Dashboard",
"url": "https://us-east-1.console.aws.amazon.com/ec2/v2/home"
},
{
"title": "Dyson V15 Detect Vacuum",
"url": "https://www.dyson.com/vacuum-cleaners/cordless/v15"
},
{
"title": "GitHub - microsoft/vscode: Visual Studio Code",
"url": "https://github.com/microsoft/vscode"
},
{
"title": "RTX 4090 Graphics Card - Newegg",
"url": "https://www.newegg.com/p/N82E168141"
},
{
"title": "Inbox (12) - johndoe@gmail.com - Gmail",
"url": "https://mail.google.com/mail/u/0/#inbox"
}
],
"memories": [
"Buys eco-friendly household cleaning supplies",
"Collects vintage vinyl records",
"Participates in online book clubs and discussion forums",
"Reads books from Goodreads community",
"Watches DIY home renovation videos",
"Reads Wirecutter for product reviews",
"Seeks best deals on Wayfair furniture",
"Does weekend home improvement projects"
],
"date": "2025-11-21",
"uuid": "1ed410bd-9edc-409e-ade6-789270a1aed2",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Duolingo - Japanese Lesson 3",
"url": "https://www.duolingo.com/lesson/ja/3"
},
"open_tabs": [
{
"title": "Klea Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/klea-dress/127356007.html"
},
{
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
}
],
"memories": [
"Uses a standing desk while working from home",
"Studies Japanese language",
"Browses recipes on Taste.com.au",
"Writes detailed reviews and rates novels after finishing them"
],
"date": "2025-11-21",
"uuid": "123790af-609f-4942-9cc3-b000b3eac8f6",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
},
"open_tabs": [
{
"title": "JIRA - PROJ-1024: Fix Login Bug",
"url": "https://company.atlassian.net/browse/PROJ-1024"
},
{
"title": "Q4 Financial Roadmap - Google Sheets",
"url": "https://docs.google.com/spreadsheets/d/1XyZ.../edit"
},
{
"title": "GitHub - microsoft/vscode: Visual Studio Code",
"url": "https://github.com/microsoft/vscode"
},
{
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
},
{
"title": "Python 3.12 Documentation - asyncio",
"url": "https://docs.python.org/3/library/asyncio.html"
}
],
"memories": [
"Does weekend home improvement projects",
"Owns a rescue dog",
"Prefers tea over coffee in the morning",
"Studies Japanese language",
"Plays pickup basketball every weekend",
"Plants native pollinator gardens",
"Watches DIY home renovation videos"
],
"date": "2025-11-21",
"uuid": "f009241b-54b0-4a32-bc09-cbad784fc4fe",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Coursera - Machine Learning by Andrew Ng",
"url": "https://www.coursera.org/learn/machine-learning"
},
"open_tabs": [
{
"title": "Twitter / X - Home",
"url": "https://twitter.com/home"
},
{
"title": "Figma - App Design System V2",
"url": "https://www.figma.com/file/123/Design-System"
},
{
"title": "Tinder - Messages",
"url": "https://tinder.com/app/messages"
},
{
"title": "AWS Console - EC2 Dashboard",
"url": "https://us-east-1.console.aws.amazon.com/ec2/v2/home"
}
],
"memories": [
"Prefers plant-based meal delivery",
"Garden enthusiast grows vegetables yearly",
"Reads Wirecutter for product reviews",
"Collects vintage vinyl records"
],
"date": "2025-11-21",
"uuid": "49b81714-2cfd-4e45-a0de-392bb151bfc7",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Klea Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/klea-dress/127356007.html"
},
"open_tabs": [
{
"title": "JIRA - PROJ-1024: Fix Login Bug",
"url": "https://company.atlassian.net/browse/PROJ-1024"
},
{
"title": "General / #random - Slack",
"url": "https://app.slack.com/client/T12345/C12345"
},
{
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
},
{
"title": "Facebook - John Smith's Profile",
"url": "https://www.facebook.com/john.smith.123"
}
],
"memories": [
"Uses StoryGraph to analyze reading habits and find recommendations",
"Uses a standing desk at home",
"Prefers tea over coffee in the morning",
"Uses meal-prep for busy weekdays",
"Owns basic power tools like a drill and circular saw",
"Cooks Mediterranean seafood from TasteAtlas recipes"
],
"date": "2025-11-21",
"uuid": "8885dc21-91a9-4839-84f6-ebecc90cb95a",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Divorce Attorney Consultation - LegalZoom",
"url": "https://www.legalzoom.com/personal/marriage-divorce/divorce-overview.html"
},
"open_tabs": [
{
"title": "Chase Bank - Account Summary",
"url": "https://secure.chase.com/web/auth/dashboard"
}
],
"memories": ["Prefers dark mode on apps"],
"date": "2025-11-21",
"uuid": "78dd88ca-0faf-46d9-8cfd-9d05c958901c",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Symptoms of Anxiety Disorders - WebMD",
"url": "https://www.webmd.com/anxiety-panic/guide/anxiety-disorders"
},
"open_tabs": [
{
"title": "Tinder - Messages",
"url": "https://tinder.com/app/messages"
}
],
"memories": ["Prefers dark mode on apps", "Researches lamps for eye strain"],
"date": "2025-11-21",
"uuid": "9fa5b3f8-d37d-4b1a-b522-6046bb226415",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Tinder - Messages",
"url": "https://tinder.com/app/messages"
},
"open_tabs": [
{
"title": "Solid Earth Sciences | Scientific Reports",
"url": "https://www.nature.com/subjects/solid-earth-sciences/"
}
],
"memories": [
"Seeks best deals on Wayfair furniture",
"Prefers budget-friendly solutions for house upgrades",
"Reads books from Goodreads community",
"Uses a standing desk at home",
"Cooks Mediterranean seafood from TasteAtlas recipes",
"Plans excursions using Viator tours",
"Reads Wirecutter for product reviews",
"Follows ketogenic meal plans"
],
"date": "2025-11-21",
"uuid": "59b3ae80-8fdb-4fbf-911e-7618e92e8c97",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "JSTOR: The effects of sleep on memory",
"url": "https://www.jstor.org/stable/12345"
},
"open_tabs": [
{
"title": "Solid Earth Sciences | Scientific Reports",
"url": "https://www.nature.com/subjects/solid-earth-sciences/"
}
],
"memories": [
"Cooks Mediterranean seafood from TasteAtlas recipes",
"Does weekend home improvement projects",
"Plays pickup basketball on weekends",
"Uses a standing desk while working from home",
"Garden enthusiast grows vegetables yearly",
"Follows Formula 1 racing news",
"Buys eco-friendly household cleaning supplies",
"Owns a rescue dog"
],
"date": "2025-11-21",
"uuid": "eebd28d6-4cff-425f-b1dc-ecbc8b12b110",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "The Traditional Latkes Recipe I Always Come Back To | Saveur",
"url": "https://www.saveur.com/culture/traditional-latkes-recipe/?utm_source=firefox-newtab-en-us"
},
"open_tabs": [],
"memories": [
"Collects Funko Pop vinyl figures",
"Reads books from Goodreads community",
"Prefers plant-based meal delivery",
"Writes detailed reviews and rates novels after finishing them",
"Reads Wirecutter for product reviews",
"Tracks reading goals and progress with digital tools",
"Uses a standing desk at home",
"Compares sturdy car seats for safety"
],
"date": "2025-11-21",
"uuid": "26b8ae99-5765-4b35-876d-15d326dbbe8f",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Fanduel Ontario | Fanduel",
"url": "https://www.fanduel.com/canada-search-ns1000"
},
"open_tabs": [
{
"title": "Solid Earth Sciences | Scientific Reports",
"url": "https://www.nature.com/subjects/solid-earth-sciences/"
}
],
"memories": [
"Prefers budget-friendly solutions for house upgrades",
"Prefers gaming on a PlayStation console",
"Collects Funko Pop vinyl figures",
"Garden enthusiast grows vegetables yearly",
"Writes detailed reviews and rates novels after finishing them",
"Owns basic power tools like a drill and circular saw",
"Plays pickup basketball every weekend",
"Compares sturdy car seats for safety"
],
"date": "2025-11-21",
"uuid": "d67ee222-2a48-4fdd-98ed-e4c4e86ef3dd",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Russian Revolution - Wikipedia",
"url": "https://en.wikipedia.org/wiki/Russian_Revolution"
},
"open_tabs": [
{
"title": "Fanduel Ontario | Fanduel",
"url": "https://www.fanduel.com/canada-search-ns1000"
}
],
"memories": [
"Prefers plant-based meal delivery",
"Plays pickup basketball on weekends",
"Drinks espresso every morning",
"Compares sturdy car seats for safety",
"Reads books from Goodreads community",
"Follows ketogenic meal plans",
"Shops gluten-free grocery brands",
"Browses recipes on Taste.com.au"
],
"date": "2025-11-21",
"uuid": "887f586a-d74d-4cae-a0c0-0f80533e25a0",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "chocolate cake recipes - Google Search",
"url": "https://www.google.com/search?client=firefox-b-d&q=cake+recipes"
},
"open_tabs": [
{
"title": "Russian Revolution - Wikipedia",
"url": "https://en.wikipedia.org/wiki/Russian_Revolution"
}
],
"memories": [
"Watches live sports regularly",
"Uses a mechanical keyboard for daily typing",
"Prefers tea over coffee in the morning",
"Participates in online book clubs and discussion forums",
"Cooks Mediterranean seafood from TasteAtlas recipes",
"Prefers gaming on a PlayStation console",
"Owns a rescue dog",
"Drives a manual transmission car"
],
"date": "2025-11-21",
"uuid": "aceba1b3-a800-4b06-9521-a86b3c862a5c",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Netflix Canada - Watch TV Shows Online, Watch Movies Online",
"url": "https://www.netflix.com/ca/"
},
"open_tabs": [
{
"title": "Memory Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/memory-dress/130702.html?color=18891"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "d3225d90-0e55-406a-9a66-545b2dfd838f",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "These CATS are too FUNNY! The Funniest Cat Moments of the Year 2025 - YouTube",
"url": "https://www.youtube.com/watch?v=MUsUdU4YQJE"
},
"open_tabs": [
{
"title": "Amazon.ca: Amazon Basics",
"url": "https://www.amazon.ca/stores/page/A99D7218-C1F4-42C0-ABF4-05A153EF2C61/search?ingress=0&visitId=c0eb5401-a886-4ff4-99f9-2b6f6f735e4e&channel=discovbar&ref_=nav_cs_amazonbasics&terms=clothes%20hangers"
},
{
"title": "How to Refinish Hardwood Floors to Give Your Home a New Look",
"url": "https://www.familyhandyman.com/project/how-to-refinish-hardwood-floors/"
},
{
"title": "[2601.11237] Likelihood-Based Ergodicity Transformations in Time Series Analysis",
"url": "https://arxiv.org/abs/2601.11237"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "30135ef9-3a0e-4e5b-8c39-b9cb29e3e186",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Big Black Car \u2022 Gregory Alan Isakov",
"url": "https://open.spotify.com/album/06UoTVgpPiGnRPGjowrG3g"
},
"open_tabs": [
{
"title": "Gregory Alan Isakov - Spotify Artist",
"url": "https://open.spotify.com/artist/5s81T6y"
},
{
"title": "Indie Folk Chill - Spotify Playlist",
"url": "https://open.spotify.com/playlist/indiefolk"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "61d92d49-93e2-42fb-82dd-78c0ed77b3aa",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Papa's Freezeria - Play it Online at Coolmath Games",
"url": "https://www.coolmathgames.com/0-papas-freezeria#immersiveModal"
},
"open_tabs": [
{
"title": "Papa's Pizzeria - Coolmath Games",
"url": "https://www.coolmathgames.com/0-papas-pizzeria"
},
{
"title": "Run 3 - Play it now at Coolmath Games",
"url": "https://www.coolmathgames.com/0-run-3"
},
{
"title": "Fireboy and Watergirl - Coolmath Games",
"url": "https://www.coolmathgames.com/0-fireboy-watergirl-forest-temple"
}
],
"memories": [
"Reads film criticism from online magazines and podcasts",
"Is a single-income household parent",
"Enjoys hiking in national parks",
"Streams pop music playlists on Amazon",
"Speaks conversational Spanish",
"Uses a mechanical keyboard at work",
"Prefers organic pest control methods over synthetic chemicals"
],
"date": "2026-01-19",
"uuid": "63ebbf2a-a842-4231-9d44-4313fd094161",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "(1) Facebook",
"url": "https://www.facebook.com/"
},
"open_tabs": [
{
"title": "Messenger",
"url": "https://www.messenger.com/"
},
{
"title": "Marketplace - Facebook",
"url": "https://www.facebook.com/marketplace/"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "6955a8f6-5fa4-4012-a2ec-cffc49e4d96b",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "(oc) My donkey Forest keeping our piglets warm in his arms : r/Eyebleach",
"url": "https://www.reddit.com/r/Eyebleach/comments/1qgna0j/oc_my_donkey_forest_keeping_our_piglets_warm_in/"
},
"open_tabs": [
{
"title": "History of Art | University of Oxford",
"url": "https://www.ox.ac.uk/admissions/undergraduate/courses/course-listing/history-art"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "c2ebd111-72aa-4014-b062-65a969cb3fd4",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Anthony Enzor-DeMeo - Mozilla | LinkedIn",
"url": "https://www.linkedin.com/in/anthonyed"
},
"open_tabs": [
{
"title": "Mozilla: Overview | LinkedIn",
"url": "https://www.linkedin.com/company/mozilla-corporation/"
},
{
"title": "My Network | LinkedIn",
"url": "https://www.linkedin.com/mynetwork/"
}
],
"memories": [
"Books stays via Airbnb listings",
"Enjoys hiking in national parks"
],
"date": "2026-01-19",
"uuid": "bf6a8f4b-e241-47ff-9a2d-b1931e5f2f44",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "15,000+ Software Engineer jobs in San Francisco Bay Area",
"url": "https://ca.linkedin.com/jobs/search?keywords=Software%20Engineer&location=San%20Francisco%20Bay%20Area&geoId=90000084&trk=public_jobs_jobs-search-bar_search-submit&position=1&pageNum=0"
},
"open_tabs": [
{
"title": "Senior Software Engineer - Google | LinkedIn",
"url": "https://www.linkedin.com/jobs/view/google-swe-12345"
},
{
"title": "Saved Jobs | LinkedIn",
"url": "https://www.linkedin.com/my-items/saved-jobs/"
},
{
"title": "Software Developer - OpenAI | LinkedIn",
"url": "https://www.linkedin.com/jobs/view/openai-dev-67890"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "e04d8208-a786-41f0-9f60-76ae7b311e22",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Real Estate Crash Weighs on China\u2019s Economic Growth - The New York Times",
"url": "https://www.nytimes.com/2026/01/18/business/china-gdp-economy.html"
},
"open_tabs": [
{
"title": "Global Markets Rally Amid Economic Shifts - WSJ",
"url": "https://www.wsj.com/economy/global-markets-2026"
},
{
"title": "China's Property Crisis Explained - BBC News",
"url": "https://www.bbc.com/news/business-china-real-estate"
}
],
"memories": [
"Reads film criticism from online magazines and podcasts",
"Researches ancient Roman history",
"Garden enthusiast grows vegetables yearly",
"Uses a mechanical keyboard at work"
],
"date": "2026-01-19",
"uuid": "de49ea3f-3fb2-4b8a-a903-32904324fa94",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "NHL Scores | Jan 19, 2026 | NHL.com",
"url": "https://www.nhl.com/scores/2026-01-19"
},
"open_tabs": [
{
"title": "NHL Standings 2025-2026 | NHL.com",
"url": "https://www.nhl.com/standings/2026"
},
{
"title": "Toronto Maple Leafs vs. Boston Bruins Recap | NHL.com",
"url": "https://www.nhl.com/gamecenter/tor-vs-bos/2026/01/19"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "20489a1c-c385-40ec-ae42-a0542a47b367",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Mookie confirms 2032 season will be his last",
"url": "https://www.mlb.com/news/mookie-betts-to-retire-after-2032-season"
},
"open_tabs": [
{
"title": "Los Angeles Dodgers Team Roster | MLB.com",
"url": "https://www.mlb.com/dodgers/roster"
},
{
"title": "MLB Trade Rumors - Latest News",
"url": "https://www.mlbtraderumors.com/"
}
],
"memories": [
"Listens to classic rock",
"Cares for elderly parent at home",
"Freelance graphic designer who works remotely",
"Practices meditation daily",
"Compares mortgage rates online",
"Shops local farmers markets weekly",
"Streams pop music playlists on Amazon"
],
"date": "2026-01-19",
"uuid": "a486581f-e7ab-40c7-ae4b-5a1c41111a4c",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Russian Revolution - Wikipedia",
"url": "https://en.wikipedia.org/wiki/Russian_Revolution"
},
"open_tabs": [
{
"title": "Vladimir Lenin - Wikipedia",
"url": "https://en.wikipedia.org/wiki/Vladimir_Lenin"
},
{
"title": "Bolsheviks - Wikipedia",
"url": "https://en.wikipedia.org/wiki/Bolsheviks"
},
{
"title": "Nicholas II of Russia - Wikipedia",
"url": "https://en.wikipedia.org/wiki/Nicholas_II_of_Russia"
}
],
"memories": [
"Is parent of young children",
"Prefers plant-based meal options",
"Is a single-income household parent",
"Uses an Android smartphone",
"Subscribes to Blue Apron meals",
"Attends weekend fitness bootcamps",
"Prefers plant-based meal delivery"
],
"date": "2026-01-19",
"uuid": "06ce35db-462f-4f9e-b0a9-462a1a4e27e2",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Quantum Science, Networking, and Communications | UChicago",
"url": "https://professional.uchicago.edu/lp/quantum-science-networking-communications/rfi?gad_source=1&gad_campaignid=22174193418&gclid=EAIaIQobChMIstvC7YaYkgMVYyfUAR3veA0UEAAYAiAAEgI3wfD_BwE&utm_source=FY25_uchicago_ucpe_qs_google_search_prospect&utm_medium=paid_search&utm_campaign=22174193418&utm_content=173863857043&utm_term=quantum%20physics"
},
"open_tabs": [
{
"title": "Introduction to Quantum Mechanics - MIT OpenCourseWare",
"url": "https://ocw.mit.edu/courses/physics/quantum-mechanics-i/"
},
{
"title": "Quantum Computing Certifications | Coursera",
"url": "https://www.coursera.org/courses?query=quantum%20computing"
}
],
"memories": [
"Uses Sephora for beauty buys",
"Values environmentally sustainable and cruelty-free food choices",
"Freelance graphic designer who works remotely",
"Accesses PubMed for clinical literature",
"Keeps a pet cat"
],
"date": "2026-01-19",
"uuid": "5a1d2734-e5d2-4388-98d9-a820cc46cca8",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "[2601.11237] Likelihood-Based Ergodicity Transformations in Time Series Analysis",
"url": "https://arxiv.org/abs/2601.11237"
},
"open_tabs": [
{
"title": "Time Series Forecasting with Transformers - arXiv",
"url": "https://arxiv.org/abs/2001.08317"
},
{
"title": "Google Scholar: Ergodicity Transformations",
"url": "https://scholar.google.com/scholar?q=ergodicity+transformations"
},
{
"title": "Papers with Code - Time Series Analysis",
"url": "https://paperswithcode.com/task/time-series-analysis"
}
],
"memories": [
"Shops vintage clothing on Etsy",
"Freelance graphic designer who works remotely",
"Enjoys hiking in national parks",
"Listens to classic rock",
"Prefers gluten-free artisan baked goods",
"Cooks Mediterranean seafood from TasteAtlas recipes",
"Watches DIY home renovation videos",
"Subscribes to Blue Apron meals"
],
"date": "2026-01-19",
"uuid": "13c88111-d4e4-42b7-b49f-c7faa4ea2a90",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Amazon.ca: Amazon Basics",
"url": "https://www.amazon.ca/stores/page/A99D7218-C1F4-42C0-ABF4-05A153EF2C61/search?ingress=0&visitId=c0eb5401-a886-4ff4-99f9-2b6f6f735e4e&channel=discovbar&ref_=nav_cs_amazonbasics&terms=clothes%20hangers"
},
"open_tabs": [
{
"title": "Amazon Basics Adjustable Garment Rack - Amazon.ca",
"url": "https://www.amazon.ca/dp/B00H7P1GPO"
},
{
"title": "Amazon.ca Shopping Cart",
"url": "https://www.amazon.ca/gp/cart/view.html"
},
{
"title": "Premium Velvet Hangers 50 Pack - Amazon.ca",
"url": "https://www.amazon.ca/dp/B012345678"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "ac35dcf6-6658-4423-98d2-e7bb83704b3b",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Frankie Silk Dress",
"url": "https://www.thereformation.com/products/frankie-silk-dress/1304134LYI.html?_gl=1*1lfyacn*_up*MQ..*_gs*MQ..&gclid=CjwKCAiAybfLBhAjEiwAI0mBBphrwnHloCaZcEiomMLgKZiIobNiLsag7Fva-3m6RU3fMYh6M_usaRoCQ_0QAvD_BwE&dwvar_1304134LYI_color=POR&quantity=1"
},
"open_tabs": [
{
"title": "Anthony Enzor-DeMeo - Mozilla | LinkedIn",
"url": "https://www.linkedin.com/in/anthonyed"
},
{
"title": "15,000+ Software Engineer jobs in San Francisco Bay Area",
"url": "https://ca.linkedin.com/jobs/search?keywords=Software%20Engineer&location=San%20Francisco%20Bay%20Area&geoId=90000084&trk=public_jobs_jobs-search-bar_search-submit&position=1&pageNum=0"
},
{
"title": "Find new and used Hyundai in vancouver,-bc - Autotrader.ca",
"url": "https://www.autotrader.ca/lst/hyundai/vancouver,-bc?sort=standard&desc=0&ustate=N%2CU&offer=N%2CU&atype=C&cy=CA&cat=ma33gr16493&lat=49.24966&lon=-123.11934&zip=Vancouver%2C%20BC&zipr=100&damaged_listing=exclude&source=homepage_search-mask"
},
{
"title": "Memory Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/memory-dress/130702.html?color=18891"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "b63bd522-fccb-4d60-9696-a83f7d11d4e5",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Dangle & Drop Earrings - Etsy Canada",
"url": "https://www.etsy.com/ca/c/jewelry/earrings/dangle-earrings?explicit=1&ref=catcard-1208-4349437824"
},
"open_tabs": [
{
"title": "Gold Vermeil Hoops - Etsy Canada",
"url": "https://www.etsy.com/ca/listing/gold-vermeil-hoops"
},
{
"title": "Silver Drop Earrings | Etsy",
"url": "https://www.etsy.com/ca/listing/silver-drop-earrings"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "d9c24c26-454e-4bc8-8230-1ddc83b3ea8e",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Memory Dress | Aritzia CA",
"url": "https://www.aritzia.com/en/product/memory-dress/130702.html?color=18891"
},
"open_tabs": [
{
"title": "The Super Puff\u2122 - Aritzia CA",
"url": "https://www.aritzia.com/en/clothing/jackets-coats/puffers"
},
{
"title": "TNA Butter Leggings - Aritzia CA",
"url": "https://www.aritzia.com/en/clothing/leggings"
}
],
"memories": [
"Listens to new albums on Spotify",
"Reads film criticism from online magazines and podcasts",
"Cooks Mediterranean seafood from TasteAtlas recipes",
"Compares mortgage rates online",
"Practices meditation daily",
"Watches Netflix for new releases",
"Visits Scholastic for children's books"
],
"date": "2026-01-19",
"uuid": "d54eefa7-ec82-4a3d-b734-6bf769b368a2",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Find new and used Hyundai in vancouver,-bc - Autotrader.ca",
"url": "https://www.autotrader.ca/lst/hyundai/vancouver,-bc?sort=standard&desc=0&ustate=N%2CU&offer=N%2CU&atype=C&cy=CA&cat=ma33gr16493&lat=49.24966&lon=-123.11934&zip=Vancouver%2C%20BC&zipr=100&damaged_listing=exclude&source=homepage_search-mask"
},
"open_tabs": [
{
"title": "Book Your N\u014dksu Reservation Now on Resy",
"url": "https://resy.com/cities/new-york-ny/venues/noksu?date=2026-01-21&seats=2"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "e87fb0ae-4a2f-44f4-8f92-8a3d55d3d29c",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "MLS\u00ae & Real Estate Map | REALTOR.ca",
"url": "https://www.realtor.ca/map#ZoomLevel=12&Center=49.672693%2C-112.792910&LatitudeMax=49.75051&LongitudeMax=-112.63687&LatitudeMin=49.59476&LongitudeMin=-112.94895&Sort=6-D&PGeoIds=g30_c2zf8jm7&GeoName=Lethbridge%2C%20AB&PropertyTypeGroupID=1&TransactionTypeId=2&PropertySearchTypeId=0&BedRange=2-2&BathRange=2-2&Currency=CAD"
},
"open_tabs": [
{
"title": "Browned Butter Toffee Chocolate Chip Cookies",
"url": "https://handletheheat.com/browned-butter-toffee-chocolate-chip-cookies/#wprm-recipe-container-26101"
},
{
"title": "Real Estate Crash Weighs on China\u2019s Economic Growth - The New York Times",
"url": "https://www.nytimes.com/2026/01/18/business/china-gdp-economy.html"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "2a47068f-a9e6-4856-8876-920f3af13499",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "how to use the manual mode on a canon r50 - Google Search",
"url": "https://www.google.com/search?client=firefox-b-d&q=how+to+use+the+manual+mode+on+a+canon+r50"
},
"open_tabs": [
{
"title": "2026 Mt. Rainier Tour and Guided Hike - with Trusted Reviews",
"url": "https://www.tripadvisor.ca/AttractionProductReview-g60878-d24079169-Mt_Rainier_Tour_and_Guided_Hike-Seattle_Washington.html"
},
{
"title": "NHL Scores | Jan 19, 2026 | NHL.com",
"url": "https://www.nhl.com/scores/2026-01-19"
},
{
"title": "[2601.11237] Likelihood-Based Ergodicity Transformations in Time Series Analysis",
"url": "https://arxiv.org/abs/2601.11237"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "21e525b4-a402-4736-b94d-ad6c0ebbaba1",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Get Started with Microsoft Excel (Short Course) | Coursera",
"url": "https://www.coursera.org/projects/introduction-microsoft-excel"
},
"open_tabs": [
{
"title": "Data Analysis with Python - Coursera",
"url": "https://www.coursera.org/learn/data-analysis-with-python"
},
{
"title": "Excel VLOOKUP Tutorial - YouTube",
"url": "https://www.youtube.com/watch?v=excelvlookup"
},
{
"title": "Microsoft Excel: Spreadsheet Software | Microsoft 365",
"url": "https://www.microsoft.com/en-us/microsoft-365/excel"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "90b4a927-4d61-4c60-8f77-20133054b804",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "History of Art | University of Oxford",
"url": "https://www.ox.ac.uk/admissions/undergraduate/courses/course-listing/history-art"
},
"open_tabs": [
{
"title": "Tension Headache: What It Is, Causes, Symptoms & Treatment",
"url": "https://my.clevelandclinic.org/health/diseases/8257-tension-headaches"
},
{
"title": "Papa's Freezeria - Play it Online at Coolmath Games",
"url": "https://www.coolmathgames.com/0-papas-freezeria#immersiveModal"
},
{
"title": "Book Your N\u014dksu Reservation Now on Resy",
"url": "https://resy.com/cities/new-york-ny/venues/noksu?date=2026-01-21&seats=2"
},
{
"title": "(oc) My donkey Forest keeping our piglets warm in his arms : r/Eyebleach",
"url": "https://www.reddit.com/r/Eyebleach/comments/1qgna0j/oc_my_donkey_forest_keeping_our_piglets_warm_in/"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "84da8347-238a-460e-ad18-74f912b0ede9",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Browned Butter Toffee Chocolate Chip Cookies",
"url": "https://handletheheat.com/browned-butter-toffee-chocolate-chip-cookies/#wprm-recipe-container-26101"
},
"open_tabs": [
{
"title": "Best Fudgy Brownies - Sally's Baking Addiction",
"url": "https://sallysbakingaddiction.com/best-fudgy-brownies/"
},
{
"title": "Kitchen Unit Converter - AllRecipes",
"url": "https://www.allrecipes.com/article/kitchen-conversion-chart/"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "0c2e4df0-45cf-44e2-85a4-6bf17b7e15eb",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "How to Refinish Hardwood Floors to Give Your Home a New Look",
"url": "https://www.familyhandyman.com/project/how-to-refinish-hardwood-floors/"
},
"open_tabs": [
{
"title": "Rent Floor Sanders - Home Depot",
"url": "https://www.homedepot.com/c/floor_sander_rental"
},
{
"title": "Minwax Wood Finish - Lowes",
"url": "https://www.lowes.com/pd/Minwax-Wood-Finish/"
},
{
"title": "How to Sand Floors - DIY Network",
"url": "https://www.diynetwork.com/how-to-install-and-finish-hardwood-floors"
}
],
"memories": [
"Uses Letterboxd to track and review movies",
"Looks for DIY project ideas on Pinterest",
"Is a single-income household parent",
"Rents power tools from Home Depot",
"Starts vegetable seeds indoors under grow lights each spring"
],
"date": "2026-01-19",
"uuid": "12659fa3-a663-4afc-9fe3-3fe124f86efd",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "Tension Headache: What It Is, Causes, Symptoms & Treatment",
"url": "https://my.clevelandclinic.org/health/diseases/8257-tension-headaches"
},
"open_tabs": [
{
"title": "Migraine vs Tension Headache - Mayo Clinic",
"url": "https://www.mayoclinic.org/diseases-conditions/migraine-headache/expert-answers/migraine-vs-tension-headache/faq-20058204"
},
{
"title": "Advil Dosage Guide",
"url": "https://www.advil.com/dosage-chart"
}
],
"memories": [
"Looks for high-protein legumes and tofu in recipes",
"Cooks vegetarian meals at home",
"Follows keto diet",
"Uses Sephora for beauty buys",
"Cares for elderly parent at home",
"Keeps a pet cat"
],
"date": "2026-01-19",
"uuid": "44c3d743-2d46-4c28-8111-a46fdf75bf72",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Appointments | Liberty Women Health",
"url": "https://www.libertywomenshealth.ca/book-appointment-online"
},
"open_tabs": [
{
"title": "Google Calendar - Week View",
"url": "https://calendar.google.com/calendar/r/week"
},
{
"title": "Sun Life Insurance Member Sign-in",
"url": "https://www.sunlife.ca/signin"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "1b061067-3cce-4489-9dc9-e5d3c344041b",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Vanguard S&P 500 ETF (VOO) Stock Price, News, Quote & History - Yahoo Finance",
"url": "https://ca.finance.yahoo.com/quote/VOO/"
},
"open_tabs": [
{
"title": "2026 Mt. Rainier Tour and Guided Hike - with Trusted Reviews",
"url": "https://www.tripadvisor.ca/AttractionProductReview-g60878-d24079169-Mt_Rainier_Tour_and_Guided_Hike-Seattle_Washington.html"
},
{
"title": "Dangle & Drop Earrings - Etsy Canada",
"url": "https://www.etsy.com/ca/c/jewelry/earrings/dangle-earrings?explicit=1&ref=catcard-1208-4349437824"
},
{
"title": "Real Estate Crash Weighs on China\u2019s Economic Growth - The New York Times",
"url": "https://www.nytimes.com/2026/01/18/business/china-gdp-economy.html"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "982fabfd-fb4b-4d1f-8a88-62e682bacc33",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Home - Google Drive",
"url": "https://drive.google.com/drive/home?dmr=1&ec=wgc-drive-hero-goto"
},
"open_tabs": [
{
"title": "Quantum Science, Networking, and Communications | UChicago",
"url": "https://professional.uchicago.edu/lp/quantum-science-networking-communications/rfi?gad_source=1&gad_campaignid=22174193418&gclid=EAIaIQobChMIstvC7YaYkgMVYyfUAR3veA0UEAAYAiAAEgI3wfD_BwE&utm_source=FY25_uchicago_ucpe_qs_google_search_prospect&utm_medium=paid_search&utm_campaign=22174193418&utm_content=173863857043&utm_term=quantum%20physics"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "9651c61c-29eb-43ad-97a3-a4e6865e8ff9",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "2026 Mt. Rainier Tour and Guided Hike - with Trusted Reviews",
"url": "https://www.tripadvisor.ca/AttractionProductReview-g60878-d24079169-Mt_Rainier_Tour_and_Guided_Hike-Seattle_Washington.html"
},
"open_tabs": [
{
"title": "Paradise Inn - Mt Rainier National Park Reservations",
"url": "https://mtrainierguestservices.com/accommodations/paradise-inn/"
},
{
"title": "Skyline Trail Loop - AllTrails",
"url": "https://www.alltrails.com/trail/us/washington/skyline-trail"
},
{
"title": "Car Rental Seattle - Enterprise",
"url": "https://www.enterprise.ca/en/car-rental/locations/us/wa/seattle.html"
}
],
"memories": [],
"date": "2026-01-19",
"uuid": "e0d4641c-8bbf-4d04-9d07-a525404bf6c4",
"is_for_human_eval": false
},
{
"current_tab": {
"title": "Book Your N\u014dksu Reservation Now on Resy",
"url": "https://resy.com/cities/new-york-ny/venues/noksu?date=2026-01-21&seats=2"
},
"open_tabs": [
{
"title": "N\u014dksu NYC - Menu",
"url": "https://www.noksunyc.com/menu"
},
{
"title": "N\u014dksu - The Infatuation Reviews",
"url": "https://www.theinfatuation.com/new-york/reviews/noksu"
},
{
"title": "Google Maps - N\u014dksu Location",
"url": "https://www.google.com/maps/place/Noksu"
}
],
"memories": [
"Values environmentally sustainable and cruelty-free food choices",
"Listens to classic rock",
"Follows indie film festivals",
"Looks for high-protein legumes and tofu in meals",
"Loves independent coffee shops",
"Plans Paris trip with Google searches",
"Collects vintage vinyl records",
"Listens to true crime podcasts"
],
"date": "2026-01-19",
"uuid": "60327309-bab5-437d-8b51-7e6e22db4d0f",
"is_for_human_eval": true
},
{
"current_tab": {
"title": "YYZ to SHA, 20/4 \u2013 30/4",
"url": " https://www.ca.kayak.com/flights/YYZ-SHA/2026-04-20/2026-04-30/first/2adults?ucs=1npqmpi&sort=bestflight_a#dialog"
},
"open_tabs": [
{
"title": "Cheap Flights to Shanghai - Expedia",
"url": "https://www.expedia.ca/Flights-To-Shanghai"
},
{
"title": "Chinese Visa Application Service Center - Toronto",
"url": "https://www.visaforchina.cn/YTO2_EN/"
},
{
"title": "Hotels in Shanghai | Booking.com",
"url": "https://www.booking.com/city/cn/shanghai.html"
}
],
"memories": [
"Searches for international flight deals",
"Watches Netflix for new releases"
],
"date": "2026-01-19",
"uuid": "60f624d4-4499-43f8-80e5-a8b1689391de",
"is_for_human_eval": false
}
]
|